@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: radial-gradient(ellipse at center, #2D3A34 0%, #181818 50%, #2D3A34 100%);
    color: white;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Background Elements */
.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blur-element-1 {
    position: absolute;
    width: 1003.57px;
    height: 913.48px;
    transform: rotate(-37deg);
    transform-origin: top left;
    background: linear-gradient(85deg, #79CAC8 0%, rgba(6, 168, 158, 0.19) 100%);
    border-radius: 9999px;
    filter: blur(52.75px);
    top: -400px;
    left: -500px;
    animation: float 20s ease-in-out infinite;
}

.blur-element-2 {
    position: absolute;
    width: 800px;
    height: 700px;
    transform: rotate(25deg);
    background: linear-gradient(120deg, rgba(121, 202, 200, 0.3) 0%, rgba(6, 168, 158, 0.1) 100%);
    border-radius: 9999px;
    filter: blur(40px);
    bottom: -150px;
    right: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: rotate(-37deg) translateY(0px);
    }

    50% {
        transform: rotate(-37deg) translateY(-20px);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.brand-header {
    margin-bottom: 30px;
}

.brand-text {
    background: linear-gradient(135deg, #79CAC8, #06A89E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid rgba(121, 202, 200, 0.6);
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.brand-text:hover {
    border-color: #79CAC8;
    box-shadow: 0 0 20px rgba(121, 202, 200, 0.3);
}

.hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.6s forwards;
}

/* Countdown Timer */
.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 40px 0;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

.countdown-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #79CAC8;
    text-align: center;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 10px;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(121, 202, 200, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #79CAC8;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-expired {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Pricing Preview */
.pricing-preview {
    width: 100%;
    margin-top: 20px;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(121, 202, 200, 0.2);
    backdrop-filter: blur(10px);
}

.price-old,
.price-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-old {
    opacity: 0.7;
}

.price-old .price-value {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}

.price-new .price-value {
    color: #79CAC8;
    font-size: 1.4rem;
    font-weight: 700;
}

.price-label {
    font-size: 0.9rem;
    color: #ccc;
}

.price-discount {
    text-align: center;
    margin-top: 8px;
}

.discount-badge {
    background: linear-gradient(135deg, #79CAC8, #06A89E);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

.cta-primary,
.cta-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #79CAC8, #06A89E);
    color: white;
    box-shadow: 0 10px 30px rgba(121, 202, 200, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(121, 202, 200, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #79CAC8;
    border: 2px solid #79CAC8;
}

.cta-secondary:hover {
    background: #79CAC8;
    color: white;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.9s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #79CAC8;
    font-family: 'Roboto Condensed', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
    transform: perspective(1000px) rotateY(-5deg);
    opacity: 0;
    animation: slideInRight 1s ease-out 0.5s forwards;
}

.phone-mockup {
    position: relative;
    transition: all 0.3s ease;
}

.dark-phone {
    z-index: 2;
    transform: translateX(10px);
}

.light-phone {
    z-index: 1;
    transform: translateX(-10px) scale(0.95);
    opacity: 0.8;
}

.phone-image {
    width: 280px;
    height: auto;
    border-radius: 25px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-5px) scale(1.02);
}

.dark-phone:hover {
    transform: translateX(10px) translateY(-5px) scale(1.02);
}

.light-phone:hover {
    transform: translateX(-10px) translateY(-5px) scale(0.98);
    opacity: 1;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* Social Proof Section */
.social-proof {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: white;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.proof-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: transform 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-5px);
}

.proof-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #79CAC8;
}

.proof-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #79CAC8;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.proof-text {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.launch-info {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.launch-info p {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* SVI Info Section */
.svi-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(121, 202, 200, 0.2);
}

.svi-info p {
    margin: 10px 0;
    color: #b0b0b0;
}

.svi-info a {
    color: #79CAC8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.svi-info a:hover {
    color: #06A89E;
}

/* Download Button Disabled */
.download-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.download-btn.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, rgba(121, 202, 200, 0.1), rgba(6, 168, 158, 0.05));
    border-radius: 30px;
    margin: 0 20px;
}

.offer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #79CAC8, #06A89E);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.offer-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.offer-content>p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.pricing {
    margin: 60px 0;
}

.price-original {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-offer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 2rem;
    color: #79CAC8;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    color: #79CAC8;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
}

.period {
    font-size: 1.5rem;
    color: #79CAC8;
    font-weight: 500;
}

.price-savings {
    color: #4ade80;
    font-weight: 600;
    font-size: 1.1rem;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 40px 0;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #b0b0b0;
}

.cta-offer {
    background: linear-gradient(135deg, #79CAC8, #06A89E);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(121, 202, 200, 0.3);
    margin: 30px 0;
}

.cta-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(121, 202, 200, 0.4);
}

.offer-disclaimer {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #79CAC8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #b0b0b0;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Download Section */
.download-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    margin: 0 20px;
}

.download-content {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.download-text p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(-30px);
}

.download-btn.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #79CAC8;
    transform: translateY(-2px);
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-store {
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.download-mockup {
    display: flex;
    justify-content: center;
}

.preview-image {
    width: 300px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #79CAC8;
}

.footer-brand p {
    color: #888;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #79CAC8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #888;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #79CAC8;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy p {
    color: #888;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-copy a,
.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-copy a,
.footer-legal a:hover {
    color: #79CAC8;
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* Botão flutuante no footer */
.cta-offer-floating {
    position: fixed;
    bottom: 3.5rem;
    z-index: 10000;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    text-decoration: none;
    margin-left: calc(50vw - 9.5rem);
    max-width: 20rem;
}


/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-section .container {
        gap: 60px;
    }

    .phone-image {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section .container,
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-mockup {
        order: -1;
    }

    .mockup-container {
        transform: none;
        flex-direction: column;
        gap: 15px;
    }

    .dark-phone,
    .light-phone {
        transform: none;
    }

    .phone-image {
        width: 280px;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offer-features {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .download-mockup {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .benefit-item {
        padding: 30px 20px;
    }

    .phone-image {
        width: 250px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .offer-section,
    .download-section {
        margin: 0 10px;
    }
}