/* =====================================================================
   TEMPLATE — Página de venda Low Ticket (auto-contido, sem design system)
   REBRAND: troque as variáveis em :root. O resto se adapta sozinho.
   ===================================================================== */
:root {
  /* ---- Paleta IMÓVEL EM DÓLAR ----
     Ação = LARANJA (botões, preço, glow). Marca/labels = AZUL ROYAL. Fundos = azul bebê/branco. */
  --brand-1: #FF9D00;            /* laranja ação — botões, preço, glow (a "assinatura") */
  --brand-2: #3232CA;            /* azul royal — eyebrows, labels, accents, links */
  --shock: linear-gradient(120deg, #FF9D00 0%, #FFB02E 100%); /* degradê do CTA (laranja→laranja) */
  --shock-rgb: 255, 157, 0;      /* RGB do laranja, pro glow pulsante */

  --royal:       #3232CA;        /* azul royal 700 — cor principal da marca */
  --royal-deep:  #02026B;        /* azul royal 900 */
  --royal-grad:  linear-gradient(120deg, #3232CA 0%, #1A1AC4 100%);

  --text-strong: #02026B;        /* azul royal escuro — títulos e texto forte */
  --text-body:   #20204F;        /* azul escuro — corpo */
  --text-muted:  #5A5A85;        /* azul acinzentado — secundário */
  --surface:     #FFFFFF;
  --surface-tint:#EEF7FE;        /* azul bebê 100 — fundos suaves */
  --border:      #DCEFFC;        /* azul bebê 200 — bordas */
  --success:     #1F9D6B;
  --success-soft:#E3F5EC;
  --danger:      #D9534F;
  --danger-soft: #FBEAEA;
  --page-bg:     linear-gradient(180deg, #FFFFFF 0%, #EEF7FE 100%);

  --font:         'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;        /* corpo */
  --font-display: 'Poppins', 'Trebuchet MS', system-ui, sans-serif;                   /* títulos */
  --fw-reg: 400; --fw-med: 500; --fw-semi: 600; --fw-bold: 700; --fw-black: 800;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-body);
  background: var(--page-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

/* ---------- layout (mobile-first) ---------- */
.lp { width: 100%; max-width: 560px; margin: 0 auto; padding: 0 20px 48px; }
.section { padding: 52px 0; }
.section + .section { border-top: 1px solid var(--border); }
.center { text-align: center; }
.mt-s { margin-top: 18px; }

.eyebrow {
  margin: 0 0 6px; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: var(--fw-semi); color: var(--brand-2);
}
.headline {
  margin: 0 0 14px; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 2.1rem; line-height: 1.12;
  color: var(--text-strong); letter-spacing: -0.018em;
}
.subhead { margin: 0 0 18px; font-size: 1.05rem; line-height: 1.4; color: var(--text-body); }
.subhead strong { font-weight: var(--fw-bold); color: var(--brand-2); }

/* destaque laranja sólido (flat, sem degradê nem sombra) */
.grad-text {
  color: var(--brand-1);
  font-weight: var(--fw-bold);
}

.hero-photo { border-radius: 22px; overflow: hidden; margin: 6px 0 22px; }
.hero-photo img { width: 100%; display: block; }

/* ---------- botão (o elemento que mais converte) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: var(--fw-bold); font-size: 1rem; letter-spacing: 0.01em;
  padding: 16px 26px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; text-align: center; transition: filter 0.15s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn--block { width: 100%; }
.btn--outline {
  background: transparent; color: var(--text-strong);
  border: 2px solid var(--brand-1); border-radius: 999px;
}
.btn--outline:hover { background: var(--surface-tint); }

/* primário: rosa choque + aura pulsante + brilho diagonal varrendo */
.btn--primary {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--shock); color: var(--text-strong);
  animation: btn-pulse 1.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: 0; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  transform: skewX(-20deg) translateX(-260%);
  animation: btn-shine 3.4s ease-in-out infinite; pointer-events: none; z-index: 2;
}
.btn--primary:hover {
  filter: brightness(1.05); animation-play-state: paused;
  box-shadow: 0 0 38px 8px rgba(var(--shock-rgb), 0.8), 0 12px 34px rgba(var(--shock-rgb), 0.55);
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 18px 2px rgba(var(--shock-rgb), 0.5), 0 8px 22px rgba(var(--shock-rgb), 0.38); transform: scale(1); }
  50% { box-shadow: 0 0 46px 13px rgba(var(--shock-rgb), 0.85), 0 12px 32px rgba(var(--shock-rgb), 0.55); transform: scale(1.04); }
}
@keyframes btn-shine {
  0%, 62% { transform: skewX(-20deg) translateX(-260%); }
  100% { transform: skewX(-20deg) translateX(360%); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary { animation: none; box-shadow: 0 0 22px 3px rgba(var(--shock-rgb), 0.55); }
  .btn--primary::after { animation: none; opacity: 0; }
}

.cta-block { display: grid; gap: 12px; }
.cta-sub { text-align: center; font-size: 0.85rem; color: var(--text-muted); font-weight: var(--fw-med); }

/* ---------- faixa de topo (sticky) ---------- */
.promo-bar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px 16px; background: var(--royal-grad);
  color: #fff; font-size: 0.82rem; font-weight: var(--fw-med); text-align: center;
}
.promo-bar strong { font-weight: var(--fw-bold); }
.promo-bar svg { width: 15px; height: 15px; opacity: 0.9; flex-shrink: 0; }
#precos { scroll-margin-top: 52px; }

/* ---------- carrossel automático ---------- */
.carousel--auto { margin: 8px 0 18px; }
.carousel__track {
  display: flex; gap: 14px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 4px; margin: 0 -4px; scroll-snap-type: none; cursor: grab;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track:active { cursor: grabbing; }

/* cards de prova social e entregáveis */
.proof, .deliv {
  flex: 0 0 76%; max-width: 280px; scroll-snap-align: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.proof__img img { width: 100%; display: block; }
.proof__cap { padding: 14px 16px; display: grid; gap: 6px; }
.proof__tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: var(--fw-semi); color: var(--brand-2); }
.proof__tag svg { width: 14px; height: 14px; }
.proof__cap b { color: var(--text-strong); font-size: 0.98rem; }

/* --- carrossel de provas: fotos todas no MESMO tamanho padronizado --- */
.proof--photo { flex: 0 0 72%; max-width: 264px; }
.carousel__track:has(.proof--photo) { gap: 8px; }
.proof--photo .proof__img { aspect-ratio: 4 / 5; overflow: hidden; }
.proof--photo .proof__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.proof--photo .proof__cap b {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.4em; line-height: 1.2;
}

/* --- respiro do hero: cabeçalho → headline → subheadline --- */
.section--hero { padding-top: 44px; }
.section--hero .eyebrow { margin-bottom: 18px; }
.section--hero .headline { margin-bottom: 24px; }
.section--hero .subhead { margin-bottom: 32px; }

/* --- frase de abertura da prova social (um pouco maior) --- */
.results-lead {
  margin: 0 0 24px; font-size: 1.2rem; line-height: 1.5; color: var(--text-body);
  text-wrap: pretty;
}
.results-lead strong { color: var(--royal); font-weight: var(--fw-bold); }

/* --- info de pagamento no card de preços --- */
.plan__pay {
  margin: 2px 0 0; text-align: center; font-size: 0.82rem; line-height: 1.45;
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.plan__pay svg { width: 15px; height: 15px; color: var(--royal); flex-shrink: 0; }
.plan__pay strong { color: var(--royal); font-weight: var(--fw-semi); }

/* --- subtítulo do bloco de depoimentos --- */
.proof-subtitle {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 26px 0 10px; font-family: var(--font-display); font-weight: var(--fw-semi);
  font-size: 1.05rem; color: var(--royal);
}
.proof-subtitle svg { width: 18px; height: 18px; color: #25D366; }

/* --- cards de depoimento do WhatsApp: retrato (print de celular), vazios --- */
.proof--wpp { flex: 0 0 58%; max-width: 220px; background: none; border: none; overflow: visible; }
.proof--wpp .proof__ph {
  aspect-ratio: 9 / 16; display: grid; align-content: center; justify-items: center; gap: 10px;
  text-align: center; padding: 20px; border: 2px dashed var(--border); border-radius: 18px;
  background: var(--surface-tint); color: var(--text-muted);
}
.proof--wpp .proof__ph svg { width: 32px; height: 32px; color: #25D366; }
.proof--wpp .proof__ph span { font-weight: var(--fw-semi); font-size: 0.88rem; color: var(--royal); line-height: 1.3; }
.proof--wpp .proof__ph small { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.proof--wpp .proof__img { aspect-ratio: 9 / 16; overflow: hidden; border-radius: 18px; }
.proof--wpp .proof__img img { width: 100%; height: 100%; object-fit: cover; }
.deliv { padding: 20px; }
.deliv__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.deliv__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--shock); color: #fff; flex-shrink: 0; }
.deliv__icon svg { width: 21px; height: 21px; }
.deliv h3 { margin: 0; font-size: 1.05rem; color: var(--text-strong); }
.deliv ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.deliv li { display: flex; align-items: center; gap: 9px; font-size: 0.94rem; color: var(--text-body); }
.deliv li svg { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; }
.deliv__note { margin: 0; font-size: 0.94rem; color: var(--text-body); line-height: 1.5; }

/* ---------- bônus ---------- */
.bonus-grid { display: grid; gap: 14px; margin: 8px 0 18px; }
.bonus-card { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: 0 6px 18px rgba(142,104,177,0.06); }
.bonus-card__icon { flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--shock); color: #fff; }
.bonus-card__icon svg { width: 22px; height: 22px; }
.bonus-card__body { display: grid; gap: 5px; }
.bonus-card__kicker { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: var(--fw-bold); color: var(--brand-2); }
.bonus-card__title { margin: 0; font-weight: var(--fw-bold); font-size: 1.12rem; color: var(--text-strong); }
.bonus-card__desc { margin: 0; font-size: 0.92rem; color: var(--text-body); line-height: 1.5; }
.bonus-card__price { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.bonus-card__price s { color: var(--text-muted); font-size: 0.95rem; text-decoration-color: var(--brand-1); }
.bonus-card__free { font-weight: var(--fw-bold); color: var(--success); background: var(--success-soft); padding: 2px 10px; border-radius: 999px; font-size: 0.85rem; }
.bonus-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.92rem; color: var(--text-body); }
.bonus-note svg { width: 17px; height: 17px; color: var(--brand-2); }
.bonus-note strong { color: var(--brand-2); }

/* ---------- planos (preços) ---------- */
.plans { display: grid; gap: 16px; margin-top: 10px; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 24px 22px; display: flex; flex-direction: column; gap: 16px; }
.plan > .btn { margin-top: auto; }     /* botão na base → cards alinham mesmo com listas diferentes */
.plan--featured { border: 2px solid var(--brand-1); box-shadow: 0 16px 40px rgba(var(--shock-rgb), 0.18); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--shock); color: #fff; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: var(--fw-bold); padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan__head { text-align: center; display: grid; gap: 4px; }
.plan__name { margin: 0; font-family: var(--font-display); font-weight: var(--fw-semi); font-size: 1.4rem; color: var(--text-strong); }
.plan__tagline { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.plan__deal { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: -8px; }
.plan__from { color: var(--text-muted); font-size: 1.02rem; text-decoration-color: var(--brand-1); }
.plan__off { display: inline-flex; align-items: center; background: var(--surface-tint); color: var(--brand-2); font-weight: var(--fw-bold); font-size: 0.82rem; padding: 3px 11px; border-radius: 999px; }
.plan__price { display: flex; align-items: flex-start; justify-content: center; gap: 4px; }
.plan__cur { font-size: 1.1rem; font-weight: var(--fw-bold); color: var(--text-strong); margin-top: 8px; }
.plan__val { font-weight: var(--fw-black); font-size: 3.4rem; line-height: 1; color: var(--brand-1); }
.plan__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.plan__list li { display: flex; align-items: center; gap: 10px; font-size: 0.96rem; color: var(--text-strong); font-weight: var(--fw-med); }
.plan__list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--success); }
.plan__list--off { color: var(--text-muted) !important; font-weight: var(--fw-reg) !important; }
.plan__list--off svg { color: var(--text-muted) !important; }

/* ---------- garantia ---------- */
.guarantee { text-align: center; background: var(--surface-tint); border: 1px solid var(--border); border-radius: 22px; padding: 26px 22px; margin: 28px 0; }
.seal {
  width: 108px; height: 108px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: var(--shock); color: #000;
  border: 4px solid #fff;
  box-shadow: 0 10px 26px rgba(255, 157, 0, 0.45), 0 0 0 2px var(--brand-1);
}
.seal b { display: block; font-family: var(--font-display); font-size: 2.8rem; font-weight: var(--fw-black); line-height: 0.85; color: #000; }
.seal span { display: block; margin-top: 3px; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: var(--fw-bold); color: #000; }
.guarantee p { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--text-body); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin: 8px 0; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 0.98rem; font-weight: var(--fw-semi); color: var(--text-strong); text-align: left; }
.faq__q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.2s ease; }
.faq__item.open .faq__q svg { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq__item.open .faq__a { max-height: 300px; }
.faq__a > div { padding: 0 18px 16px; font-size: 0.94rem; color: var(--text-body); line-height: 1.5; }

/* ---------- popup de upsell ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(40,30,50,0.55); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 20px; animation: modal-fade 0.18s ease-out; }
.modal { position: relative; width: 100%; max-width: 420px; background: var(--surface); border-radius: 24px; padding: 30px 24px 24px; box-shadow: 0 30px 80px rgba(40,30,50,0.4); text-align: center; animation: modal-pop 0.2s ease-out; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: none; cursor: pointer; background: var(--surface-tint); border-radius: 50%; display: grid; place-items: center; color: var(--text-muted); }
.modal__close svg { width: 18px; height: 18px; }
.modal__tag { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-tint); color: var(--brand-2); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: var(--fw-bold); padding: 5px 13px; border-radius: 999px; margin-bottom: 14px; }
.modal__tag svg { width: 14px; height: 14px; }
.modal__title { margin: 0 0 10px; font-family: var(--font-display); font-weight: var(--fw-semi); font-size: 1.45rem; line-height: 1.15; color: var(--text-strong); }
.modal__title strong { color: var(--brand-2); }
.modal__text { margin: 0 0 18px; font-size: 0.94rem; color: var(--text-body); line-height: 1.5; }
.modal__text strong { color: var(--brand-2); }
.modal__price { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 16px; }
.modal__price > s { color: var(--text-muted); font-size: 1rem; text-decoration-color: var(--brand-1); }
.modal__now { display: flex; align-items: center; gap: 8px; }
.modal__cur { font-size: 1.2rem; font-weight: var(--fw-bold); color: var(--text-strong); align-self: flex-start; margin-top: 6px; }
.modal__val { font-weight: var(--fw-black); font-size: 2.8rem; line-height: 1; color: var(--brand-1); }
.modal__off { background: var(--success-soft); color: var(--success); font-size: 0.78rem; font-weight: var(--fw-bold); padding: 3px 9px; border-radius: 999px; align-self: center; }
.modal__timer { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--danger-soft); color: var(--danger); border-radius: 12px; padding: 10px 12px; margin-bottom: 16px; font-size: 0.86rem; font-weight: var(--fw-med); text-wrap: balance; }
.modal__timer svg { width: 16px; height: 16px; flex-shrink: 0; }
.modal__timer b { font-variant-numeric: tabular-nums; font-weight: var(--fw-bold); font-size: 0.95rem; }
.modal__timer strong { font-weight: var(--fw-bold); }
.modal__decline { margin-top: 14px; width: 100%; background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 0.88rem; font-weight: var(--fw-med); text-decoration: underline; }
.modal__decline:hover { color: var(--text-body); }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ---------- footer ---------- */
.site-footer { text-align: center; padding: 36px 0 8px; border-top: 1px solid var(--border); margin-top: 8px; }
.site-footer__url { margin: 0 0 4px; font-weight: var(--fw-semi); letter-spacing: 0.04em; color: var(--brand-2); }
.site-footer__rights { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* ====================================================================
   COMPONENTES EXTRA — Imóvel em Dólar (resultados, autoridade, módulos, value-stack)
   ==================================================================== */

/* ---------- subtítulo de seção (abaixo da headline) ---------- */
.section-sub { margin: -6px 0 22px; text-align: center; font-size: 1.02rem; line-height: 1.5; color: var(--text-body); }
.section-sub strong { color: var(--royal); font-weight: var(--fw-bold); }

/* ---------- chips dos tipos de prova ---------- */
.proof-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 22px; }
.proof-types .chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-tint); color: var(--royal);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 14px; font-size: 0.82rem; font-weight: var(--fw-semi);
}
.proof-types .chip svg { width: 15px; height: 15px; }

/* ---------- grade grande de provas (Seção Resultados) ---------- */
.proofwall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 4px 0 22px; }
.proofwall .pw {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; box-shadow: 0 6px 18px rgba(4,4,175,.08);
}
.proofwall .pw img { width: 100%; display: block; aspect-ratio: 9/14; object-fit: cover; }
.proofwall .pw__tag {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.94); color: var(--royal);
  font-size: 0.7rem; font-weight: var(--fw-bold); padding: 4px 9px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(4,4,175,.12);
}
.proofwall .pw__tag svg { width: 13px; height: 13px; }
/* placeholder (slot vazio pra dropar print real) */
.proofwall .pw--slot {
  display: grid; place-items: center; text-align: center; gap: 8px;
  aspect-ratio: 9/14; color: var(--text-muted); font-size: 0.82rem; font-weight: var(--fw-med);
  border-style: dashed; background: var(--surface-tint);
}
.proofwall .pw--slot svg { width: 26px; height: 26px; color: var(--brand-2); }
.proofwall .pw--wide { grid-column: 1 / -1; }
.proofwall .pw--wide img { aspect-ratio: 16/10; }

/* ---------- card de autoridade (Marcos Fernandes) ---------- */
.authority { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: 0 18px 44px rgba(4,4,175,.14); }
.authority__photo { position: relative; aspect-ratio: 4/3.4; overflow: hidden; }
.authority__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.authority__badge {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.94); color: var(--royal);
  padding: 7px 13px; border-radius: 999px; font-size: 0.78rem; font-weight: var(--fw-semi);
  box-shadow: 0 6px 16px rgba(4,4,175,.18);
}
.authority__badge svg { width: 15px; height: 15px; color: var(--brand-1); }
.authority__body { padding: 22px 22px 24px; }
.authority__name { margin: 0 0 4px; font-family: var(--font-display); font-weight: var(--fw-semi); font-size: 1.5rem; color: var(--text-strong); }
.authority__role { margin: 0 0 14px; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: var(--fw-bold); color: var(--brand-1); }
.authority__text { margin: 0 0 16px; font-size: 0.98rem; line-height: 1.6; color: var(--text-body); }
.authority__seals { display: flex; flex-wrap: wrap; gap: 8px; }
.authority__seals span { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-tint); color: var(--royal); border-radius: 999px; padding: 6px 12px; font-size: 0.78rem; font-weight: var(--fw-semi); }
.authority__seals svg { width: 14px; height: 14px; color: var(--brand-1); }

