/* ExpertSA Groups — landing
   Papel quente + tinta verde-floresta. O mint do logo aparece só onde há ação. */

:root {
    --paper: #f5f1e8;
    --paper-2: #ebe5d5;
    --ink: #12211b;
    --ink-soft: #4a5a52;
    --line: #d5cdb9;
    --forest: #0f2a21;
    --forest-2: #17392d;
    --mint: #38d39f;
    --mint-deep: #0b7a55;
    --alert: #b4432f;

    --serif: 'Sora', 'Instrument Sans', sans-serif;
    --sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;

    --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 5rem; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--mint-deep); outline-offset: 3px; }
::selection { background: var(--mint); color: var(--forest); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.035em; margin: 0; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; line-height: 1.25; letter-spacing: -0.02em; }
h1 em, h2 em { font-style: normal; color: var(--mint-deep); }
p { margin: 0; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 40rem; }
.eyebrow {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mint-deep); margin-bottom: 1.1rem; display: block;
}
.section { padding: 96px 0; }
.section-head { max-width: 46rem; margin-bottom: 56px; }
.section-head .lead { margin-top: 1.25rem; }
.tone-2 { background: var(--paper-2); }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font: 600 0.95rem/1 var(--sans); text-decoration: none;
    padding: 1rem 1.6rem; border-radius: 6px; border: 1.5px solid var(--ink);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.btn-primary { background: var(--mint); border-color: var(--forest); color: var(--forest); }
