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

:root {
    --night: #080E1D;
    --night2: #0F1828;
    --card: #131E30;
    --card2: #1A2842;
    --teal: #00D4AA;
    --teal-dim: #00A888;
    --orange: #FF6B35;
    --orange-dim: #D9541E;
    --text: #EDE8F5;
    --muted: #8899BB;
    --faint: #1E2E4A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--night);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── TIPOGRAFIA ── */
h1,
h2,
h3,
.syne {
    font-family: 'Syne', sans-serif;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 64px;
    background: rgba(8, 14, 29, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--teal);
    color: #080E1D;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.nav-cta:hover {
    background: var(--teal-dim);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5vw 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 170, .07) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, .05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, .1);
    border: 1px solid rgba(0, 212, 170, .25);
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '●';
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

h1.hero-title {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

h1.hero-title .teal {
    color: var(--teal);
}

h1.hero-title .line2 {
    display: block;
    color: var(--text);
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--orange);
    color: white;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary:hover {
    background: var(--orange-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, .3);
}

.btn-ghost {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 1px solid var(--faint);
    border-radius: 10px;
    transition: border-color .2s, background .2s;
}

.btn-ghost:hover {
    border-color: var(--teal);
    background: rgba(0, 212, 170, .05);
}

.hero-stat {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--faint);
}

.hero-stat-item .num {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
}

.hero-stat-item .label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

/* ── PDV MOCKUP (assinatura da page) ── */
.pdv-mockup {
    background: var(--card);
    border: 1px solid rgba(0, 212, 170, .15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
    position: relative;
}

.pdv-topbar {
    background: var(--night2);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--faint);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.r {
    background: #FF5F57;
}

.dot.y {
    background: #FFBD2E;
}

.dot.g {
    background: #28CA41;
}

.pdv-title {
    font-size: 12px;
    color: var(--muted);
    margin-left: 8px;
    font-family: 'Inter', monospace;
}

.pdv-body {
    padding: 20px;
    font-family: 'Inter', monospace;
    font-size: 13px;
}

.pdv-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--faint);
}

.pdv-row:last-of-type {
    border-bottom: none;
}

.pdv-item-name {
    color: var(--text);
}

.pdv-item-price {
    color: var(--teal);
    font-weight: 600;
}

.pdv-item-qty {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}

.pdv-total-bar {
    background: var(--night2);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 212, 170, .2);
}

.pdv-total-label {
    font-size: 12px;
    color: var(--muted);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdv-total-val {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--teal);
}

.pdv-pay-btn {
    background: var(--teal);
    color: #080E1D;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
    transition: background .2s;
}

.pdv-pay-btn:hover {
    background: var(--teal-dim);
}

.pdv-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--teal);
    margin-top: 12px;
    justify-content: center;
}

.pdv-status::before {
    content: '●';
    font-size: 7px;
    animation: pulse 2s infinite;
}

