/* 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);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-text {
    font-size: inherit;
}

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

/* 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);
}

/* Header Right Container */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 2px;
    cursor: pointer;
    user-select: none;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.5px;
    pointer-events: none;
}

.lang-btn.active {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.lang-code {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Mobile responsiveness for header */
@media (max-width: 600px) {
    .header .container {
        padding: 0 16px;
    }

    .header-right {
        gap: 8px;
        flex-shrink: 0;
    }

    .logo {
        font-size: 14px;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }

    .logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .language-toggle {
        padding: 2px;
        flex-shrink: 0;
    }

    .lang-btn {
        padding: 5px 8px;
    }

    .lang-code {
        font-size: 10px;
    }

    .btn-header {
        padding: 6px 12px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 380px) {
    .logo {
        font-size: 13px;
        gap: 4px;
    }

    .header-right {
        gap: 6px;
    }

    .btn-header {
        padding: 5px 8px;
        font-size: 10px;
    }

    .lang-btn {
        padding: 4px 6px;
    }

    .lang-code {
        font-size: 9px;
    }
}

/* 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);
}

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

.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;
}

.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);
}

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

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

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

@supports not (aspect-ratio: 16/9) {
    .video-embed-wrapper::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
}

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

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

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

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

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

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

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 200px;
    /* valor aproximado suficiente */
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    padding: 20px 40px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 100px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.6);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--dark);
    border-top: var(--border-subtle);
}

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

.footer-brand .logo {
    margin-bottom: 12px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: var(--border-subtle);
    color: var(--gray-light);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

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

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

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

/* 
   ----------------------------------------
   PRICING V2 (Redesign Clean)
   ----------------------------------------
*/

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

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.pricing-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 4px;
    gap: 4px;
}

.toggle-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.toggle-btn:hover:not(.active) {
    color: white;
}

/* 2-column pricing grid */
.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.pricing-card {
    background: var(--dark-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    margin-bottom: 32px;
    text-align: center;
}

.pricing-title {
    font-size: 18px;
    font-weight: 700;
    color: #a5b4fc;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 4px;
    align-self: flex-start;
    margin-top: 8px;
}

.price-value {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    transition: all 0.3s ease;
}

.price-cents {
    font-size: 24px;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 8px;
}

.price-period {
    font-size: 16px;
    color: var(--gray);
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
}

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

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

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

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

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pricing:hover {
    background: var(--white);
    color: var(--dark);
}

.pricing-card.featured .btn-pricing {
    background: var(--gradient);
    border: none;
    color: var(--white);
}

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

.pricing-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    max-width: 600px;
    margin: 48px auto 0;
}

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

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

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

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


/* Analyzer Section */
.analyzer-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
}

.analyzer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .analyzer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.analyzer-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.analyzer-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.analyzer-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.analyzer-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.analyzer-feature .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analyzer-feature .icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.analyzer-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.analyzer-feature p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* Analyzer Demo Card */
.analyzer-demo-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.demo-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.demo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.demo-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px;
}

.demo-item-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.demo-item-label svg {
    width: 12px;
    height: 12px;
}

.demo-item-value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* New Badge */
.new-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.6em;
    vertical-align: middle;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Featured Card Style */
.pricing-card.featured {
    border: 1px solid rgba(99, 102, 241, 0.5);
    background: linear-gradient(180deg, rgba(30, 27, 75, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    position: relative;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

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

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

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

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

/* Para Quem É - Dark Theme */
.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-emoji {
    font-size: 56px;
    margin-bottom: 16px;
}

.persona-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

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

/* Video Demo Section Header */
.video-demo .section-header {
    margin-bottom: 40px;
}

.video-demo .section-header .section-title {
    font-size: 32px;
}

.video-analyzer {
    background: var(--dark);
    padding: 60px 0;
}

/* Persona Icons (substituindo emojis) */
.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;
}

/* Analyzer Section Highlight - Fundo Roxo */
.analyzer-highlight {
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.15) 0%,
            rgba(139, 92, 246, 0.2) 50%,
            rgba(99, 102, 241, 0.15) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

.analyzer-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.analyzer-highlight .analyzer-content h2 {
    color: var(--white);
}

.analyzer-highlight .analyzer-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Video Demo Title Centered */
.video-demo .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-demo .container {
    flex-direction: column;
    align-items: center;
}