/* 🌌 GLOBAL RESET & BASICS */
:root {
    --bg-dark: #050511;
    --bg-panel: #0f1025;
    --primary: #6366f1;
    /* Indigo */
    --accent: #10b981;
    /* Emerald/Neon Green */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glow-color: rgba(99, 102, 241, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* ✨ UTILITIES */
.gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-premium {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    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);
    }
}

/* 🌌 HEADER (Glassmorphism) */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(5, 5, 17, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.desktop-nav a:hover {
    color: #fff;
}

.cta-button-small {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button-small:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 🚀 HERO SECTION */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0.4;
    z-index: -1;
    filter: blur(80px);
}

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

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.cta-button-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px var(--glow-color);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px var(--primary);
}

.cta-button-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent);
}

.stat-item span {
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--text-muted);
}

.stat-item strong {
    color: #fff;
    display: block;
    font-size: 1.1rem;
}

/* 📱 PHONE MOCKUP */
.phone-mockup {
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    padding: 20px;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(to bottom, #111, #050511);
}

.chat-bubble {
    background: #202c33;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    width: fit-content;
    max-width: 85%;
    color: #e9edef;
    position: relative;
    animation: popIn 0.5s ease-out forwards;
    opacity: 0;
}

.chat-bubble.right {
    background: #005c4b;
    margin-left: auto;
    border-bottom-right-radius: 0;
}

.chat-bubble.left {
    border-top-left-radius: 0;
}

.chat-bubble:nth-child(1) {
    animation-delay: 0.2s;
}

.chat-bubble:nth-child(2) {
    animation-delay: 1.0s;
}

.chat-bubble:nth-child(3) {
    animation-delay: 2.5s;
}

.chat-bubble:nth-child(4) {
    animation-delay: 3.5s;
}

.chat-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 5px;
    display: block;
}

.caption {
    font-size: 0.85rem;
    color: #e9edef;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 🔄 FUNNEL SECTION */
.funnel-section {
    padding: 100px 0;
    text-align: center;
    background: #0a0b1a;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.funnel-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.funnel-step {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    padding: 20px 40px;
    border-radius: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.funnel-step:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.funnel-step.highlight {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.funnel-step.finale {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--accent);
}

.step-icon {
    font-size: 1.8rem;
    color: var(--text-muted);
}

.highlight .step-icon {
    color: var(--primary);
}

.finale .step-icon {
    color: var(--accent);
}

.arrow-down {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 1.5rem;
}

/* 🧠 SCRIPTS GRID */
.scripts-section {
    padding: 100px 0;
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.script-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.script-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-header {
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--glass-border);
}

.card-body {
    padding: 30px;
}

.card-body p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-style: italic;
    color: #fff;
}

.card-body .note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ⚡ FEATURES GRID */
.features-section {
    padding: 100px 0;
    background: #0b0c1e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

.feature-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: 0.5s;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    background: var(--bg-panel);
    /* Cover zoomed image overflow if any */
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

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

    .feature-card img {
        height: 200px;
    }
}

/* 💲 PRICING */
.pricing-section {
    padding: 100px 0;
    background: #080816;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.price-card.popular {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    transform: scale(1.05);
    z-index: 2;
}

.pop-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.trial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.trial-badge.secondary {
    background: #fff;
}

.text-accent {
    color: var(--accent);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.features li i {
    color: var(--accent);
}

.cta-plan {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-plan.primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.5);
}

.cta-plan:hover {
    transform: translateY(-2px);
}

.setup-fee {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ❓ FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faq-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* 🌊 FOOTER */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.brand p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 📜 MANIFESTO SECTION */
.manifesto-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #0a0b1e 0%, #050511 100%);
    position: relative;
}

.manifesto-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 80px 60px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
}

.manifesto-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
    animation: floatTag 3s ease-in-out infinite;
}

@keyframes floatTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.manifesto-text {
    margin-top: 40px;
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.manifesto-text p {
    margin-bottom: 25px;
}

.manifesto-text .final-line {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
    margin-top: 50px;
    font-style: italic;
}

/* 🎯 POSITIONING SECTION */
.positioning-section {
    padding: 100px 0;
}

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

.comparison-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.comp-item.highlight {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    transform: scale(1.02);
}

.comp-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.comp-res {
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 15px;
    display: block;
}

.comp-res.no {
    color: #ef4444;
}

.comp-res.yes {
    color: var(--accent);
}

.office-card {
    background: var(--bg-panel);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
}

.office-card i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    .desktop-nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .scripts-grid,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════════════════
   REDSTACK-INSPIRED: marquee, methodology, quote, footer
   Ref: https://www.redstack.com.br/
   ═══════════════════════════════════════════════════════════════ */

/* Marquee / ticker strip (texto que se repete) */
.marquee-wrap {
    overflow: hidden;
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-inner span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff;
    padding: 0 60px;
    letter-spacing: -0.02em;
}

.marquee-inner .gradient-text {
    padding: 0 60px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero quote (estilo Redstack: frase de impacto no topo) */
.hero-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
    max-width: 520px;
}

.hero-quote strong {
    color: #fff;
    font-style: normal;
}

/* Seções alternadas (contraste forte como Redstack) */
.section-dark {
    background: #050511;
}

.section-alt {
    background: linear-gradient(180deg, #0b0c1e 0%, #080816 100%);
}

/* Metodologia ECCO-style (cards com número + título + descrição) */
.methodology-section {
    padding: 120px 0;
}

.methodology-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.methodology-section .section-desc {
    margin-bottom: 60px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.methodology-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: 0.3s;
}

.methodology-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.2);
}

