/* ============================================================
   Landing page — estilos base
   Mobile-first, sem framework e sem build step.
   Os valores dos componentes espelham o layout de referência.
   ============================================================ */

:root {
  /* Superfícies */
  --c-bg:        #ffffff;
  --c-ink:       #000000;      /* faixa superior, prova social, rodapé */

  /* Texto */
  --c-text:      #0f172a;
  --c-text-2:    #1f2937;
  --c-text-3:    #334155;
  --c-muted:     #475569;

  --c-border:    #e2e8f0;

  /* Acentos */
  --c-alert:     #dc2626;      /* vermelho de urgência */
  --c-gold:      #f3c64f;      /* dourado, a cor assinatura do layout */
  --c-gold-dark: #d4a017;
  --c-gold-deep: #b45309;
  --c-gold-pale: #fef9c3;      /* fundo do card de destaque */
  --c-mark:      #fef08a;      /* amarelo marca-texto */

  /* CTA */
  --c-cta:       #000bff;
  --c-cta-edge:  #3366ff;
  --c-cta-ink:   #ffffff;

  /* Roboto é a única família carregada (ver index.html).
     As duas abaixo repetem as declarações do layout de referência, que
     também não as carrega — quem tiver a fonte instalada vê a fonte,
     o resto cai no sans-serif do sistema, exatamente como no original. */
  --font:      "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-head: "Poppins", sans-serif;
  --font-cta:  "Montserrat", "Roboto", sans-serif;

  /* ---- Tamanho base do texto ----
     Mexa aqui para testar. Vale para o corpo da página e para tudo que
     herda: parágrafos, itens de lista e o FAQ. Componentes com tamanho
     próprio (subtítulo, botão, depoimentos, cards) têm px fixo mais
     abaixo, porque espelham o layout de referência. */
  --fs-body: 20px;

  --w-max: 900px;              /* coluna deliberadamente estreita */
  --w-cta: 600px;              /* CTAs são mais estreitos que a coluna */
  --radius: 8px;
  --radius-pill: 50px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-text-2);
  background: var(--c-bg);
}

img, iframe { max-width: 100%; display: block; }
[hidden] { display: none !important; }

.wrap {
  width: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: 15px;
}

/* ============================================================
   Destaque inline — escrito no config como [[r]] [[y]] [[g]]
   ============================================================ */

.highlight-red {
  color: var(--c-alert);
  font-weight: 900;
  text-decoration: underline;
}

.highlight-yellow {
  background-color: var(--c-mark);
  color: #000000;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(234, 179, 8, .2);
}

/* Negrito puro: só peso, sem cor nem fundo. Herda a cor do contexto,
   então funciona igual no texto escuro e nos cards claros. */
.highlight-bold { font-weight: 800; }

.urgency-highlight { color: var(--c-gold-deep); font-weight: 700; }

/* ---------- Faixa superior ---------- */

.topbar {
  background: var(--c-ink);
  border-bottom: 1px solid #222222;
  color: var(--c-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 15px;
}

.site-header {
  border-bottom: 1px solid var(--c-border);
  padding-block: .75rem;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { font-weight: 800; color: var(--c-text); }
.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 2px 8px;
}

/* ---------- Hero ---------- */

.hero { padding-block: 20px 0; }

/* Card branco com a régua vermelha no topo */
.headline-card {
  background: var(--c-bg);
  border-top: 4px solid var(--c-alert);
  border-bottom: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 20px 25px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,.08),
              0 8px 10px -6px rgba(0,0,0,.04);
}

.urgent-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 12px;
  border-radius: 4px;
  background-color: var(--c-alert);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 .5rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-muted);
}

h1 {
  margin: 0 0 18px;
  color: var(--c-text);
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
}

.sub {
  margin: 0 auto;
  max-width: 800px;
  color: var(--c-text-3);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 20px 0 0;
  padding: 6px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  background-color: #f8fafc;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
}

/* ---------- Mídia ---------- */

.media {
  max-width: var(--w-cta);
  margin: 25px auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.media img { width: 100%; height: auto; }

/* Facade: carrega o player só no clique — protege o LCP */
.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000 center/cover no-repeat;
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.video-facade::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -35% -50%;
  z-index: 1;
  border-style: solid;
  border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent var(--c-text);
}
.video-frame { aspect-ratio: 16 / 9; width: 100%; border: 0; }

/* ============================================================
   CTA — limitado a 600px e centralizado, não full-bleed
   ============================================================ */

