/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --dark: #0a0a0a;
    --dark-card: rgba(15, 15, 15, 0.85);
    --dark-light: #141414;
    --gray: #94a3b8;
    --gray-light: #64748b;
    --gray-lighter: rgba(255, 255, 255, 0.1);
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    --gradient-alt: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.5);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.1);
    --blur: blur(12px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: var(--border-subtle);
    z-index: 1000;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

/* SVG Icons */
.badge-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    color: currentColor;
}

.badge-icon-sm {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
}

.btn-header {
    padding: 10px 24px;
    border-radius: 8px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: var(--dark);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 700px;
    background: radial-gradient(ellipse at top center, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s;
    backdrop-filter: var(--blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--dark-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--dark-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 12px;
    color: var(--primary);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--gray);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--dark);
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    bottom: -48px;
    width: 2px;
    background: var(--gray-lighter);
}

.step:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
}

/* Download Section */
.download-section {
    padding: 60px 0;
    background: var(--dark-light);
}

.download-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    background: var(--dark-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--border-subtle);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.download-icon {
    flex-shrink: 0;
}

.download-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
}

.download-content {
    flex: 1;
}

.download-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.download-description {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.download-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.version-badge,
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #a5b4fc;
}

.version-badge svg,
.platform-badge svg {
    width: 16px;
    height: 16px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

.download-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 14px;
    color: var(--gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-note svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

.download-note strong {
    color: var(--primary);
}

/* Video Demo */
.video-demo {
    padding: 24px 0;
    background: var(--dark-light);
}

.video-demo .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

/* Wrapper responsivo e bonito */
.video-embed-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .2),
        0 0 60px rgba(99, 102, 241, 0.3),
        0 0 100px rgba(139, 92, 246, 0.2),
        0 0 140px rgba(236, 72, 153, 0.15);
    transition: all 0.3s ease;
}

.video-embed-wrapper:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .3),
        0 0 80px rgba(99, 102, 241, 0.5),
        0 0 120px rgba(139, 92, 246, 0.3),
        0 0 160px rgba(236, 72, 153, 0.25);
    transform: translateY(-4px);
}

/* Iframe expandido sempre */
.video-embed-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mata heranças chatas que encolhem o vídeo */
.video-demo iframe {
    max-width: 100% !important;
}

.video-demo .video-embed-wrapper {
    max-width: 800px !important;
}

.elementor .video-demo .elementor-widget-container {
    width: 100% !important;
}

/* Fallback se o navegador não tiver aspect-ratio */
@supports not (aspect-ratio: 16/9) {
    .video-embed-wrapper::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
}

/* For Who */
.for-who {
    padding: 80px 0;
    background: var(--dark);
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.persona-card {
    padding: 32px;
    text-align: center;
    background: var(--dark-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s;
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(99, 102, 241, 0.3);
}

.persona-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 16px;
    color: var(--primary);
}

.persona-icon svg {
    width: 32px;
    height: 32px;
}

.persona-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.persona-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--dark-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--dark-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-lighter);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray);
    margin-top: 8px;
}

.price-value {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-cents {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray);
    margin-top: 8px;
}

.price-period {
    font-size: 18px;
    color: var(--gray);
    margin-top: 16px;
}

.pricing-description {
    color: var(--gray);
    font-size: 14px;
}

.economy {
    color: var(--success);
    font-weight: 700;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.2s;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured .btn-pricing {
    background: var(--gradient-alt);
    box-shadow: var(--shadow);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
}

.guarantee-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: var(--success);
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.guarantee-description {
    font-size: 14px;
    color: var(--gray);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.faq-icon {
    color: var(--gray);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: var(--shadow-xl);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgb(0 0 0 / 0.4);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--dark);
    color: var(--gray-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
        /* Trimestral aparece primeiro no mobile */
    }

    .pricing-card:not(.featured) {
        order: 1;
        /* Mensal aparece depois no mobile */
    }

    .video-demo .video-embed-wrapper {
        max-width: 100% !important;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .step {
        flex-direction: column;
        gap: 16px;
    }

    .step::after {
        left: 35px;
        top: 80px;
    }


    .cta-title {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    /* Download responsivo */
    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .download-meta {
        justify-content: center;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .download-note {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.step,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Pulse Animation para CTAs */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.pulse-animation:hover {
    animation: none;
}

/* Gradient text para valores destacados */
.section-description strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured badge melhorado */
.featured-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.8px;
}