.btn-primary:hover { background: var(--forest); color: var(--mint); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.link-arrow { font-weight: 600; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1.5px; }

/* ---------- Faixa e header ---------- */
.topbar-ticker {
    background: var(--forest);
    color: #d7e7df;
    font-size: 0.84rem;
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    user-select: none;
}
.topbar-ticker:hover .ticker-track {
    animation-play-state: paused;
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-slide 32s linear infinite;
    gap: 2.5rem;
    padding-left: 1rem;
    will-change: transform;
}
@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; overflow-x: auto; }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.ticker-fire { font-size: 0.95rem; }
.ticker-item b { color: #fff; }
.coupon-chip {
    font-family: var(--mono);
    font-weight: 700;
    background: var(--mint);
    color: var(--forest);
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    display: inline-flex;
    align-items: center;
}
.coupon-chip:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(56, 211, 159, 0.6);
}
.ticker-limit { color: #9db9ac; font-size: 0.8rem; }
.ticker-item a {
    color: var(--mint);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 0.25rem;
}
.ticker-item a:hover { color: #fff; }
.ticker-sep { color: rgba(255, 255, 255, 0.25); font-size: 0.75rem; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(245, 241, 232, 0.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.site-header img { height: 38px; width: auto; border-radius: 6px; }
.nav { display: none; gap: 28px; font-size: 0.92rem; font-weight: 500; }
.nav a { text-decoration: none; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 6px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .login { display: none; font-size: 0.92rem; font-weight: 600; text-decoration: none; padding: 0 8px; }
.header-actions .btn { padding: 0.75rem 1.2rem; font-size: 0.9rem; }
@media (min-width: 900px) { .nav { display: flex; } }
@media (min-width: 600px) { .header-actions .login { display: inline; } }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 1.6rem; }
.hero .lead { margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }

/* ---------- Mensagem WhatsApp Chegando entre Hero e Painel ---------- */
.wa-arrival-wrap {
    display: grid;
    grid-template-rows: 0fr;
    margin: 0 auto;
    max-width: 640px;
    perspective: 1000px;
    transition: grid-template-rows 0.5s ease, margin 0.5s ease;
}
.wa-arrival-wrap.is-visible {
    grid-template-rows: 1fr;
    margin: 54px auto 36px;
}
.wa-chat-bubble {
    background: #ffffff;
    border: 1.5px solid #25d366;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(32px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.45s ease, box-shadow 0.4s ease;
    will-change: transform, opacity;
    overflow: hidden;
    min-height: 0;
}
.wa-chat-bubble.is-arrived {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.18), 0 6px 16px rgba(0, 0, 0, 0.06);
}
.wa-chat-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.wa-chat-sender-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wa-chat-avatar {
    width: 40px;
    height: 40px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
}
.wa-online-pulse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
.wa-sender-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
}
.wa-verified-badge {
    flex-shrink: 0;
}
.wa-sender-sub {
    font-size: 0.78rem;
    color: #7a8680;
    display: block;
}
.wa-badge-pill {
    background: #dcf8c6;
    color: #075e54;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(7, 94, 84, 0.15);
}
.wa-balloon {
    background: #d9fdd3;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px 14px 14px 4px;
    padding: 14px 18px 10px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}
.wa-balloon-tail {
    position: absolute;
    left: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 8px solid #d9fdd3;
}
.wa-balloon-text {
    margin: 0 0 6px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: #111b21;
}
.wa-balloon-text strong {
    color: #0c1317;
}
.wa-balloon-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 0.72rem;
    color: #667781;
}
.wa-timestamp {
    font-size: 0.72rem;
}
.wa-checks {
    color: #53bdeb;
    font-weight: 700;
    letter-spacing: -0.1em;
}
.wa-chat-actions {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.wa-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.wa-action-btn:hover {
    background: #1eb857;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.wa-action-note {
    font-size: 0.78rem;
    color: var(--ink-soft);
}


.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1.5px solid var(--ink); }
.stat-row div { padding: 16px 16px 0 0; }
.stat-row div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.stat-row b { font-family: var(--serif); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); display: block; line-height: 1.1; }
.stat-row span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Demo de alerta (card de notificação) ---------- */
.sim { background: #fff; border: 1.5px solid var(--ink); border-radius: 10px; box-shadow: 6px 6px 0 var(--forest); overflow: hidden; }
.sim-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 0.92rem; }
.sim-bar small { display: block; font-weight: 400; font-size: 0.78rem; color: var(--ink-soft); }
.sim-status { display: inline-flex; align-items: center; gap: 8px; background: #e3f4ea; color: var(--mint-deep); font-size: 0.72rem; font-weight: 700; letter-spacing: .06em; padding: 6px 12px; border-radius: 999px; }
.sim-status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.sim-status.is-alert { background: #fbeadb; color: #9a5b12; }
.sim-log { height: 272px; overflow-y: auto; padding: 8px 20px; font-size: 0.86rem; line-height: 1.5; }
.sim-log > div { padding: 12px 0 12px 14px; border-left: 3px solid var(--line); margin: 8px 0; }
.sim-log .head { display: none; }
.sim-log .t { display: block; font-size: 0.72rem; color: var(--ink-soft); }
.sim-log .tone-ok, .sim-log .tone-sync, .sim-log .tone-warn, .sim-log .tone-bad { font-weight: 700; font-size: 0.72rem; letter-spacing: .06em; margin-right: 4px; }
.sim-log > div:has(.tone-ok) { border-left-color: var(--mint-deep); }
.sim-log > div:has(.tone-sync) { border-left-color: #2a7ea0; }
.sim-log > div:has(.tone-warn) { border-left-color: #d68a1f; background: #fdf5ea; }
.sim-log > div:has(.tone-bad) { border-left-color: var(--alert); }
.tone-ok { color: var(--mint-deep); }
.tone-sync { color: #2a7ea0; }
.tone-warn { color: #9a5b12; }
.tone-bad { color: var(--alert); }
.sim-foot { padding: 16px 20px 20px; border-top: 1px solid var(--line); }
.sim-btn { width: 100%; min-height: 48px; background: var(--forest); color: var(--mint); border: 0; border-radius: 6px; font: 600 0.92rem var(--sans); cursor: pointer; transition: background-color .2s ease; }
.sim-btn:hover { background: var(--forest-2); }
.sim-btn[aria-disabled="true"] { opacity: .7; cursor: wait; }
.sim-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Prints do produto ---------- */
.shot { border-radius: 12px; background: var(--forest); padding: 10px; box-shadow: 8px 8px 0 var(--mint); }
.shot img { border-radius: 6px; }
.shot-cap { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }
.peek { display: grid; gap: 32px; align-items: center; margin-top: 72px; }
.peek-h { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 1rem; }
.peek-copy .lead { font-size: 1.05rem; }
.peek-stats { margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1.5px solid var(--ink); }
.peek-stats > div { padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line); }
.peek-stats > div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.peek-stats dt { font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.peek-stats dd { margin: 2px 0 0; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; line-height: 1.25; }
.peek-stats em { display: block; font: 600 0.78rem var(--sans); font-style: normal; color: var(--mint-deep); margin-top: 2px; }
.peek-img { position: relative; height: 340px; overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 55%, transparent 100%); }
.peek-img img { width: 135%; max-width: none; border-radius: 10px 0 0 0; border-left: 10px solid var(--forest); border-top: 10px solid var(--forest); }
@media (min-width: 960px) {
    .peek { grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
    .peek.flip { grid-template-columns: 1.2fr 0.8fr; }
    .peek.flip .peek-copy { order: 2; }
    .peek-img { height: 560px;
        -webkit-mask-image: linear-gradient(to right, #000 50%, transparent 100%), linear-gradient(to bottom, #000 55%, transparent 100%);
        mask-image: linear-gradient(to right, #000 50%, transparent 100%), linear-gradient(to bottom, #000 55%, transparent 100%);
        -webkit-mask-composite: source-in; mask-composite: intersect; }
}
.hero-shot { margin-top: 56px; }
.kpis { display: grid; grid-template-columns: repeat(2, 1fr); border: 1.5px solid var(--ink); border-radius: 8px; }
.kpis > div { padding: 18px 20px; border-top: 1px solid var(--line); }
.kpis > div:nth-child(odd) { border-right: 1px solid var(--line); }
.kpis small { display: block; font-size: 0.75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.kpis b { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; display: block; }
.kpis em { font-style: normal; font-size: 0.82rem; color: var(--mint-deep); font-weight: 600; }
@media (min-width: 800px) {
    .kpis { grid-template-columns: repeat(4, 1fr); }
    .kpis > div { border-top: 0; border-right: 1px solid var(--line); }
    .kpis > div:last-child { border-right: 0; }
}
.hero-shot { margin-top: 64px; }
.hero-shot .kpis { margin-top: 28px; }

/* ---------- Telemetria ---------- */
.versus { display: grid; gap: 24px; margin-bottom: 72px; }
@media (min-width: 900px) { .versus { grid-template-columns: 1fr 1fr; } }
/* Espelha o card "Performance do Disparo" do painel */
.dp { background: #1c2333; color: #e8ecf5; border-radius: 12px; padding: 24px; border-left: 4px solid #5b7cf0; box-shadow: 6px 6px 0 var(--forest); }
.dp.bad { border-left-color: #d9553f; }
.dp.good { border-left-color: var(--mint); }
.dp-tabs { display: flex; gap: 20px; font-size: 0.78rem; font-weight: 600; color: #7d88a5; border-bottom: 2px solid #2b3349; margin-bottom: 20px; }
.dp-tabs span { padding: 0 0 10px; margin-bottom: -2px; }
.dp-tabs .on { color: #7c95f5; border-bottom: 2px solid #7c95f5; }
.dp-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.dp-head b { font-family: var(--serif); font-size: 1.1rem; color: #fff; }
.dp-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: #d9553f; color: #fff; }
.dp.good .dp-badge { background: #4fb27f; }
.dp-sub { margin: 8px 0 20px; min-height: 2.9em; font-size: 0.85rem; color: #8b95b0; }
.dp-sub q { color: #e8ecf5; quotes: none; }
.dp-sub q::before { content: '\201C'; } .dp-sub q::after { content: '\201D'; }
.dp-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dp-tile { border: 1px solid #2f384f; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; }
.dp-tile small { font-size: 0.72rem; color: #8b95b0; min-height: 2.4em; line-height: 1.2; }
.dp-tile b { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: #fff; margin: 6px 0 2px; letter-spacing: -0.03em; }
.dp-tile span { font-size: 0.7rem; color: #6f7a96; line-height: 1.3; }
.dp-tile.is-good { border-color: rgba(56,211,159,.55); }
.dp-tile.is-good b { color: var(--mint); }
.dp-tile.is-bad { border-color: rgba(217,85,63,.6); }
.dp-tile.is-bad b { color: #f0806b; }
.dp-note { margin-top: 18px; padding-top: 14px; border-top: 1px solid #2b3349; font-size: 0.85rem; color: #aab3ca; }
@media (max-width: 599px) { .dp { padding: 18px; } .dp-tiles { gap: 6px; } .dp-tile { padding: 10px; } .dp-tile b { font-size: 1.4rem; } .dp-tabs span:nth-child(3) { display: none; } }

.numbered { list-style: none; margin: 0 0 72px; padding: 0; counter-reset: n; border-top: 1.5px solid var(--ink); }
.numbered li { counter-increment: n; display: grid; gap: 8px 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.numbered li::before { content: counter(n, decimal-leading-zero); font-family: var(--serif); font-weight: 700; font-size: 2.2rem; line-height: 1; color: var(--mint-deep); }
.numbered h3 { margin-bottom: 8px; }
.numbered p { color: var(--ink-soft); max-width: 36rem; }
.numbered .only { font-size: 0.72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mint-deep); display: block; margin-bottom: 4px; }
@media (min-width: 800px) { .numbered li { grid-template-columns: 90px 1fr 1fr; align-items: start; } .numbered li h3 { margin: 0; } }

/* ---------- Recursos (linhas alternadas) ---------- */
.feature { display: grid; gap: 40px; padding: 64px 0; border-top: 1px solid var(--line); align-items: center; }
.feature:first-of-type { border-top: 1.5px solid var(--ink); }
.feature .eyebrow { margin-bottom: .8rem; }
.feature h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 1rem; }
.feature p.intro { color: var(--ink-soft); margin-bottom: 1.5rem; }
.feature ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature li { padding-left: 22px; position: relative; font-size: 0.98rem; }
.feature li::before { content: ''; position: absolute; left: 0; top: .7em; width: 10px; height: 2px; background: var(--mint-deep); }
@media (min-width: 900px) {
    .feature { grid-template-columns: 1fr 1.1fr; gap: 72px; }
    .feature.flip .feature-copy { order: 2; }
}
.feature-text-only { grid-template-columns: 1fr; }
@media (min-width: 900px) { .feature-text-only { grid-template-columns: 1fr 1.1fr; } .feature-text-only ul { grid-template-columns: 1fr; } }
.feature .aside-note { background: var(--paper-2); border-left: 3px solid var(--mint-deep); padding: 24px; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; line-height: 1.45; }

/* ---------- Comparativo ---------- */
.table-scroll { overflow-x: auto; border: 1.5px solid var(--ink); border-radius: 8px; background: var(--paper); }
.table-scroll:focus-visible { outline: 2px solid var(--mint-deep); }
table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 0.95rem; text-align: left; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
thead th { font-size: 0.78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 1.5px solid var(--ink); }
th:last-child, td:last-child { background: #e3f4ea; border-left: 1.5px solid var(--ink); }
thead th:last-child { color: var(--forest); }
td:first-child { font-weight: 600; }
td:nth-child(2) { color: var(--ink-soft); }
td:last-child { font-weight: 500; }
td .no { color: var(--alert); font-weight: 600; }

/* ---------- Público ---------- */
.trio { display: grid; gap: 0; border-top: 1.5px solid var(--ink); }
.trio > div { padding: 32px 0; border-bottom: 1px solid var(--line); }
.trio h3 { margin-bottom: 12px; }
.trio p { color: var(--ink-soft); font-size: 0.98rem; }
@media (min-width: 800px) {
    .trio { grid-template-columns: repeat(3, 1fr); }
    .trio > div { padding: 32px 32px 32px 0; border-bottom: 0; }
    .trio > div + div { padding-left: 32px; border-left: 1px solid var(--line); }
}

/* ---------- Planos ---------- */
.plans { display: grid; gap: 24px; align-items: stretch; }
.plan { display: flex; flex-direction: column; border: 1.5px solid var(--ink); border-radius: 8px; padding: 32px; background: var(--paper); }
.plan .name { font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.plan h3 { margin: 6px 0 10px; }
.plan .desc { font-size: 0.92rem; color: var(--ink-soft); min-height: 3.2em; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 24px 0; font-family: var(--serif); }
.price b { font-size: 3rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.price span { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-soft); }
.plan ul { list-style: none; margin: 0 0 32px; padding: 24px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; font-size: 0.95rem; flex: 1; align-content: start; }
.plan li { padding-left: 22px; position: relative; }
.plan li::before { content: ''; position: absolute; left: 0; top: .72em; width: 10px; height: 2px; background: var(--mint-deep); }
.plan .btn { width: 100%; }
.plan.featured { background: var(--forest); color: #e6f1ec; border-color: var(--forest); box-shadow: 8px 8px 0 var(--mint); }
.plan.featured .name, .plan.featured .desc, .plan.featured .price span { color: #a9c7ba; }
.plan.featured h3 { color: #fff; }
.plan.featured ul { border-color: rgba(255,255,255,.18); }
.plan.featured li::before { background: var(--mint); }
.plan .badge { float: right; background: var(--mint); color: var(--forest); font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } .plan.featured { margin-top: -16px; margin-bottom: -16px; } }

.matrix-wrap { margin-top: 72px; }
.matrix-title { margin-bottom: 24px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
table.matrix { min-width: 760px; text-align: center; }
.matrix th, .matrix td { padding: 14px 16px; }
.matrix thead th { text-transform: none; letter-spacing: 0; font-size: 0.95rem; color: var(--ink); font-family: var(--serif); font-weight: 700; vertical-align: bottom; }
.matrix thead th small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
.matrix tbody th[scope="row"] { text-align: left; font-weight: 500; font-size: 0.95rem; color: var(--ink); position: sticky; left: 0; background: var(--paper); border-left: 0; }
.matrix td, .matrix thead th:not(:first-child) { border-left: 1px solid var(--line); }
.matrix td:last-child, .matrix th:last-child { background: transparent; border-left: 1px solid var(--line); }
.matrix .hl, .matrix td:nth-child(4) { background: #e3f4ea; }
.matrix thead th.hl { border-top: 3px solid var(--mint-deep); }
.matrix tr.grp th { text-align: left; background: var(--paper-2); font: 700 0.75rem var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--mint-deep); padding: 10px 16px; border-left: 0; position: static; }
.matrix .y { color: var(--mint-deep); font-weight: 700; }
.matrix .n { color: #a6a08e; }
.matrix .u { font-weight: 700; color: var(--forest); }
/* ---------- Cupom Promocional Destacado ---------- */
.coupon-card {
    background: #ffffff;
    border: 2px dashed var(--mint-deep);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 24px rgba(15, 42, 33, 0.05);
    position: relative;
    overflow: hidden;
}
.coupon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--mint) 0%, var(--mint-deep) 100%);
}
.coupon-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.coupon-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f8f2;
    color: var(--mint-deep);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(11, 122, 85, 0.2);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-ring 1.8s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.coupon-subtag {
    font-size: 0.82rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.coupon-card-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.coupon-info {
    flex: 1;
    min-width: 280px;
}
.coupon-info h3 {
    margin: 0 0 6px;
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--forest);
}
.coupon-info p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.coupon-action-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.coupon-code-wrapper {
    display: flex;
    align-items: center;
    background: var(--paper-2);
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 6px 6px 6px 16px;
    gap: 12px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.coupon-code-wrapper:hover, .coupon-code-wrapper:focus-within {
    border-color: var(--mint-deep);
    box-shadow: 0 0 0 3px rgba(56, 211, 159, 0.2);
}
.coupon-code-inner {
    display: flex;
    flex-direction: column;
}
.coupon-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}
.coupon-code {
    font-family: var(--mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: .06em;
}
.btn-copy-coupon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--forest);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--sans);
    cursor: pointer;
    transition: all .2s ease;
}
.btn-copy-coupon:hover {
    background: var(--mint-deep);
}
.btn-copy-coupon.copied {
    background: var(--mint);
    color: var(--forest);
}
.copy-hint {
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-left: 4px;
    min-height: 1.1em;
}
.copy-hint.success {
    color: var(--mint-deep);
    font-weight: 600;
}

/* Promo strip inside plan cards */
.price-promo {
    margin: -12px 0 20px;
    padding: 8px 12px;
    background: #e8f6ef;
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--forest);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    border-left: 3px solid var(--mint-deep);
}
.price-promo span { color: var(--ink-soft); }
.price-promo strong { color: var(--forest); font-size: 0.98rem; font-family: var(--mono); }
.price-promo small { font-size: 0.74rem; color: var(--mint-deep); font-weight: 600; }

.plan.featured .price-promo {
    background: rgba(56, 211, 159, 0.14);
    border-left-color: var(--mint);
    color: #e5f5ee;
}
.plan.featured .price-promo span { color: #a9c7ba; }
.plan.featured .price-promo strong { color: #ffffff; }
.plan.featured .price-promo small { color: var(--mint); }
/* ---------- Card / Banner de Destaque do Plano Free ---------- */
.free-banner {
    margin-top: 56px;
    background: linear-gradient(135deg, #ffffff 0%, #f4faf6 100%);
    border: 2px solid var(--mint-deep);
    border-radius: 12px;
    padding: 32px 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 8px 30px rgba(11, 122, 85, 0.08);
    position: relative;
    overflow: hidden;
}
.free-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(56, 211, 159, 0.22) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.free-banner-content {
    flex: 1;
    min-width: 300px;
}
.free-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6f6ee;
    color: var(--mint-deep);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
    border: 1px solid rgba(11, 122, 85, 0.15);
}
.free-banner-title {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--forest);
}
.free-banner-desc {
    margin: 0 0 16px;
    font-size: 0.94rem;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 38rem;
}
.free-banner-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.free-banner-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
}
.free-banner-features svg {
    color: var(--mint-deep);
    flex-shrink: 0;
}
.free-banner-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    text-align: center;
}
.free-price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.free-price-tag .val {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest);
}
.free-price-tag .period {
    font-size: 0.78rem;
    color: var(--mint-deep);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 4px;
}
.btn-free-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--forest);
    color: var(--mint);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    width: 100%;
    transition: all .2s ease;
    box-shadow: 0 4px 12px rgba(15, 42, 33, 0.15);
}
.btn-free-cta:hover {
    background: var(--mint-deep);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 122, 85, 0.25);
}
.free-microcopy {
    font-size: 0.76rem;
    color: var(--ink-soft);
}

/* ---------- Garantia ---------- */
.guarantee { background: var(--mint); color: var(--forest); padding: 72px 0; border-block: 1.5px solid var(--forest); }
.guarantee .wrap { display: grid; gap: 24px; }
.guarantee h2 { max-width: 40rem; }
.guarantee p { font-size: 1.1rem; max-width: 44rem; }
.guarantee .seal { font-family: var(--serif); font-weight: 700; font-size: 4rem; line-height: 1; letter-spacing: -0.04em; }
@media (min-width: 800px) { .guarantee .wrap { grid-template-columns: 160px 1fr; gap: 40px; align-items: start; } }

/* ---------- FAQ ---------- */
.faq { max-width: 50rem; margin: 0 auto; border-top: 1.5px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 24px; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--sans); font-size: 1.6rem; line-height: 1; color: var(--mint-deep); transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--ink-soft); max-width: 42rem; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--forest); color: #a9c7ba; padding: 56px 0; font-size: 0.9rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; justify-content: space-between; }
.site-footer img { height: 34px; width: auto; border-radius: 6px; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--mint); color: var(--forest); padding: 10px 16px; z-index: 100; border-radius: 4px; font-weight: 600; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ---------- WhatsApp Floating Toast Notification ---------- */
.wa-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    max-width: 360px;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 33, 0.12);
    border-left: 5px solid #25d366;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
    transform: translateY(140%);
    opacity: 0;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .35s ease;
    pointer-events: none;
}
.wa-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.wa-toast-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--ink-soft);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}
.wa-toast-close:hover {
    color: var(--ink);
    background: #f0f0f0;
}
.wa-toast-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.wa-toast-avatar {
    width: 34px;
    height: 34px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}
.wa-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #ffffff;
}
.wa-toast-meta {
    display: flex;
    flex-direction: column;
}
.wa-toast-sender {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
}
.wa-toast-time {
    font-size: 0.72rem;
    color: #8c9791;
}
.wa-toast-body p {
    margin: 0 0 12px;
    font-size: 0.88rem;
    color: var(--ink);
    line-height: 1.45;
}
.wa-toast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #25d366;
    color: #ffffff;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
}
.wa-toast-btn:hover {
    background: #1eb857;
    transform: translateY(-1px);
}

/* ---------- Exit Intent Modal ---------- */
.exit-modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 42, 33, 0.78);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.exit-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}
.exit-modal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px 30px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    text-align: center;
    transform: scale(0.92);
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.exit-modal-backdrop.is-open .exit-modal-card {
    transform: scale(1);
}
.exit-modal-card--wa {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 440px;
}
.exit-modal-card--wa .exit-modal-close {
    top: -14px;
    right: -14px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.exit-modal-card--wa .exit-btn-secondary {
    margin-top: 14px;
    background: transparent;
}
.exit-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ink-soft);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
}
.exit-modal-close:hover {
    color: var(--ink);
    background: var(--paper-2);
}
.exit-modal-badge {
    display: inline-block;
    background: #fdf2e9;
    color: #c05621;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.exit-modal-card h2 {
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.25;
    color: var(--forest);
    margin: 0 0 10px;
}
.exit-modal-desc {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 0 0 20px;
}
.exit-modal-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    background: var(--paper);
    padding: 16px 20px;
    border-radius: 8px;
}
.exit-modal-perks li {
    font-size: 0.88rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}
.exit-modal-perks .check {
    color: var(--mint-deep);
    font-weight: 700;
}
.exit-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.exit-btn-main {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(11, 122, 85, 0.25);
}
.exit-btn-secondary {
    background: transparent;
    border: none;
    font-size: 0.82rem;
    color: var(--ink-soft);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 4px;
}
.exit-btn-secondary:hover {
    color: var(--ink);
}

@media (max-width: 599px) {
    .section { padding: 64px 0; }
    .versus > div, .plan { padding: 24px; }
    .stat-row div + div { padding-left: 10px; }
    .stat-row div { padding-right: 10px; }
    .coupon-card { padding: 20px 16px; margin-top: 1.5rem; margin-bottom: 2rem; }
    .coupon-info { min-width: 100%; }
    .coupon-action-area { width: 100%; }
    .coupon-code-wrapper { width: 100%; justify-content: space-between; }
    .free-banner { padding: 24px 20px; gap: 24px; }
    .free-banner-content { min-width: 100%; }
    .free-banner-action { width: 100%; }
    .wa-arrival-wrap { margin: 36px auto 20px; }
    .wa-chat-bubble { padding: 18px 16px; }
    .exit-modal-card { padding: 28px 20px 24px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
}

