/* landing.css — componentes das seções. Só tokens; nenhuma cor fixa.
   Estrutura herdada das LPs do Doutor Chamada (oferta-primeiro). */

/* ============ Botões ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-sm);
  border: 1px solid transparent; text-align: center; transition: background .15s, border-color .15s, transform .05s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-ink); color: #fff; }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 30px; font-size: 1.06rem; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__in { display: flex; align-items: center; gap: 16px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__seal { flex: 0 0 auto; }
.brand__name { font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink); }
.brand__tag {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border-strong); border-radius: 4px; padding: 1px 5px;
}
.site-header__spacer { flex: 1; }
.site-header .btn { padding: 10px 18px; font-size: .92rem; }
.site-nav { display: flex; gap: clamp(16px, 2.4vw, 30px); margin-left: clamp(16px, 3vw, 44px); }
.site-nav a { font-size: .92rem; font-weight: 600; color: var(--text); padding: 6px 2px; }
.site-nav a:hover { color: var(--brand); }
@media (max-width: 860px) { .site-nav { display: none; } }
@media (max-width: 560px) { .site-header .nav-cta { display: none; } }

/* ============ Selo de verificação (elemento-assinatura) ============ */
.seal {
  --seal-c: var(--verified);
  position: relative; width: 100%; max-width: 132px; aspect-ratio: 1; margin-inline: auto;
}
.seal--caution { --seal-c: var(--caution); }
.seal__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--seal-c) 55%, transparent);
  animation: seal-spin 26s linear infinite;
}
.seal__core {
  position: absolute; inset: 12%; border-radius: 50%;
  background: color-mix(in srgb, var(--seal-c) 12%, var(--surface));
  border: 2px solid var(--seal-c);
  display: grid; place-items: center; text-align: center;
}
.seal__mark { font-size: 30px; color: var(--seal-c); line-height: 1; }
.seal__label {
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--seal-c); font-weight: 700; margin-top: 4px;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal__ring { animation: none; } }