.cta-wrapper {
  width: 100%;
  max-width: var(--w-cta);
  margin: 25px auto;
  padding: 0 15px;
  text-align: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 30px;
  font-family: var(--font-cta);
  border: 3px solid var(--c-cta-edge);
  border-radius: var(--radius-pill);
  background: var(--c-cta);
  color: var(--c-cta-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 11, 255, .4);
  transition: all .3s ease;
  animation: btnPulse 2s infinite ease-in-out;
  cursor: pointer;
}

.cta:hover {
  background: #0008cc;
  border-color: #0008cc;
  box-shadow: 0 12px 30px rgba(0, 11, 255, .6);
  transform: translateY(-2px);
}
.cta:focus-visible { outline: 3px solid var(--c-text); outline-offset: 3px; }

/* Pulsação para chamar atenção */
@keyframes btnPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 11, 255, .4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 11, 255, .65);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 11, 255, .4);
  }
}

.cta svg { width: 28px; height: 28px; flex-shrink: 0; fill: currentColor; }

.cta-sub {
  margin: .75rem 0 0;
  font-size: 14px;
  color: var(--c-muted);
}

.cta-band { padding-block: 0; }

/* ---------- Caixa de aviso dourada ---------- */

.notice-box {
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 6px solid var(--c-gold-dark);
  border-radius: 6px;
  background-color: var(--c-gold);
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 4px 15px rgba(243, 198, 79, .2);
}

/* ---------- Corpo ---------- */

.body-copy { padding-block: 25px; }
.body-copy h2 {
  margin: 2rem 0 .75rem;
  color: var(--c-text);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}
.body-copy p  { margin: 0 0 1rem; }
.body-copy ul { margin: 0 0 1.25rem; padding-left: 20px; }
.body-copy li { margin-bottom: .65rem; }

blockquote {
  margin: 1.5rem 0;
  padding: .25rem 0 .25rem 1.1rem;
  border-left: 3px solid var(--c-gold);
  color: var(--c-muted);
  font-style: italic;
}

/* ============================================================
   Prova social — faixa escura, cards contornados
   ============================================================ */