/* ── SEÇÕES COMUNS ── */
section {
    padding: 100px 5vw;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ── PROBLEMA / SOLUÇÃO ── */
.problema {
    background: var(--night2);
    border-top: 1px solid var(--faint);
    border-bottom: 1px solid var(--faint);
}

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

.dor-card {
    background: var(--night);
    border: 1px solid var(--faint);
    border-radius: 12px;
    padding: 28px;
    transition: border-color .25s;
}

.dor-card:hover {
    border-color: rgba(255, 107, 53, .4);
}

.dor-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.dor-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dor-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.feat-big {
    grid-row: span 2;
    background: var(--card);
    border: 1px solid var(--faint);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s;
}

.feat-big:hover {
    border-color: rgba(0, 212, 170, .3);
}

.feat-big .feat-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px;
    opacity: .5;
    pointer-events: none;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.bar {
    width: 24px;
    border-radius: 4px 4px 0 0;
    background: var(--teal);
    transition: height .4s ease;
}

.feat-small {
    background: var(--card);
    border: 1px solid var(--faint);
    border-radius: 16px;
    padding: 32px;
    transition: border-color .25s, transform .2s;
}

.feat-small:hover {
    border-color: rgba(0, 212, 170, .3);
    transform: translateY(-2px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 212, 170, .1);
    border: 1px solid rgba(0, 212, 170, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.feat-small h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-small p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.feat-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(0, 212, 170, .08);
    border: 1px solid rgba(0, 212, 170, .2);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.feat-big h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feat-big p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── DEPOIMENTOS ── */
.depo {
    background: var(--night2);
    border-top: 1px solid var(--faint);
    border-bottom: 1px solid var(--faint);
}

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

.depo-card {
    background: var(--night);
    border: 1px solid var(--faint);
    border-radius: 14px;
    padding: 32px;
}

.stars {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.depo-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
}

.depo-text::before {
    content: '"';
    color: var(--teal);
    font-size: 28px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card2);
    border: 2px solid var(--faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--teal);
}

.depo-name {
    font-weight: 600;
    font-size: 14px;
}

.depo-role {
    font-size: 12px;
    color: var(--muted);
}

/* ── PLANOS ── */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.plano-card {
    background: var(--card);
    border: 1px solid var(--faint);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    transition: transform .2s;
}

.plano-card:hover {
    transform: translateY(-4px);
}

.plano-card.destaque {
    border-color: var(--teal);
    background: linear-gradient(160deg, #0F2030 0%, #131E30 100%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #080E1D;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.plano-nome {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.plano-preco {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

.plano-preco .cifra {
    font-size: 24px;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
    color: var(--muted);
}

.plano-per {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}

.plano-itens {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plano-itens li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.plano-itens li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.plano-itens li.off {
    color: var(--muted);
}

.plano-itens li.off::before {
    content: '–';
    color: var(--faint);
}

.btn-plano {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border-radius: 10px;
    transition: all .2s;
}

.btn-plano.outline {
    border: 1px solid var(--faint);
    color: var(--text);
}

.btn-plano.outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-plano.filled {
    background: var(--teal);
    color: #080E1D;
    border: none;
}

.btn-plano.filled:hover {
    background: var(--teal-dim);
}

/* ── FAQ ── */
.faq {
    background: var(--night2);
    border-top: 1px solid var(--faint);
}

.faq-list {
    margin-top: 56px;
    max-width: 740px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border: 1px solid var(--faint);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: background .2s;
}

.faq-q:hover {
    background: var(--faint);
}

.faq-chevron {
    font-size: 18px;
    color: var(--muted);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 28px;
}

.faq-a p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    padding-bottom: 22px;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-item.open .faq-chevron {
    transform: rotate(45deg);
}

/* ── CTA FINAL ── */
.cta-final {
    background: var(--night);
    text-align: center;
    padding: 120px 5vw;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 170, .08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.cta-final p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pair {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    background: var(--night2);
    border-top: 1px solid var(--faint);
    padding: 48px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
}

.footer-logo span {
    color: var(--teal);
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
}

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

.footer-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

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

/* ── RESPONSIVO ── */
@media (max-width: 500px) {
    /* Ajustes Gerais de Espaçamento da Página */
    nav {
        padding: 0 16px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    section {
        padding: 60px 16px;
    }

    .hero {
        padding: 90px 16px 40px;
    }

    /* Tipografia Adaptativa */
    h1.hero-title {
        font-size: 34px; /* Evita quebras exageradas mantendo o peso visual */
        letter-spacing: -1px;
    }

    .hero-sub, 
    .section-sub {
        font-size: 15px;
    }

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

    /* Botões e Ações em Tela Cheia no Celular */
    .hero-actions, 
    .cta-pair {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .btn-primary, 
    .btn-ghost, 
    .btn-plano {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Ajuste do Painel de Estatísticas */
    .hero-stat {
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
        padding-top: 32px;
    }

    .hero-stat-item .num {
        font-size: 28px;
    }

    /* Redução de Padding dos Cards para Ganhar Espaço Horizontal */
    .dor-card, 
    .feat-small, 
    .depo-card, 
    .plano-card {
        padding: 20px;
    }

    .feat-big {
        padding: 24px;
        height: 400px;
    }

    .feat-big h3 {
        font-size: 20px;
    }

    /* Sanfona do FAQ */
    .faq-list {
        margin-top: 36px;
    }

    .faq-q {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-a {
        padding: 0 20px;
    }

    .faq-a p {
        font-size: 14px;
        padding-bottom: 16px;
    }

    /* Rodapé Centralizado para Mobile */
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 40px 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 900px) {

    .hero-inner,
    .features-grid,
    .dor-grid,
    .depo-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }

    .feat-big {
        grid-row: span 1;
        min-height: 320px;
    }

    .nav-links {
        display: none;
    }

    nav {
        padding: 0 24px;
    }
}

/* ── ANIMAÇÃO SCROLL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}