.methodology-card .step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.methodology-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.methodology-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA "Go" style (botão forte como Redstack) */
.cta-go {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #050511;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cta-go:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Footer estilo Redstack: Conecte-se + Contato */
.footer-redstack {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.footer-redstack .brand {
    text-align: left;
    margin-bottom: 0;
}

.footer-redstack .brand p {
    margin-bottom: 0;
}

.footer-block h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-block a,
.footer-block .contact-line {
    color: var(--text-muted);
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
}

.footer-block a:hover {
    color: #fff;
}

.footer-redstack .socials {
    justify-content: flex-start;
    margin-bottom: 0;
}

.footer-copy-bar {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.display-1 { font-size: 4rem; }
.display-4 { font-size: 2.5rem; }
.mt-3 { margin-top: 1rem; }
.text-muted { color: var(--text-muted); }
.d-block { display: block; }
.mb-3 { margin-bottom: 1rem; }
.p-5 { padding: 2rem; }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }

/* ═══ DORES DA REVENDA + ANTES/DEPOIS + DEU MATCH ═══ */

/* Seção: As dores que a revenda vive (grid de dores) */
.pains-section {
    padding: 100px 0;
}

.pains-section .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    margin-bottom: 12px;
}

.pains-section .section-desc {
    margin-bottom: 50px;
}

.pains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: 0.3s;
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.04);
}

.pain-card .pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #fff;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .pains-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .pains-grid { grid-template-columns: 1fr; }
}

/* Comparação Revenda tradicional vs Vendeoo (tabela visual) */
.compare-section {
    padding: 100px 0;
}

.compare-table-wrap {
    max-width: 900px;
    margin: 40px auto 0;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.compare-row {
    display: grid;
    grid-template-columns: 1.2fr 60px 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.compare-row:last-child { border-bottom: none; }

.compare-row.head {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    font-size: 0.9rem;
}

.compare-row .cell {
    padding: 20px 24px;
}

.compare-row .cell.mid {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.compare-row .cell.no {
    color: #f87171;
}

.compare-row .cell.yes {
    color: var(--accent);
}

.compare-row .cell strong {
    color: #fff;
}

@media (max-width: 768px) {
    .compare-row { grid-template-columns: 1fr 0fr 1fr 1fr; }
    .compare-row .cell.mid { padding: 0; overflow: hidden; width: 0; min-width: 0; }
    .compare-row .cell { padding: 14px 12px; font-size: 0.85rem; }
}

/* Deu Match: momentos em que a IA acerta */
.match-section {
    padding: 100px 0;
}

.match-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.match-card {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.3s;
}

.match-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(16, 185, 129, 0.2);
}

.match-card .match-badge {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.match-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.match-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

/* Faixa "Você já passou por isso?" (marquee de dores) */
.marquee-pains {
    background: rgba(239, 68, 68, 0.06);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.marquee-pains .marquee-inner span {
    color: var(--text-muted);
    font-weight: 600;
}

.marquee-pains .marquee-inner .pain-phrase {
    color: #fca5a5;
}

/* ═══ PROVA SOCIAL (números + depoimento) ═══ */
.proof-section {
    padding: 100px 0;
}

.proof-section .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
}

.proof-section .section-desc {
    margin-bottom: 50px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.proof-stat {
    text-align: center;
}

.proof-stat .number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #a5b4fc 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.proof-stat .label {
    font-size: 1rem;
    color: var(--text-muted);
}

.proof-quote-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 48px;
    position: relative;
}

.proof-quote-wrap::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.proof-quote-wrap .quote-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 20px;
}

.proof-quote-wrap .quote-author {
    font-weight: 700;
    color: #fff;
}

.proof-quote-wrap .quote-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .proof-stats { grid-template-columns: 1fr; gap: 28px; }
    .proof-quote-wrap { padding: 28px 24px; }
}