/* ---------- sanfona de módulos ---------- */
.modules { display: grid; gap: 10px; margin: 8px 0 18px; }
.module { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.module__q { width: 100%; display: flex; align-items: center; gap: 12px; padding: 15px 16px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); }
.module__num { flex-shrink: 0; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--shock); color: #fff; font-weight: var(--fw-bold); font-size: 0.92rem; box-shadow: 0 6px 16px rgba(255,157,0,.40); }
.module__title { flex: 1; font-size: 0.98rem; font-weight: var(--fw-semi); color: var(--text-strong); line-height: 1.25; }
.module__q > svg:last-child { width: 18px; height: 18px; color: var(--brand-2); flex-shrink: 0; transition: transform 0.2s ease; }
.module.open .module__q > svg:last-child { transform: rotate(180deg); }
.module__a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.module.open .module__a { max-height: 240px; }
.module__a > div { padding: 0 16px 16px 62px; font-size: 0.93rem; color: var(--text-body); line-height: 1.55; }

/* ---------- value-stack (decomposição da oferta Completa) ---------- */
.value-stack { margin: 4px 0 2px; padding: 14px 16px; background: var(--surface-tint); border: 1px solid var(--border); border-radius: 14px; }
.value-stack ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.value-stack li { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; font-size: 0.92rem; line-height: 1.3; color: var(--text-body); }
.value-stack li span:first-child { display: flex; align-items: flex-start; gap: 8px; flex: 1; min-width: 0; }
.value-stack li svg { width: 15px; height: 15px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.value-stack li b { color: var(--text-strong); font-weight: var(--fw-semi); white-space: nowrap; flex-shrink: 0; }
.value-stack__total { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); display: flex; align-items: center; justify-content: space-between; font-size: 0.95rem; }
.value-stack__total s { color: var(--text-muted); text-decoration-color: var(--brand-1); }
.value-stack__total span { color: var(--text-muted); }
.value-stack__total b { color: var(--success); font-weight: var(--fw-bold); background: var(--success-soft); padding: 2px 10px; border-radius: 999px; }

/* ---------- dois planos lado a lado em telas largas ---------- */
@media (min-width: 600px) {
  .plans { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .headline { font-size: 2.4rem; }
  .proofwall { grid-template-columns: repeat(3, 1fr); }
}