.testimonials {
  background: #ffffff; /*var(--c-ink);*/
  padding-block: 40px;
}
.testimonials h2 {
  margin: 0 0 25px;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.t-card {
  background: #000000;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 32px 10px rgba(0, 0, 0, .4);
}

/* Silhueta genérica — substitui a foto quando não existe */
.t-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 2px solid #94a3b8;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-avatar svg { width: 50px; height: 50px; fill: #64748b; }
.t-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.t-card cite {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}
.t-card .loc { font-weight: 400; color: #cbd5e1; }
.t-card p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
}

.disclaimer {
  margin-top: 1.25rem;
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
}
.testimonials .disclaimer { color: #94a3b8; }

/* ============================================================
   Card de destaque — fundo dourado claro, borda dourada
   ============================================================ */

.features { padding-block: 25px; }

.feature-card {
  background-color: var(--c-gold-pale);
  border: 2px solid var(--c-gold);
  border-radius: 12px;
  color: #111827;
  padding: 30px 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
}
.feature-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
}
.feature-intro { margin: 0 0 20px; font-size: 16px; }
.feature-card ul { margin: 0; padding-left: 20px; }
.feature-card li { margin-bottom: .75rem; font-size: 16px; }
.feature-card li::marker { color: var(--c-gold-dark); }

/* ---------- FAQ ---------- */

.faq { padding-block: 25px; }
.faq h2 {
  margin: 0 0 1.25rem;
  color: var(--c-text);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
}
.faq details {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  padding: 14px 16px;
}
.faq summary { cursor: pointer; font-weight: 700; list-style: none; color: var(--c-text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--c-muted); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: .6rem 0 0; color: var(--c-muted); font-size: 16px; }

/* ============================================================
   Bloco de urgência — card com borda dourada e faixa vermelha
   ============================================================ */

.urgency { padding-block: 30px; }

.urgency-box {
  border: 3px solid var(--c-gold);
  border-radius: 16px;
  background-color: var(--c-bg);
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}
.urgency-box h2 {
  margin: 0 0 20px;
  padding: 10px;
  border-radius: var(--radius);
  background-color: var(--c-alert);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
  text-align: center;
}
.urgency-box p {
  margin: 0 0 20px;
  color: var(--c-text-2);
  font-size: 16px;
  line-height: 1.6;
}
.urgency-box p:last-child { margin-bottom: 0; }

/* ---------- Fechamento e rodapé ---------- */

.final-cta { padding-block: 10px 35px; }
.final-cta h2 {
  margin: 0 0 1.5rem;
  color: var(--c-text);
  font-family: var(--font-head);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.site-footer {
  padding-block: 25px 90px;
  background: var(--c-ink);
  color: #94a3b8;
  font-size: 13px;
  text-align: center;
}
.site-footer .disclaimer { color: #94a3b8; margin-top: 0; }
.site-footer .copyright,
.site-footer .company { margin: .75rem 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.footer-links a { color: #cbd5e1; }

/* ---------- CTA fixo (mobile) ---------- */

.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-border);
  z-index: 50;
}
.sticky-cta .cta-wrapper { margin: 0 auto; padding: 0; }
.sticky-cta .cta { font-size: 17px; padding: 15px 18px; border-radius: 40px; }

/* ---------- Mobile ---------- */

@media (max-width: 480px) {
  .topbar { font-size: 12px; line-height: 1.4; }

  .urgent-badge { font-size: 11px; padding: 3px 8px; margin-bottom: 12px; }
  h1 { font-size: 20px; line-height: 1.35; margin-bottom: 12px; }
  .sub { font-size: 15px; line-height: 1.4; }
  .date-badge { font-size: 12px; padding: 5px 12px; margin-top: 15px; }
  .highlight-yellow { padding: 1px 4px; }

  .cta-wrapper { padding: 0 10px; margin: 18px auto; }
  .cta { font-size: 17px; padding: 15px 18px; gap: 8px; border-radius: 40px; }
  .cta svg { width: 22px; height: 22px; }

  .notice-box { font-size: 15px; padding: 12px 15px; }

  .testimonials h2 { font-size: 22px; }
  .t-card { padding: 20px 15px; }
  .t-card p { font-size: 14px; }

  .feature-card { padding: 20px 15px; border-radius: 10px; }
  .feature-card h2 { font-size: 19px; margin-bottom: 10px; }
  .feature-intro { font-size: 14px; margin-bottom: 15px; }

  .urgency-box { padding: 20px 15px; }
}

@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
  .site-footer { padding-bottom: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   PÁGINAS LEGAIS — privacy.html, terms.html, disclaimer.html

   Tom deliberadamente sóbrio: coluna de leitura estreita, sem
   cor de conversão, sem animação. Estas páginas existem para
   transmitir seriedade e são auditadas por plataformas de anúncio.
   Funcionam sem JavaScript.
   ============================================================ */

.legal-page { background: #ffffff; }

.legal-header {
  border-bottom: 1px solid var(--c-border);
  padding-block: 18px;
}
.legal-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 760px;
}
.legal-header .brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text);
  text-decoration: none;
}
.legal-header a.back {
  font-size: 14px;
  color: var(--c-muted);
}

.legal {
  max-width: 760px;
  margin-inline: auto;
  padding: 40px 20px 60px;
  color: var(--c-text-2);
  font-size: 17px;
  line-height: 1.7;
}

.legal h1 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--c-text);
}

.legal .effective {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-muted);
}

.legal .lede {
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
  font-size: 17px;
  color: var(--c-text-3);
}

/* Sumário */
.legal-toc {
  margin: 0 0 40px;
  padding: 20px 24px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: #f8fafc;
}
.legal-toc h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
}
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; font-size: 15px; }
.legal-toc a { color: var(--c-text-2); }

.legal h2 {
  margin: 40px 0 12px;
  font-family: var(--font);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-text);
  scroll-margin-top: 20px;
}
.legal h3 {
  margin: 24px 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
}

.legal p  { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }

.legal strong { font-weight: 700; color: var(--c-text); }

/* Bloco de aviso forte — usado no Disclaimer */
.legal-callout {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--c-alert);
  border-radius: 6px;
  background: #fef2f2;
  color: #7f1d1d;
  font-size: 16px;
}
.legal-callout p:last-child { margin-bottom: 0; }

/* Dados de contato */
.legal-contact {
  margin: 24px 0;
  padding: 18px 22px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: #f8fafc;
  font-size: 16px;
}
.legal-contact p { margin: 0 0 6px; }
.legal-contact p:last-child { margin-bottom: 0; }

/* Marcador dos campos que precisam ser preenchidos antes de publicar */
.fill {
  background: #fef08a;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
  color: #000000;
}

.legal-footer {
  border-top: 1px solid var(--c-border);
  padding-block: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--c-muted);
}
.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}
.legal-footer a { color: var(--c-muted); }

@media (max-width: 480px) {
  .legal { padding: 28px 16px 44px; font-size: 16px; }
  .legal h1 { font-size: 25px; }
  .legal h2 { font-size: 19px; margin-top: 32px; }
  .legal-toc { padding: 16px 18px; }
}