/* ============ Hero ============ */
.hero { padding-block: clamp(40px, 6vw, 72px); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .9rem; font-weight: 600; color: var(--brand-ink);
  background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  padding: 6px 13px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.dot {
  position: relative; display: inline-flex; width: 8px; height: 8px; flex: 0 0 8px;
}
.dot::before { content:""; position:absolute; inset:0; border-radius:50%; background: var(--verified); opacity:.75; animation: ping 1.9s cubic-bezier(0,0,.2,1) infinite; }
.dot::after  { content:""; position:relative; width:8px; height:8px; border-radius:50%; background: var(--verified); }
@keyframes ping { 75%,100% { transform: scale(2.3); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .dot::before { animation: none; } }

.hero h1 { font-size: var(--fs-display); margin-bottom: 18px; }
.hero h1 .u { color: var(--brand); }
.hero__sub { font-size: var(--fs-lead); color: var(--text); max-width: 44ch; margin-bottom: 26px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.microcopy { display: flex; align-items: center; gap: 7px; font-size: var(--fs-xs); color: var(--muted); margin-top: 15px; font-family: var(--font-mono); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 7px 13px; font-size: .82rem; font-weight: 600; color: var(--ink);
}
.chip__check { color: var(--verified); font-weight: 900; }

/* Cartão-amostra do resultado (visual honesto, product-true) */
.result-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.result-card__head {
  display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.result-card__file { margin-left: auto; text-transform: none; letter-spacing: 0; color: var(--text); }
.result-row { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: .92rem; }
.result-row__label { flex: 1; color: var(--text); }
.result-card__verdict { display: flex; align-items: center; gap: 11px; padding: 15px 18px; background: var(--caution-soft); font-size: .9rem; color: var(--text); }
.result-card__verdict .big { font-family: var(--font-mono); font-weight: 700; color: var(--caution); white-space: nowrap; }

.badge { font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .03em; padding: 4px 9px; border-radius: 6px; white-space: nowrap; }
.badge--ok  { background: var(--verified-soft); color: var(--verified); }
.badge--no  { background: var(--caution-soft);  color: var(--caution); }
.badge--na  { background: var(--bg-sunken);      color: var(--muted); }

/* ============ Faixa do problema (stats) ============ */
.problem { background: var(--bg-sunken); border-block: 1px solid var(--border); }
.stat-strip { display: flex; flex-wrap: wrap; gap: 16px 40px; justify-content: space-between; }
.stat { display: flex; flex-direction: column; min-width: 130px; }
.stat__num { font-size: 1.9rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.stat__label { font-size: .84rem; color: var(--muted); margin-top: 6px; max-width: 22ch; }

/* ============ Passos ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.step__num {
  font-family: var(--font-mono); font-weight: 700; font-size: .82rem; color: var(--brand);
  width: 32px; height: 32px; border: 1px solid var(--brand); border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px;
}
.step__title { font-size: var(--fs-h3); margin-bottom: 8px; }
.step__desc { font-size: .95rem; color: var(--text); }

/* ============ Confiança / Fato ≠ acusação ============ */
.trust { background: var(--surface-2); border-block: 1px solid var(--border); }
.trust__statement {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); line-height: 1.28; color: var(--ink);
  max-width: 26ch; margin: 6px 0 4px; text-wrap: balance;
}
.trust__statement em { font-style: italic; color: var(--brand); }
.fa { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.fa__col { border-radius: var(--r); padding: 22px; border: 1px solid; }
.fa__col--can  { background: var(--brand-soft); border-color: color-mix(in srgb, var(--brand) 24%, transparent); }
.fa__col--cant { background: var(--surface); border-color: var(--border-strong); }
.fa__h { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.fa__col--can  .fa__h { color: var(--brand-ink); }
.fa__col--cant .fa__h { color: var(--muted); }
.fa__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fa__list li { position: relative; padding-left: 24px; font-size: .95rem; line-height: 1.45; }
.fa__col--can  li::before { content: "✓"; position: absolute; left: 0; color: var(--verified); font-weight: 800; }
.fa__col--cant li { color: var(--muted); text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--danger) 45%, transparent); }
.fa__col--cant li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 800; text-decoration: none; }

.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.check { display: flex; gap: 13px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 15px 17px; }
.check__i { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 6px; background: var(--verified-soft); color: var(--verified); font-family: var(--font-mono); font-weight: 700; font-size: .8rem; display: grid; place-items: center; margin-top: 1px; }
.check__t b { display: block; font-size: .95rem; color: var(--ink); margin-bottom: 2px; }
.check__t span { font-size: .84rem; color: var(--muted); }
.lgpd-note {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 24px;
  background: var(--verified-soft); border: 1px solid color-mix(in srgb, var(--verified) 24%, transparent);
  border-radius: var(--r); padding: 16px 18px; font-size: .92rem; color: var(--text);
}
.lgpd-note strong { color: var(--ink); }

/* ============ Preço ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.tier { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 20px; display: flex; flex-direction: column; }
.tier--featured { border-color: var(--brand); box-shadow: var(--shadow); position: relative; }
.tier--featured::after {
  content: "comece aqui"; position: absolute; top: -10px; left: 20px;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--brand); color: #fff; padding: 3px 9px; border-radius: 5px;
}
.tier__name { font-size: .82rem; font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.tier__price { font-size: 1.7rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.tier__price small { font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.tier__desc { font-size: .86rem; color: var(--text); margin-top: 10px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 2px 20px; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item > summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 16px 0; font-weight: 700; color: var(--ink); font-size: 1rem; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; font-family: var(--font-mono); color: var(--brand); font-size: 1.3rem; line-height: 1; }
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item__a { padding-bottom: 18px; font-size: .95rem; color: var(--text); max-width: 68ch; }
.faq-item__a strong { color: var(--ink); }

/* ============ Fechamento ============ */
.closing__card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-ink) 100%);
  border-radius: var(--r-lg); padding: clamp(32px, 5vw, 56px); text-align: center; box-shadow: var(--shadow);
}
.closing__card h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: 14px; }
.closing__card p { color: color-mix(in srgb, #fff 82%, var(--brand)); max-width: 52ch; margin: 0 auto 26px; font-size: var(--fs-lead); }
.closing__card .btn--primary { background: #fff; color: var(--brand-ink); box-shadow: none; }
.closing__card .btn--primary:hover { background: color-mix(in srgb, #fff 90%, var(--brand)); color: var(--brand-ink); }

/* ============ Footer ============ */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-sunken); padding-top: 52px; }
.site-footer__in { display: flex; flex-wrap: wrap; gap: 18px 44px; justify-content: space-between; align-items: flex-start; padding-bottom: 34px; }
.legal { font-size: .8rem; color: var(--muted); max-width: 62ch; line-height: 1.6; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 34px 56px; padding-bottom: 42px; }
.footer-mission { font-size: .92rem; color: var(--muted); margin-top: 14px; max-width: 36ch; line-height: 1.6; }
.footer-h {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 6px;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.footer-col a { font-size: .93rem; color: var(--text); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-block: 20px 28px;
  display: flex; flex-wrap: wrap; gap: 8px 48px; justify-content: space-between; align-items: baseline;
}
.footer-bottom p { font-size: .78rem; color: var(--muted); line-height: 1.6; max-width: 74ch; }
.footer-bottom p:first-child { white-space: nowrap; }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom p:first-child { white-space: normal; }
}

/* ============ Sticky CTA (mobile) ============ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(10px); border-top: 1px solid var(--border);
}
@media (max-width: 640px) {
  .sticky-cta { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .result-card { order: -1; max-width: 380px; margin-inline: auto; }
  .steps, .fa, .checks, .pricing-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
}
@media (max-width: 860px) and (min-width: 641px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .checks { grid-template-columns: repeat(2, 1fr); }
}

/* Reveal on load (respeita reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(10px); animation: reveal .6s ease forwards; }
  .reveal--2 { animation-delay: .08s; }
  .reveal--3 { animation-delay: .16s; }
  @keyframes reveal { to { opacity: 1; transform: none; } }
}
