/* ============================================================
   CPFregularizar - stylesheet vanilla (M3-inspired)
   ~15KB minificado na pratica. Sem Tailwind, sem preprocessor.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: #0a6e57; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
.row { display: flex; flex-wrap: wrap; gap: 1rem; }
.grid-2 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1.4fr 1fr; gap: 2.5rem; } }

/* Aviso legal */
.legal-banner {
  background: #fffbeb; border-bottom: 1px solid #fde68a; color: #78350f;
  padding: .5rem 1rem; font-size: 12.5px; line-height: 1.45;
}
.legal-banner b { font-weight: 700; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0; padding: 1rem 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header nav { display: none; gap: .25rem; }
@media (min-width: 640px) { .site-header nav { display: inline-flex; } }
.site-header nav a {
  color: #334155; font-size: 14px; font-weight: 500; padding: .5rem .75rem; border-radius: 6px;
}
.site-header nav a:hover { color: #0a6e57; background: #f1f5f9; text-decoration: none; }

/* Hero */
.hero { padding: 3rem 0 2.5rem; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.hero h1 {
  font-size: clamp(28px, 5vw, 44px); line-height: 1.08; font-weight: 800;
  letter-spacing: -0.02em; color: #0f172a; margin: 1.5rem 0 1rem;
}
.hero h1 .accent { color: #0a6e57; display: block; margin-top: .5rem; }
.hero h1 .danger { color: #dc2626; }
.hero p.lead { font-size: 16.5px; line-height: 1.6; color: #475569; max-width: 60ch; margin: 0 0 1.5rem; }
.hero ul.benefits {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: .65rem;
}
@media (min-width: 640px) { .hero ul.benefits { grid-template-columns: 1fr 1fr; gap: .65rem 1.25rem; } }
.hero ul.benefits li { display: flex; align-items: start; gap: .55rem; color: #334155; font-size: 14.5px; }
.hero ul.benefits svg { flex-shrink: 0; color: #059669; margin-top: 2px; }

/* Card do form */
.card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 1.5rem; box-shadow: 0 6px 24px -8px rgba(15, 23, 42, 0.08);
}
.card h2 { font-size: 18px; font-weight: 700; margin: 0 0 .25rem; }
.card .sub { color: #64748b; font-size: 13.5px; margin: 0 0 1.25rem; }

/* Form controls */
.field { margin-bottom: 1rem; }
.field label.tf-label {
  display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: .35rem;
}
.field .hint { font-size: 11.5px; color: #64748b; margin-top: .25rem; }
.tf-input, .tf-select, .tf-textarea {
  width: 100%; height: 44px; padding: 0 .85rem;
  border: 1.5px solid #cbd5e1; border-radius: 10px; background: #fff; color: #0f172a;
  font-size: 15px; outline: none; transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.tf-textarea { height: auto; min-height: 100px; padding: .65rem .85rem; }
.tf-input:focus, .tf-select:focus, .tf-textarea:focus {
  border-color: #0a6e57; box-shadow: 0 0 0 4px rgba(10, 110, 87, .12);
}
.tf-input.is-error { border-color: #dc2626; }
.tf-input.is-error:focus { box-shadow: 0 0 0 4px rgba(220, 38, 38, .12); }

/* Checkbox custom */
.tf-checkbox { display: flex; align-items: start; gap: .55rem; cursor: pointer; font-size: 13.5px; color: #475569; }
.tf-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.tf-checkbox .box {
  flex-shrink: 0; margin-top: 1px; width: 20px; height: 20px; border: 2px solid #cbd5e1;
  border-radius: 5px; background: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .12s, border-color .12s;
}
.tf-checkbox input:checked + .box { background: #059669; border-color: #059669; }
.tf-checkbox input:focus-visible + .box { box-shadow: 0 0 0 4px rgba(5, 150, 105, .18); }
.tf-checkbox .box svg { color: #fff; opacity: 0; transition: opacity .1s; }
.tf-checkbox input:checked + .box svg { opacity: 1; }
.tf-checkbox a { color: #0a6e57; font-weight: 600; }

/* Price chip */
.price-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px;
  padding: .85rem 1rem; font-size: 13px; color: #475569; margin: 1rem 0;
}
.price-chip strong { color: #0f172a; font-weight: 700; }
.price-chip .price { font-weight: 800; color: #0a6e57; font-size: 15px; }
.price-chip .price s { color: #94a3b8; font-weight: 500; font-size: 12px; margin-right: .35rem; }

/* reCAPTCHA wrap */
.cpfreg-recaptcha-wrap {
  display: flex; justify-content: center; align-items: center;
  min-height: 78px; margin: 4px 0 2px;
  contain: layout style;
}
.cpfreg-recaptcha-wrap > .g-recaptcha { transform-origin: top left; }
@media (max-width: 380px) {
  .cpfreg-recaptcha-wrap { transform: scale(.92); transform-origin: top left; }
}
.recaptcha-seal {
  display: inline-flex; align-items: center; gap: .35rem; font-size: 12px; color: #475569;
  background: #f8fafc; border: 1px solid #e2e8f0; padding: .35rem .65rem; border-radius: 999px;
}
.recaptcha-seal svg { color: #0a6e57; }
.recaptcha-seal a { color: #0a6e57; }
.recaptcha-seal span.sep { color: #cbd5e1; }
.recaptcha-seal-wrap { display: flex; justify-content: center; margin-top: .5rem; }

/* Botao CTA */
.btn-cta {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem; width: 100%;
  background: #059669; color: #fff; font-weight: 800; text-transform: uppercase;
  font-size: 14.5px; letter-spacing: .02em;
  padding: 1rem 1.25rem; border: 0; border-radius: 12px; cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(5, 150, 105, .5);
  transition: background .12s, transform .12s; min-height: 56px;
}
@media (min-width: 640px) { .btn-cta { font-size: 15.5px; } }
.btn-cta:hover { background: #047857; }
.btn-cta:active { background: #065f46; transform: translateY(1px); }
.btn-cta:disabled { opacity: .75; cursor: progress; }
.btn-cta .label { transition: opacity .15s; }
.btn-cta.is-loading .label { opacity: 0; }
.btn-cta .spinner {
  display: none; width: 22px; height: 22px; border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite;
}
.btn-cta.is-loading .spinner { display: inline-block; position: absolute; left: 50%; top: 50%; margin: -11px 0 0 -11px; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-cta .arrow { display: none; }
@media (min-width: 640px) { .btn-cta .arrow { display: inline; } }
.btn-cta .progress {
  position: absolute; left: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.45);
  width: 0; transition: width .15s linear;
}
.btn-cta.is-loading .progress { width: 100%; transition: width 5s linear; }

/* Snackbar */
.snackbar {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%) translateY(120%);
  background: #0f172a; color: #fff; padding: .75rem 1.1rem; border-radius: 10px;
  font-size: 14px; box-shadow: 0 12px 30px -10px rgba(15,23,42,.4);
  max-width: 90%; z-index: 100; transition: transform .25s ease;
  display: flex; align-items: center; gap: .5rem;
}
.snackbar.show { transform: translateX(-50%) translateY(0); }
.snackbar.error { background: #991b1b; }
.snackbar.success { background: #065f46; }
.snackbar button {
  background: transparent; color: rgba(255,255,255,.85); border: 0; font-size: 16px; cursor: pointer; padding: 0 .25rem;
}

/* Modal Pix */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15, 23, 42, .55); z-index: 60;
  display: none; align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop[data-open="true"] { display: flex; }
.modal {
  background: #fff; border-radius: 16px; max-width: 460px; width: 100%;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.4); overflow: hidden;
  animation: pop .25s ease;
}
@keyframes pop { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-head { padding: 1.25rem 1.5rem 0; display: flex; align-items: center; justify-content: space-between; }
.modal-head h3 { margin: 0; font-size: 18px; font-weight: 700; }
.modal-head .close { background: transparent; border: 0; font-size: 22px; line-height: 1; color: #64748b; cursor: pointer; }
.modal-body { padding: 1rem 1.5rem 1.5rem; }
.modal-body .qr-box { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.modal-body .qr-img {
  width: 180px; height: 180px; background: #f1f5f9; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 12px;
}
.modal-body .qr-img img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.modal-body .price { font-size: 26px; font-weight: 800; color: #0f172a; }
.modal-body .timer { font-size: 13px; color: #475569; }
.modal-body .timer b { color: #0a6e57; }
.copy-box {
  display: flex; align-items: stretch; border: 1px solid #cbd5e1; border-radius: 10px; overflow: hidden;
  background: #f8fafc; margin-top: .75rem;
}
.copy-box code {
  flex: 1; padding: .65rem .85rem; font-size: 12px; color: #334155;
  font-family: ui-monospace, SFMono-Regular, monospace; word-break: break-all;
  background: transparent; border: 0; max-height: 5rem; overflow-y: auto;
}
.copy-box button {
  background: #0a6e57; color: #fff; border: 0; padding: 0 .9rem; font-weight: 700; font-size: 12.5px; cursor: pointer;
}
.copy-box button:hover { background: #075e4a; }

/* Como funciona */
.section { padding: 3rem 0; }
.section h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; margin: 0 0 1.5rem; }
.steps { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1.25rem; text-align: left;
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 50%; background: #0a6e57; color: #fff; font-weight: 800; margin-bottom: .75rem;
}
.step h3 { margin: 0 0 .35rem; font-size: 15px; font-weight: 700; }
.step p { margin: 0; color: #64748b; font-size: 13.5px; line-height: 1.5; }

/* Seguranca */
.security { background: #f1f5f9; }
.security .items { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .security .items { grid-template-columns: repeat(3, 1fr); } }
.security .item {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.1rem;
  display: flex; gap: .85rem; align-items: start;
}
.security .item .icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: #d1fae5; color: #065f46;
  display: flex; align-items: center; justify-content: center;
}
.security .item h3 { margin: 0 0 .25rem; font-size: 14.5px; font-weight: 700; }
.security .item p { margin: 0; color: #64748b; font-size: 13px; line-height: 1.5; }

/* Footer */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 2.5rem 0 1.5rem; font-size: 13px; }
.site-footer .container { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer .container { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 13px; font-weight: 700; margin: 0 0 .65rem; text-transform: uppercase; letter-spacing: .04em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .35rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer .copy { border-top: 1px solid #1e293b; margin-top: 1.5rem; padding-top: 1rem; text-align: center; color: #94a3b8; font-size: 12px; }

/* LGPD modal */
.lgpd-content { line-height: 1.6; color: #334155; font-size: 14px; }
.lgpd-content h3 { color: #0f172a; font-size: 16px; margin: 1.25rem 0 .5rem; }
.lgpd-content ul { padding-left: 1.25rem; }

/* Rastreio page */
.rastreio-form { max-width: 480px; margin: 2rem auto; }
.rastreio-result { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1.5rem; margin-top: 1.5rem; }
.status-pill {
  display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .65rem; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.status-pill.consulta_cpf, .status-pill.coleta_documentos, .status-pill.processamento { background: #fef3c7; color: #92400e; }
.status-pill.resultado_consulta, .status-pill.orcamento, .status-pill.pagamento_honorarios { background: #dbeafe; color: #1e40af; }
.status-pill.envio_recibo, .status-pill.concluido { background: #d1fae5; color: #065f46; }

/* Páginas legais (Termos / Política) */
.legal-prose { max-width: 760px; margin: 0 auto; padding: 2rem 1rem 3rem; color: #334155; }
.legal-prose h2 { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin: 2rem 0 .75rem; letter-spacing: -0.01em; }
.legal-prose h3 { font-size: 1.125rem; font-weight: 700; color: #0f172a; margin: 1.25rem 0 .5rem; }
.legal-prose p, .legal-prose li { color: #334155; line-height: 1.7; }
.legal-prose ul { list-style: disc; padding-left: 1.5rem; margin: .5rem 0 .75rem; }
.legal-prose ul li { margin: .25rem 0; }
.legal-prose strong { color: #0f172a; }
.legal-prose a { color: #0a6e57; font-weight: 600; }
.legal-prose a:hover { text-decoration: underline; }
.legal-hero { padding: 3rem 0 2rem; border-bottom: 1px solid #e2e8f0; background: linear-gradient(180deg, #fff, #f8fafc); }
.legal-hero h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 800; letter-spacing: -0.02em; color: #0f172a; margin: .75rem 0 .5rem; }
.legal-hero p { color: #64748b; font-size: 14.5px; margin: 0; }
.legal-chip { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .75rem; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.legal-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #059669; }
.legal-breadcrumb { font-size: 12.5px; font-weight: 600; color: #64748b; margin-bottom: 1rem; }
.legal-breadcrumb a { color: #64748b; }
.legal-breadcrumb a:hover { color: #0a6e57; }
.legal-cta { margin-top: 2.5rem; padding: 1.25rem; border-radius: 12px; border: 1px solid #a7f3d0; background: #ecfdf5; font-size: 13.5px; color: #064e3b; }
.legal-cta strong { color: #022c22; }
.legal-cta a { color: #0a6e57; font-weight: 600; }
.legal-cta a:hover { text-decoration: underline; }
.legal-footer { background: #0f172a; color: #cbd5e1; padding: 2.5rem 0 1.5rem; font-size: 13px; }
.legal-footer .row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding: 0 1rem; max-width: 1120px; margin: 0 auto; }
.legal-footer a { color: #cbd5e1; }
.legal-footer a:hover, .legal-footer a.is-active { color: #fff; text-decoration: none; }
@media (max-width: 640px) { .legal-footer .row { flex-direction: column; align-items: flex-start; } }

/* Admin */
.admin-shell { display: grid; grid-template-columns: 1fr; min-height: 100vh; }
@media (min-width: 768px) { .admin-shell { grid-template-columns: 240px 1fr; } }
.admin-side { background: #0f172a; color: #cbd5e1; padding: 1.25rem; }
.admin-side .brand { color: #fff; font-weight: 800; font-size: 16px; margin-bottom: 1.25rem; }
.admin-side nav a {
  display: flex; align-items: center; gap: .55rem; padding: .55rem .75rem; border-radius: 8px;
  color: #cbd5e1; font-size: 14px; margin-bottom: .15rem;
}
.admin-side nav a:hover, .admin-side nav a.active { background: #1e293b; color: #fff; text-decoration: none; }
.admin-main { padding: 1.5rem; background: #f8fafc; }
.admin-main h1 { font-size: 22px; font-weight: 800; margin: 0 0 1rem; }
.admin-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.25rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { padding: .65rem .75rem; text-align: left; border-bottom: 1px solid #e2e8f0; }
.admin-table th { font-weight: 700; color: #475569; background: #f8fafc; }
.admin-table tr:hover { background: #f8fafc; }
.badge { display: inline-block; padding: .15rem .5rem; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge.pendente { background: #fef3c7; color: #92400e; }
.badge.pago { background: #d1fae5; color: #065f46; }
.badge.cancelado { background: #fee2e2; color: #991b1b; }
.badge.expirado { background: #f1f5f9; color: #475569; }

/* ============================================================
   EXPANSAO: Conteudo completo do site antigo (vanilla, sem Tailwind)
   Paleta: brand-500=#0a6e57 (verde primario), brand-700=#0d5b48
           accent emerald-500=#059669, ink-900=#0f172a, ink-700=#334155
           ink-500=#64748b, slate-50=#f8fafc, slate-100=#f1f5f9
           slate-200=#e2e8f0, slate-700=#334155, slate-800=#1e293b
           slate-900=#0f172a
   ============================================================ */

/* Tokens visiveis (alinhados com as classes Tailwind do site antigo) */
.t-amber-50  { background: #fffbeb; }
.t-amber-200 { border-color: #fde68a; }
.t-amber-300 { border-color: #fcd34d; }
.t-amber-700 { color: #b45309; }
.t-amber-900 { color: #78350f; }
.t-amber-300-text { color: #fcd34d; }
.t-amber-500 { color: #f59e0b; }

.t-red-50  { background: #fef2f2; }
.t-red-200 { border-color: #fecaca; }
.t-red-300 { border-color: #fca5a5; }
.t-red-500 { background: #ef4444; color: #fff; }
.t-red-600 { color: #dc2626; }
.t-red-700 { color: #b91c1c; }

.t-emerald-50  { background: #ecfdf5; }
.t-emerald-200 { border-color: #a7f3d0; }
.t-emerald-300 { color: #6ee7b7; }
.t-emerald-400 { color: #34d399; }
.t-emerald-500 { color: #059669; }
.t-emerald-600 { background: #059669; color: #fff; }
.t-emerald-700 { color: #047857; }
.t-emerald-800 { background: #065f46; }
.t-emerald-300-bg { background: rgba(16,185,129,.2); border-color: rgba(52,211,153,.4); }

.t-yellow-100 { color: #fef3c7; }

.t-brand-50  { background: #ecfdf5; }
.t-brand-100 { background: #d1fae5; }
.t-brand-200 { border-color: #a7f3d0; }
.t-brand-300 { border-color: #6ee7b7; }
.t-brand-400 { color: #34d399; }
.t-brand-500 { color: #0a6e57; background: #0a6e57; }
.t-brand-600 { color: #075e4a; }
.t-brand-700 { background: #075e4a; color: #075e4a; }
.t-brand-50-bg { background: #ecfdf5; }
.t-brand-500-bg { background: #0a6e57; }

.t-ink-700 { color: #334155; }
.t-ink-900 { color: #0f172a; }
.t-ink-500 { color: #64748b; }
.t-slate-50-bg  { background: #f8fafc; }
.t-slate-100-bg { background: #f1f5f9; }
.t-slate-200-br { border-color: #e2e8f0; }
.t-slate-300-br { border-color: #cbd5e1; }
.t-slate-700-bg { background: #334155; }
.t-slate-700-text { color: #cbd5e1; }
.t-slate-800-bg { background: #1e293b; }
.t-slate-900-bg { background: #0f172a; color: #fff; }
.t-slate-200-text { color: #e2e8f0; }
.t-slate-500-text { color: #64748b; }
.t-slate-300-text { color: #cbd5e1; }
.t-slate-100-text { color: #f1f5f9; }
.t-slate-200-bg  { background: #e2e8f0; }
.t-slate-400-text { color: #94a3b8; }
.t-slate-300-bg  { background: #cbd5e1; }
.t-slate-200-border { border-color: #e2e8f0; }
.t-white-bg { background: #fff; }
.t-white-text { color: #fff; }
.t-white-70  { color: rgba(255,255,255,.7); }
.t-white-80  { color: rgba(255,255,255,.8); }
.t-white-85  { color: rgba(255,255,255,.85); }
.t-white-60  { color: rgba(255,255,255,.6); }
.t-white-15  { background: rgba(255,255,255,.15); }
.t-white-10  { background: rgba(255,255,255,.10); }
.t-slate-900-overlay { background: rgba(15,23,42,.60); }
.t-amber-50-bg { background: #fffbeb; }
.t-amber-50-br { border-color: #fde68a; }

.t-brand-500-10 { background: rgba(10,110,87,.10); }
.t-emerald-400-15 { background: rgba(52,211,153,.15); }
.t-emerald-500-5  { background: rgba(16,185,129,.05); }
.t-emerald-500-10 { background: rgba(16,185,129,.10); }
.t-red-500-95  { background: rgba(239,68,68,.95); }
.t-red-500-10  { background: rgba(239,68,68,.10); }
.t-red-500-30  { background: rgba(239,68,68,.30); }
.t-red-500-border { border-color: rgba(239,68,68,.30); }

/* Animacoes simples */
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
.anim-fade-up { animation: fade-up .5s ease both; }
.anim-pulse-dot { animation: pulse-dot 1.4s ease-in-out infinite; }

/* Container largura maior (max-w-7xl) */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .wrap { padding: 0 1.5rem; } }

/* Banner de aviso legal (amarelo) */
.legal-banner-warn {
  background: #fffbeb; border-bottom: 1px solid #fde68a; color: #78350f;
  font-size: 12.5px; line-height: 1.45;
}
.legal-banner-warn .wrap { display: flex; align-items: flex-start; gap: .5rem; padding-top: .5rem; padding-bottom: .5rem; }
.legal-banner-warn svg { flex-shrink: 0; margin-top: 2px; color: #b45309; }
.legal-banner-warn strong { font-weight: 700; color: #78350f; }

/* Header sticky com blur */
.site-header-sticky {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
}
.site-header-sticky .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 1rem;
  min-height: 64px; padding-top: .65rem; padding-bottom: .65rem;
}
@media (min-width: 640px) {
  .site-header-sticky .wrap { flex-wrap: nowrap; min-height: 80px; padding-top: 0; padding-bottom: 0; }
}
.site-header-sticky .brand {
  display: flex; align-items: center; gap: .6rem; min-width: 0; width: 100%;
}
@media (min-width: 640px) {
  .site-header-sticky .brand { width: auto; }
}
.site-header-sticky .brand img { height: 48px; width: auto; flex-shrink: 0; }
@media (min-width: 640px) { .site-header-sticky .brand img { height: 56px; } }
.site-header-sticky .crc {
  display: none; align-items: center; gap: .5rem; padding-left: 1.25rem; border-left: 1px solid #e2e8f0;
}
@media (min-width: 768px) { .site-header-sticky .crc { display: flex; } }
.site-header-sticky .crc .icon {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 999px; background: linear-gradient(135deg, #fef3c7, #fffbeb); border: 1px solid #fcd34d; color: #b45309;
}
.site-header-sticky .crc small { font-size: 10px; font-weight: 700; color: #b45309; text-transform: uppercase; letter-spacing: .12em; display: block; line-height: 1; }
.site-header-sticky .crc strong { font-size: 12px; color: #334155; display: block; line-height: 1.2; }
.site-header-sticky nav {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  width: 100%;
}
@media (min-width: 640px) {
  .site-header-sticky nav { width: auto; gap: .25rem; }
}
.site-header-sticky nav a {
  display: inline-flex; align-items: center; justify-content: center;
  color: #334155; font-size: 13px; font-weight: 600; line-height: 1;
  padding: .7rem .85rem; border-radius: 999px; border: 1px solid #e2e8f0; background: #fff;
  transition: color .15s, background .15s, border-color .15s, box-shadow .15s;
}
.site-header-sticky nav a:hover { color: #0a6e57; background: #f1f5f9; text-decoration: none; }
.site-header-sticky nav a.nav-priority {
  background: #0a6e57; border-color: #0a6e57; color: #fff; font-weight: 700;
  box-shadow: 0 8px 18px -12px rgba(10,110,87,.65);
}
.site-header-sticky nav a.nav-priority:hover {
  background: #075e4a; border-color: #075e4a; color: #fff;
}

/* Visibilidade responsiva dos links do nav */
.site-header-sticky nav a.nav-show-sm { display: none; }
.site-header-sticky nav a.nav-show-lg { display: none; }
@media (max-width: 639px) {
  .site-header-sticky nav a.nav-show-sm { display: inline-flex; }
}
@media (min-width: 640px) {
  .site-header-sticky nav a.nav-show-lg { display: inline-flex; }
}

/* Hero refinado com selos no topo */
.hero-refined { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.hero-refined::before,
.hero-refined::after {
  content: ''; position: absolute; pointer-events: none; filter: blur(48px);
}
.hero-refined::before { top: -128px; left: -96px; width: 384px; height: 384px; background: rgba(10,110,87,.05); }
.hero-refined::after  { top: 80px; right: 0; width: 288px; height: 288px; background: rgba(16,185,129,.05); }
.hero-refined .wrap { position: relative; padding-top: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 640px) { .hero-refined .wrap { padding-top: 4rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .hero-refined .wrap { padding-top: 5rem; padding-bottom: 5rem; } }

.hero-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }

.chip {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px;
  padding: .35rem .75rem; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.chip-emerald { background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857; }
.chip-emerald .dot { width: 8px; height: 8px; border-radius: 50%; background: #059669; }
.chip-amber { background: #fffbeb; border: 1px solid #fde68a; color: #b45309; }
.chip-amber .dot { width: 8px; height: 8px; border-radius: 50%; background: #f59e0b; }
.chip-red { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.chip-red .dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; }
.chip-brand { background: #ecfdf5; border: 1px solid #a7f3d0; color: #0a6e57; }
.chip-brand .dot { width: 8px; height: 8px; border-radius: 50%; background: #0a6e57; }
.chip-outline-emerald { background: rgba(16,185,129,.20); border: 1px solid rgba(52,211,153,.40); color: #6ee7b7; }
.chip-outline-emerald .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; }

.h1-hero {
  font-size: 32px; line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; color: #0f172a; margin: 1.5rem 0 1rem;
}
@media (min-width: 640px) { .h1-hero { font-size: 40px; } }
@media (min-width: 1024px) { .h1-hero { font-size: 48px; } }
.h1-hero .accent { color: #0a6e57; display: block; margin-top: .5rem; }
.h1-hero .danger { color: #dc2626; }

.lead-refined { font-size: 17px; line-height: 1.6; color: #334155; max-width: 65ch; margin: 0 0 1.5rem; }
.lead-refined strong { color: #0f172a; }

.benefits-refined {
  list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-refined { grid-template-columns: 1fr 1fr; gap: .75rem 1.25rem; max-width: 42rem; } }
.benefits-refined li { display: flex; align-items: flex-start; gap: .55rem; color: #334155; font-size: 14.5px; }
.benefits-refined li svg { flex-shrink: 0; color: #059669; margin-top: 2px; }
.benefits-refined li strong { color: #0f172a; }

/* Card do form refinado */
.form-card {
  position: relative; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  box-shadow: 0 12px 30px -10px rgba(15,23,42,.10); overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #0a6e57 0%, #0a6e57 60%, #059669 100%);
}
.form-card .form-body { padding: 1.75rem; }
@media (min-width: 640px) { .form-card .form-body { padding: 1.75rem; } }
.form-card .form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.form-card .form-head .label-triagem {
  display: inline-flex; align-items: center; gap: .35rem; border-radius: 999px; background: #ecfdf5; border: 1px solid #d1fae5;
  padding: .25rem .65rem; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #0a6e57;
}
.form-card .form-head .label-info { font-size: 11px; font-weight: 700; color: #64748b; }
.form-card h2.title { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: #0f172a; margin: .75rem 0 .25rem; }
@media (min-width: 640px) { .form-card h2.title { font-size: 24px; } }
.form-card p.sub { font-size: 13.5px; color: #64748b; margin: 0 0 1.25rem; }

.tf-trust-seals {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
  border-top: 1px solid #e2e8f0; background: rgba(248,250,252,.6); padding: 1rem 1.5rem;
}
@media (min-width: 640px) { .tf-trust-seals { grid-template-columns: repeat(3, 1fr); } }
.tf-trust-seal {
  display: flex; align-items: center; gap: .65rem; font-size: 11.5px; color: #64748b;
}
.tf-trust-seal .ico {
  display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 8px; background: #fff; border: 1px solid #e2e8f0;
}
.tf-trust-seal strong { color: #0f172a; display: block; font-size: 12px; }

.price-box {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px;
  padding: .85rem 1rem; font-size: 12.5px; color: #334155; margin: 1rem 0;
}
.price-box strong { color: #0f172a; font-weight: 700; }
.price-box .price-final { font-weight: 800; color: #0a6e57; font-size: 16px; }

/* Botao CTA refinado (com label/spinner/arrow/progress) */
.btn-cta-refined {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem; width: 100%;
  background: #059669; color: #fff; font-weight: 800; text-transform: uppercase;
  font-size: 15px; letter-spacing: .02em; padding: 1rem 1.25rem; border: 0; border-radius: 12px; cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(5,150,105,.5);
  transition: background .12s, transform .12s; min-height: 56px;
}
@media (min-width: 640px) { .btn-cta-refined { font-size: 16px; } }
.btn-cta-refined:hover { background: #047857; }
.btn-cta-refined:active { background: #065f46; transform: translateY(1px); }
.btn-cta-refined:disabled { opacity: .85; cursor: progress; }
.btn-cta-refined .btn__label { transition: opacity .15s; }
.btn-cta-refined.is-loading .btn__label { opacity: 0; }
.btn-cta-refined .btn__spinner {
  display: none; width: 22px; height: 22px; border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite;
}
.btn-cta-refined.is-loading .btn__spinner { display: inline-block; position: absolute; left: 50%; top: 50%; margin: -11px 0 0 -11px; }
.btn-cta-refined .btn__arrow { display: none; }
@media (min-width: 640px) { .btn-cta-refined .btn__arrow { display: inline; } }
.btn-cta-refined .btn__progress {
  position: absolute; left: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.45);
  width: 0; transition: width .15s linear;
}
.btn-cta-refined.is-loading .btn__progress { width: 100%; transition: width 5s linear; }

/* reCAPTCHA seal (centro) */
.recaptcha-seal-centered { display: flex; align-items: center; justify-content: center; gap: .35rem; font-size: 12px; color: #475569; margin-top: .5rem; flex-wrap: wrap; }
.recaptcha-seal-centered svg { color: #0a6e57; }
.recaptcha-seal-centered a { color: #0a6e57; }
.recaptcha-seal-centered .sep { color: #cbd5e1; }

/* ============================================================
   SEÇÃO COMO FUNCIONA - Timeline Vertical (8 etapas)
   ============================================================ */
.section-white { background: #fff; padding: 4rem 0; }
@media (min-width: 640px) { .section-white { padding: 5rem 0; } }
.section-slate { background: #f1f5f9; padding: 4rem 0; }
@media (min-width: 640px) { .section-slate { padding: 5rem 0; } }
.section-dark { background: #0f172a; color: #fff; padding: 4rem 0; position: relative; overflow: hidden; }
@media (min-width: 640px) { .section-dark { padding: 5rem 0; } }
.section-dark::before,
.section-dark::after {
  content: ''; position: absolute; pointer-events: none; filter: blur(48px);
}
.section-dark::before { top: -128px; right: -96px; width: 384px; height: 384px; background: rgba(16,185,129,.10); }
.section-dark::after  { bottom: -128px; left: -96px; width: 384px; height: 384px; background: rgba(10,110,87,.10); }
.section-dark > .wrap { position: relative; }
.section-dark h2 { color: #fff; }
.section-dark .lead-light { color: #cbd5e1; }
.section-dark .lead-light strong { color: #fff; }

.section-head-center { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head-center .eyebrow { display: inline-flex; }
.section-head-center h2 { font-size: 28px; line-height: 1.12; font-weight: 800; letter-spacing: -0.01em; color: #0f172a; margin: 1rem 0 .75rem; }
@media (min-width: 640px) { .section-head-center h2 { font-size: 34px; } }
@media (min-width: 1024px) { .section-head-center h2 { font-size: 38px; } }
.section-head-center h2 .accent-emerald { color: #059669; }
.section-head-center h2 .accent-brand { color: #0a6e57; }
.section-head-center p { font-size: 16px; line-height: 1.6; color: #334155; margin: 0; }

.timeline-vertical { max-width: 800px; margin: 0 auto; }
.timeline-vertical__item {
  position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 1.25rem; padding-bottom: 2rem;
}
.timeline-vertical__item:not(:last-child)::before {
  content: ''; position: absolute; left: 32px; top: 48px; bottom: 0; width: 2px; background: #e2e8f0;
}
.timeline-vertical__marker {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 999px; background: #fff; border: 2px solid #e2e8f0;
  box-shadow: 0 0 0 6px #fff;
}
.timeline-vertical__marker.is-emerald { background: #ecfdf5; border-color: #a7f3d0; }
.timeline-vertical__marker.is-red { background: #fef2f2; border-color: #fecaca; }
.timeline-vertical__num {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 999px; background: #0a6e57; color: #fff; font-weight: 800; font-size: 18px;
}
.timeline-vertical__marker.is-emerald .timeline-vertical__num { background: #059669; }
.timeline-vertical__marker.is-red .timeline-vertical__num { background: #dc2626; }
.timeline-vertical__title { font-size: 18px; font-weight: 800; color: #0f172a; margin: .25rem 0 .5rem; }
.timeline-vertical__desc { font-size: 14.5px; line-height: 1.65; color: #334155; margin: 0 0 .75rem; }
.timeline-vertical__desc strong { color: #0f172a; }
.timeline-vertical__meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-sm {
  display: inline-flex; align-items: center; gap: .35rem; border-radius: 999px;
  background: #f1f5f9; border: 1px solid #e2e8f0; color: #475569;
  padding: .25rem .65rem; font-size: 12px; font-weight: 600;
}
.chip-sm a.chip-sm__link { color: #0a6e57; font-weight: 700; }
.chip-sm a.chip-sm__link:hover { text-decoration: underline; }

.cta-banner-brand {
  margin-top: 2.5rem; border-radius: 16px; background: linear-gradient(135deg, #0a6e57 0%, #075e4a 100%);
  color: #fff; padding: 1.5rem; box-shadow: 0 12px 30px -10px rgba(15,23,42,.10); text-align: center;
}
.cta-banner-brand p { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 0; }
@media (min-width: 640px) { .cta-banner-brand p { font-size: 17px; } }
.cta-banner-brand strong { color: #fff; }
.cta-banner-brand .btn-banner {
  margin-top: 1.25rem; display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: #0a6e57; font-weight: 800; font-size: 14px;
  padding: .75rem 1.5rem; border-radius: 12px; box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: background .15s;
}
.cta-banner-brand .btn-banner:hover { background: #f8fafc; text-decoration: none; }

/* ============================================================
   SEÇÃO PROBLEMA + CARD LATERAL
   ============================================================ */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: 7fr 5fr; gap: 2.5rem; } }
.problem-list { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .65rem; }
.problem-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 15px; color: #334155; }
.problem-list li svg { flex-shrink: 0; color: #0a6e57; margin-top: 4px; }
.problem-list li strong { color: #0f172a; }
.callout {
  border-radius: 12px; padding: 1rem; font-size: 14.5px; line-height: 1.55;
}
.callout-amber { border-left: 4px solid #f59e0b; background: #fffbeb; color: #78350f; }
.callout-amber strong { color: #78350f; }
.callout-emerald { border-left: 4px solid #059669; background: #ecfdf5; color: #064e3b; }
.callout-emerald strong { color: #064e3b; }

.problem-card {
  position: relative; border-radius: 16px; color: #fff; padding: 1.75rem;
  background: linear-gradient(135deg, #0a6e57 0%, #075e4a 100%);
  box-shadow: 0 12px 30px -10px rgba(15,23,42,.10); overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: -48px; right: -48px; width: 192px; height: 192px;
  background: rgba(255,255,255,.10); filter: blur(32px); border-radius: 50%;
}
.problem-card .head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.problem-card .head .ico {
  display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 12px;
}
.problem-card .head p small { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.70); display: block; line-height: 1; }
.problem-card .head p strong { font-size: 18px; font-weight: 800; line-height: 1.2; color: #fff; }
.problem-card .cpf-box { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 12px; padding: 1rem; margin-bottom: .75rem; }
.problem-card .cpf-box small { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.60); font-weight: 700; display: block; }
.problem-card .cpf-box p { font-size: 15px; font-family: ui-monospace, SFMono-Regular, monospace; color: #fff; margin: 0; }
.problem-card .pendencia {
  background: rgba(239,68,68,.95); border: 1px solid #fca5a5; border-radius: 12px; padding: 1rem;
}
.problem-card .pendencia small { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.80); font-weight: 700; display: block; }
.problem-card .pendencia .status { font-size: 16px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: .5rem; margin: .25rem 0; }
.problem-card .pendencia .detalhe { font-size: 12px; color: rgba(255,255,255,.85); margin: 0; }

/* ============================================================
   SEÇÃO CONSEQUENCIAS (cards 6)
   ============================================================ */
.consequencias-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .consequencias-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .consequencias-grid { grid-template-columns: repeat(3, 1fr); } }
.consequencia-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: box-shadow .15s, border-color .15s;
}
.consequencia-card:hover { box-shadow: 0 12px 30px -10px rgba(15,23,42,.10); border-color: #fca5a5; }
.consequencia-card .ico {
  display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: #fef2f2; color: #dc2626; border-radius: 12px; margin-bottom: 1rem;
}
.consequencia-card h3 { font-size: 17px; font-weight: 800; color: #0f172a; margin: 0 0 .5rem; }
.consequencia-card p { font-size: 14px; line-height: 1.6; color: #334155; margin: 0 0 .5rem; }
.consequencia-card p strong { color: #0f172a; }
.consequencia-card p.reflexao { color: #dc2626; font-style: italic; font-weight: 600; font-size: 12.5px; }

.banner-red {
  margin-top: 2.5rem; background: #dc2626; color: #fff; padding: 1.5rem; border-radius: 16px; text-align: center;
  box-shadow: 0 12px 30px -10px rgba(15,23,42,.10);
}
.banner-red p { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 0; }
@media (min-width: 640px) { .banner-red p { font-size: 17px; } }
.banner-red .hl { color: #fef3c7; font-weight: 600; }

/* ============================================================
   SEÇÃO SOLUÇÃO - 7 etapas inline + card de beneficios
   ============================================================ */
.solucao-list { list-style: none; padding: 0; margin: 1.5rem 0; counter-reset: step; display: flex; flex-direction: column; gap: .75rem; }
.solucao-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 15px; color: #334155; }
.solucao-list li .num {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px;
  border-radius: 999px; background: #0a6e57; color: #fff; font-size: 13px; font-weight: 800;
}
.solucao-list li strong { color: #0f172a; }

.beneficios-card {
  border-radius: 16px; background: linear-gradient(135deg, #0a6e57 0%, #075e4a 100%);
  color: #fff; padding: 1.75rem; box-shadow: 0 12px 30px -10px rgba(15,23,42,.10);
}
.beneficios-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 1.25rem; }
.beneficios-card .row { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.beneficios-card .row .ico {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  background: rgba(255,255,255,.15); border-radius: 8px;
}
.beneficios-card .row p { margin: 0; }
.beneficios-card .row p strong { font-size: 15px; color: #fff; display: block; }
.beneficios-card .row p span { font-size: 13px; color: rgba(255,255,255,.80); }

/* ============================================================
   SEÇÃO ANCORAGEM DE VALOR (tabela escura)
   ============================================================ */
.ancoragem-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid #334155; background: rgba(30,41,59,.60); backdrop-filter: blur(8px); margin-top: 2.5rem; }
.ancoragem-table { width: 100%; text-align: left; font-size: 14.5px; border-collapse: collapse; }
.ancoragem-table thead { background: rgba(51,65,85,.60); color: #e2e8f0; }
.ancoragem-table th { padding: 1rem 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 12px; }
.ancoragem-table td { padding: 1rem 1.25rem; }
.ancoragem-table tbody tr { border-top: 1px solid #334155; }
.ancoragem-table tbody tr td:first-child { color: #e2e8f0; }
.ancoragem-table tbody tr td:last-child { font-weight: 800; color: #fca5a5; white-space: nowrap; }
.ancoragem-table tfoot tr { background: rgba(239,68,68,.10); border-top: 2px solid rgba(239,68,68,.30); }
.ancoragem-table tfoot td { padding: 1rem 1.25rem; }
.ancoragem-table tfoot td:first-child { font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .04em; font-size: 13px; }
.ancoragem-table tfoot td:last-child { font-weight: 800; color: #fca5a5; font-size: 16px; white-space: nowrap; }

.ancoragem-cenarios { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .ancoragem-cenarios { grid-template-columns: repeat(2, 1fr); } }
.cenario { border-radius: 16px; padding: 1.5rem; }
.cenario.bad { background: rgba(239,68,68,.10); border: 1px solid rgba(239,68,68,.30); }
.cenario.good { background: rgba(16,185,129,.15); border: 1px solid rgba(52,211,153,.40); }
.cenario small { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: .25rem; }
.cenario.bad small { color: #fca5a5; }
.cenario.good small { color: #6ee7b7; }
.cenario p { font-size: 18px; font-weight: 800; color: #fff; line-height: 1.3; margin: 0; }

.ancoragem-conclusao { text-align: center; font-size: 16px; color: #cbd5e1; max-width: 768px; margin: 2rem auto 0; }
.ancoragem-conclusao strong { color: #6ee7b7; }
.ancoragem-conclusao .hl { color: #fff; }
@media (min-width: 640px) { .ancoragem-conclusao { font-size: 18px; } }

/* ============================================================
   SEÇÃO FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid #e2e8f0; background: #fff; border-radius: 12px; overflow: hidden;
  transition: border-color .15s, background .15s;
}
.faq-item.is-open { border-color: #a7f3d0; background: rgba(236,253,245,.30); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; cursor: pointer; list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span.q { font-size: 15.5px; font-weight: 800; color: #0f172a; line-height: 1.4; }
@media (min-width: 640px) { .faq-item summary span.q { font-size: 16.5px; } }
.faq-item summary .arrow {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  background: #f1f5f9; color: #334155; border-radius: 999px; transition: background .15s, color .15s, transform .15s;
}
.faq-item.is-open summary .arrow { background: #0a6e57; color: #fff; }
.faq-item.is-open summary .arrow svg { transform: rotate(180deg); }
.faq-item .answer { padding: 0 1.25rem 1.25rem; font-size: 14.5px; line-height: 1.65; color: #334155; }
.faq-item .answer strong { color: #0f172a; }
.faq-item .answer ul { margin: .75rem 0 .5rem; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .35rem; list-style: disc; }
.faq-item .answer ul li strong { color: #0f172a; }
.faq-item .answer p { margin: .75rem 0 0; }

/* ============================================================
   SEÇÃO CTA FINAL
   ============================================================ */
.cta-final {
  position: relative; overflow: hidden; padding: 4rem 0;
  background: linear-gradient(135deg, #0a6e57 0%, #075e4a 100%); color: #fff;
}
@media (min-width: 640px) { .cta-final { padding: 5rem 0; } }
.cta-final::before,
.cta-final::after {
  content: ''; position: absolute; pointer-events: none; filter: blur(48px);
}
.cta-final::before { top: -96px; right: -96px; width: 320px; height: 320px; background: rgba(255,255,255,.10); }
.cta-final::after  { bottom: -96px; left: -96px; width: 320px; height: 320px; background: rgba(52,211,153,.15); }
.cta-final > .wrap { position: relative; text-align: center; max-width: 896px; }
.cta-final h2 { font-size: 28px; line-height: 1.1; font-weight: 800; letter-spacing: -0.01em; color: #fff; margin: 0; }
@media (min-width: 640px) { .cta-final h2 { font-size: 36px; } }
@media (min-width: 1024px) { .cta-final h2 { font-size: 42px; } }
.cta-final h2 .hl-amber { color: #fcd34d; }
.cta-final p { margin-top: 1rem; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 640px; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .cta-final p { font-size: 17px; } }
.cta-final p strong { color: #fff; }
.cta-final .btn-cta-emerald {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: .5rem;
  background: #059669; color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  font-size: 15px; padding: 1rem 1.75rem; border-radius: 12px; border: 0; cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(5,150,105,.5); transition: background .15s;
}
@media (min-width: 640px) { .cta-final .btn-cta-emerald { font-size: 16px; } }
.cta-final .btn-cta-emerald:hover { background: #047857; text-decoration: none; }
.cta-final .info { margin-top: 1.5rem; font-size: 12.5px; color: rgba(255,255,255,.75); }
@media (min-width: 640px) { .cta-final .info { font-size: 13px; } }
.cta-final .badges { margin-top: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 1.25rem; font-size: 12.5px; color: rgba(255,255,255,.85); }
.cta-final .badges span { display: inline-flex; align-items: center; gap: .35rem; }
.cta-final .badges svg { color: #6ee7b7; }

/* ============================================================
   MODAL PIX REFINADO (QR + SUCESSO)
   ============================================================ */
.modal-pix-panel { background: #fff; border-radius: 16px; max-width: 520px; width: 100%; box-shadow: 0 30px 60px -20px rgba(15,23,42,.4); overflow: hidden; animation: pop .25s ease; max-height: 90vh; overflow-y: auto; }
.modal-pix-panel .head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem 0; }
.modal-pix-panel .head h2 { margin: 0; font-size: 18px; font-weight: 700; }
.modal-pix-panel .icon-btn {
  background: transparent; border: 0; color: #64748b; cursor: pointer; padding: .25rem; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.modal-pix-panel .icon-btn:hover { background: #f1f5f9; }
.modal-pix-panel .body { padding: 1rem 1.5rem 1.5rem; }

.pix-view-qr { display: flex; flex-direction: column; gap: 1rem; }
.pix-view-qr .qr-img-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1rem 0;
}
.pix-view-qr .qr-img-wrap img { width: 200px; height: 200px; object-fit: contain; border-radius: 12px; background: #f8fafc; }
.pix-view-qr .qr-img-wrap .price { font-size: 26px; font-weight: 800; color: #0f172a; }
.pix-view-qr .qr-img-wrap .timer { font-size: 13px; color: #475569; }
.pix-view-qr .qr-img-wrap .timer b { color: #0a6e57; }
.pix-view-qr .qr-img-wrap .status { font-size: 13px; color: #64748b; margin: .5rem 0 0; text-align: center; }
.pix-view-qr .pix-codigo {
  display: flex; align-items: stretch; border: 1px solid #cbd5e1; border-radius: 10px; overflow: hidden;
  background: #f8fafc;
}
.pix-view-qr .pix-codigo code {
  flex: 1; padding: .65rem .85rem; font-size: 12px; color: #334155;
  font-family: ui-monospace, SFMono-Regular, monospace; word-break: break-all;
  background: transparent; border: 0; max-height: 5rem; overflow-y: auto;
}
.pix-view-qr .btn-copiar {
  background: #0a6e57; color: #fff; border: 0; padding: 0 .9rem; font-weight: 700; font-size: 12.5px; cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
}
.pix-view-qr .btn-copiar:hover { background: #075e4a; }
.pix-view-qr .row-extra { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pix-view-qr .timer-row { display: inline-flex; align-items: center; gap: .35rem; color: #475569; font-size: 13px; }
.pix-view-qr .btn-text {
  background: transparent; border: 0; color: #0a6e57; font-weight: 700; font-size: 12.5px; cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .35rem;
}
.pix-view-qr .btn-text:hover { text-decoration: underline; }
.pix-view-qr .btn-ja-paguei {
  width: 100%; margin-top: 1rem;
  background: #059669; color: #fff; border: 0; font-weight: 800; padding: .85rem 1rem; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.pix-view-qr .btn-ja-paguei:hover { background: #047857; }
.pix-view-qr .btn-ja-paguei:disabled { opacity: .7; cursor: progress; }

.pix-view-success { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1rem 0 0; text-align: center; }
.pix-view-success .check {
  display: flex; align-items: center; justify-content: center; width: 72px; height: 72px;
  background: #ecfdf5; color: #059669; border-radius: 999px;
}
.pix-view-success h3 { margin: 0; font-size: 20px; font-weight: 800; color: #0f172a; }
.pix-view-success p { margin: 0; font-size: 14.5px; color: #334155; }
.rastreio-code {
  width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1rem; text-align: center;
}
.rastreio-code__label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #64748b; display: block; }
.rastreio-code__value {
  display: block; margin-top: .35rem; font-family: ui-monospace, SFMono-Regular, monospace; font-size: 20px;
  font-weight: 800; color: #0a6e57; letter-spacing: .04em;
}
.alert-important {
  width: 100%; background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px; padding: 1rem; text-align: left;
  display: flex; align-items: flex-start; gap: .65rem; color: #92400e; font-size: 13.5px;
}
.alert-important strong { color: #78350f; }
.alert-important svg { flex-shrink: 0; color: #b45309; margin-top: 2px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem; background: #0a6e57; color: #fff; font-weight: 700;
  padding: .75rem 1.25rem; border-radius: 10px; border: 0; cursor: pointer; text-decoration: none; font-size: 14px;
}
.btn-primary:hover { background: #075e4a; text-decoration: none; }

/* ============================================================
   WIDGET WHATSAPP
   ============================================================ */
.whatsapp-widget {
  position: fixed; right: 1.5rem; bottom: 1.5rem; width: 56px; height: 56px;
  background: #22c55e; color: #fff; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(34,197,94,.55); z-index: 50; transition: background .15s, transform .15s;
}
.whatsapp-widget:hover { background: #16a34a; transform: scale(1.05); text-decoration: none; }
@media (max-width: 480px) { .whatsapp-widget { right: 1rem; bottom: 1rem; width: 52px; height: 52px; } }

/* ============================================================
   FOOTER REFINADO
   ============================================================ */
.footer-refined { background: #0f172a; color: #cbd5e1; padding: 2rem 0; font-size: 13px; }
.footer-refined .wrap { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .footer-refined .wrap { flex-direction: row; } }
.footer-refined a { color: #cbd5e1; }
.footer-refined a:hover { color: #fff; }
.footer-refined .legal { display: flex; flex-wrap: wrap; gap: .65rem .85rem; align-items: center; }
.footer-refined .legal a { font-size: 12.5px; }
.footer-refined .legal button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; padding: 0; font-size: 12.5px; }
.footer-refined .legal button:hover { color: #fff; }
.footer-refined .admin-link {
  display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .65rem; border: 1px solid #334155; border-radius: 6px; font-size: 12.5px;
}
.footer-refined .admin-link:hover { border-color: #cbd5e1; }

/* ============================================================
   COOKIE BANNER (LGPD/ANPD) - simples
   ============================================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: .75rem;
  display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner .panel {
  max-width: 1024px; margin: 0 auto; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(15,23,42,.18); overflow: hidden;
}
.cookie-banner .panel .body { padding: 1.25rem 1.5rem; display: flex; align-items: flex-start; gap: .75rem; }
.cookie-banner .panel .body .ico {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: #ecfdf5; color: #0a6e57; border-radius: 8px;
}
.cookie-banner .panel .body h2 { font-size: 15.5px; font-weight: 800; color: #0f172a; margin: 0; }
@media (min-width: 640px) { .cookie-banner .panel .body h2 { font-size: 16.5px; } }
.cookie-banner .panel .body p { font-size: 13px; line-height: 1.55; color: #334155; margin: .25rem 0 0; }
@media (min-width: 640px) { .cookie-banner .panel .body p { font-size: 14px; } }
.cookie-banner .panel .body p strong { color: #0f172a; }
.cookie-banner .panel .body p a { color: #0a6e57; font-weight: 700; }
.cookie-banner .panel .body p a:hover { text-decoration: underline; }
.cookie-banner .panel .actions { padding: 0 1.5rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
@media (min-width: 640px) {
  .cookie-banner .panel { display: flex; align-items: center; }
  .cookie-banner .panel .body { flex: 1; padding: 1.25rem 1.5rem; }
  .cookie-banner .panel .actions { flex-direction: row; align-items: center; padding: 0 1.5rem 0 0; }
}
.cookie-btn {
  font-size: 13.5px; font-weight: 700; padding: .65rem 1rem; border-radius: 10px; cursor: pointer; border: 1px solid; transition: background .15s, color .15s;
}
.cookie-btn-reject { background: #fff; border-color: #cbd5e1; color: #334155; }
.cookie-btn-reject:hover { background: #f8fafc; }
.cookie-btn-accept { background: #059669; color: #fff; border-color: #059669; }
.cookie-btn-accept:hover { background: #047857; }
.cookie-btn-custom { background: #fff; border-color: #0a6e57; color: #0a6e57; }
.cookie-btn-custom:hover { background: #ecfdf5; }

/* ============================================================
   SEGURANÇA / LGPD CARDS
   ============================================================ */
.security-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .security-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.security-grid .security__list { padding-left: 1.25rem; color: #334155; font-size: 14px; line-height: 1.7; }
.security-grid .security__list li { margin-bottom: .25rem; }
.security-grid .security__card {
  display: grid; gap: 1rem; padding: 1.25rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
}
.security-grid .security__badge { display: flex; align-items: center; gap: .75rem; }
.security-grid .security__badge svg { color: #0a6e57; flex-shrink: 0; }
.security-grid .security__badge strong { display: block; color: #0f172a; }
.security-grid .security__badge span { color: #64748b; font-size: 13px; }

/* Modal backdrop comum (Pix + LGPD) */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 80; padding: 1rem;
  animation: fade .15s ease;
}
.modal-backdrop[data-open="true"] { display: flex; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop  { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Pequenos ajustes finais */
.btn-cta-refined, .cookie-btn { font-family: inherit; }
h1, h2, h3, h4 { letter-spacing: -0.01em; }

