/* ===================================================================
   IMERSÃO CLAUDE 360 — Página de Vendas
   Paleta da marca: clay/laranja + creme sobre fundo escuro
   Mobile-first.
   =================================================================== */

:root {
  --brand:        #DD6231;
  --brand-2:      #E68A4E;
  --brand-deep:   #B8431B;
  --brand-grad:   linear-gradient(135deg, #E6803F 0%, #DD6231 50%, #C44E1E 100%);

  --paper:        #FBF6EE;   /* fundo claro principal */
  --cream:        #F3E8D6;   /* faixas creme */
  --card:         #FFFFFF;
  --line:         #EADFCC;

  --dark:         #16110D;   /* fundo escuro principal */
  --dark-2:       #211913;
  --dark-3:       #2B211A;

  --ink:          #211A14;   /* texto sobre claro */
  --ink-soft:     #6B5F52;
  --on-dark:      #F6EEE2;   /* texto sobre escuro */
  --on-dark-soft: #C9BBA8;

  --green:        #2E9E5B;
  --gold:         #C8862F;

  --maxw:         1080px;
  --radius:       16px;
  --radius-sm:    12px;
  --shadow:       0 10px 30px rgba(40, 25, 12, .10);
  --shadow-lg:    0 20px 50px rgba(40, 25, 12, .18);

  --topbar-h:     56px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--topbar-h);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* nada quebra o layout horizontal */
h1, h2, h3, p, li, blockquote, summary { overflow-wrap: break-word; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.center { text-align: center; }

/* offset pra âncoras (#oferta etc.) não ficarem atrás da barra fixa no scroll */
section[id] { scroll-margin-top: 64px; }

.hl { color: var(--brand); }

u { text-decoration-color: var(--brand); text-underline-offset: 3px; }

/* ---------- Tipografia base ---------- */
.section-title {
  font-size: clamp(1.55rem, 5.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.section-title--left { text-align: left; }
.section-title--light { color: var(--on-dark); }

.kicker {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--brand);
  margin-bottom: 14px;
}
.kicker::before, .kicker::after {
  content: ""; width: 28px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .45;
}
.kicker--light { color: var(--brand-2); }
.kicker--left { justify-content: flex-start; }
.kicker--left::before { display: none; }

.band { padding: 64px 0; }
.band--cream { background: var(--cream); }
.band--dark  { background: var(--dark); color: var(--on-dark); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  line-height: 1.25;
  text-wrap: balance;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  letter-spacing: .01em;
}
.btn--primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(221, 98, 49, .42);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 32px rgba(221, 98, 49, .5); }
.btn--primary:active { transform: translateY(0); }
/* mobile-first: botões confortáveis e largos pra não quebrarem feio */
.btn--lg { padding: 16px 22px; font-size: 1rem; }
.btn--xl { padding: 17px 22px; font-size: 1.04rem; }
.btn--block { display: flex; width: 100%; }
.hero .btn--xl, .center .btn--xl, .center .btn--lg { width: 100%; max-width: 440px; }
.btn__arrow { font-size: 1.15em; transition: transform .2s ease; flex-shrink: 0; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* pulsa de leve pra chamar atenção */
@keyframes pulse {
  0%,100% { box-shadow: 0 10px 26px rgba(221, 98, 49, .42); }
  50%     { box-shadow: 0 10px 26px rgba(221, 98, 49, .7); }
}
.btn--xl.btn--primary { animation: pulse 2.4s ease-in-out infinite; }

/* =================================================================
   BARRA DE TOPO
   ================================================================= */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--topbar-h);
  background: rgba(18, 13, 9, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 12px; padding: 0 16px;
}
.topbar__logo { flex-shrink: 0; display: flex; align-items: center; min-height: 44px; }
.topbar__logo img { height: 28px; width: auto; }
.topbar__live {
  display: none; align-items: center; gap: 6px;
  color: var(--on-dark); font-size: .8rem; font-weight: 700;
  white-space: nowrap;
}
.topbar__timer {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  color: var(--on-dark); white-space: nowrap;
}
.topbar__timer-label { font-size: .72rem; color: var(--on-dark-soft); display: none; }
.dot {
  width: 9px; height: 9px; border-radius: 50%; background: #FF3B30;
  box-shadow: 0 0 0 0 rgba(255,59,48,.6); animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0% { box-shadow: 0 0 0 0 rgba(255,59,48,.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,59,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}
.countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  background: var(--brand-grad);
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: .9rem;
  white-space: nowrap;
}
.countdown.is-live {
  background: #FF3B30;
  animation: pulse 1.2s ease-in-out infinite;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--on-dark);
  padding: 52px 0 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(221,98,49,.45) 0%, rgba(221,98,49,0) 55%),
    radial-gradient(90% 70% at 10% 110%, rgba(230,138,78,.22) 0%, rgba(0,0,0,0) 60%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; max-width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--on-dark);
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; white-space: nowrap;
}
.eyebrow__sep { opacity: .5; }

.hero__pre {
  font-size: .98rem; font-weight: 700; color: var(--brand-2);
  margin-bottom: 14px; max-width: 40ch; margin-left: auto; margin-right: auto;
}
.hero__title {
  font-size: clamp(1.55rem, 5.9vw, 2.95rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.02em;
  max-width: min(21ch, 100%);
  margin: 0 auto 20px;
}
.hero__sub {
  font-size: clamp(1.02rem, 2.6vw, 1.18rem);
  color: var(--on-dark-soft);
  max-width: 50ch; margin: 0 auto 28px;
}
.hero__micro { margin-top: 14px; font-size: .85rem; color: var(--on-dark-soft); }
.hero__bullets {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  text-align: left; margin: 34px auto 0; max-width: 460px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 22px 24px;
}
.hero__bullets li { position: relative; padding-left: 32px; font-size: 1rem; line-height: 1.45; }
.check {
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: .78rem; font-weight: 800;
  display: grid; place-items: center;
}

/* =================================================================
   QUEBRA "NÃO SEI NADA"
   ================================================================= */
.reassure__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.reassure__title { font-size: clamp(1.4rem, 4.6vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.reassure__text { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 24px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.badge {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow);
}

/* =================================================================
   DOR
   ================================================================= */
.pain__grid { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.pain__item {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm); padding: 18px 20px; font-size: 1.02rem; box-shadow: var(--shadow);
}
.pain__turn { text-align: center; font-size: 1.2rem; font-weight: 700; margin-top: 30px; }

/* =================================================================
   PRA QUEM É / NÃO É
   ================================================================= */
.forwho__grid { display: grid; gap: 18px; grid-template-columns: 1fr; max-width: 880px; margin: 0 auto; }
.forwho__col { background: var(--card); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.forwho__col h3 { font-size: 1.2rem; margin-bottom: 16px; }
.forwho__col--yes { border-top: 4px solid var(--green); }
.forwho__col--no  { border-top: 4px solid #C24B3A; }
.forwho__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.forwho__col li { padding-left: 4px; line-height: 1.45; }

/* =================================================================
   AS 5 FRENTES DO CLAUDE  (seção escura)
   ================================================================= */
.frentes .section-title { max-width: 20ch; margin-left: auto; margin-right: auto; }
.frentes__list {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 860px; margin: 40px auto 0;
}
.fcard {
  display: flex; flex-direction: column; gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.fcard:hover { border-color: rgba(230,138,78,.5); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.fcard__rail { display: flex; align-items: center; gap: 14px; }
.fcard__num {
  font-size: 1.5rem; font-weight: 800; line-height: 1;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fcard__name {
  font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--on-dark); background: rgba(221,98,49,.18); border: 1px solid rgba(230,138,78,.4);
  padding: 5px 12px; border-radius: 999px;
}
.fcard__body h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 10px; color: var(--on-dark); line-height: 1.25; }
.fcard__body p { color: var(--on-dark-soft); font-size: 1rem; line-height: 1.55; }
.fcard__body p strong { color: var(--on-dark); }
.fcard__ex {
  margin-top: 14px; font-size: .92rem; color: var(--on-dark-soft); font-style: italic;
  background: rgba(0,0,0,.25); border-left: 3px solid var(--brand); border-radius: 0 10px 10px 0;
  padding: 12px 16px;
}
.fcard__ex span {
  display: inline-block; font-style: normal; font-weight: 800; font-size: .7rem; letter-spacing: .08em;
  color: var(--brand-2); margin-right: 8px; text-transform: uppercase;
}

/* bloco de extras (skills/agentes/automações) */
.extras {
  max-width: 860px; margin: 22px auto 38px;
  background: linear-gradient(135deg, rgba(221,98,49,.16), rgba(230,138,78,.06));
  border: 1px solid rgba(230,138,78,.35); border-radius: var(--radius);
  padding: 24px 26px; color: var(--on-dark-soft); line-height: 1.6; font-size: 1rem;
}
.extras strong { color: var(--on-dark); }

/* =================================================================
   MÉTODO + INCLUSO
   ================================================================= */
.method__lead { max-width: 760px; margin: 0 auto 38px; text-align: center; font-size: 1.08rem; color: var(--ink-soft); }
.method__lead strong { color: var(--ink); }
.included { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow); }
.included__title { font-size: 1.25rem; margin-bottom: 22px; text-align: center; }
.included__list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.included__list li { display: flex; gap: 16px; align-items: flex-start; }
.included__list li div { line-height: 1.4; }
.included__list li strong { color: var(--ink); }
.inc__i {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream); display: grid; place-items: center; font-size: 1.4rem;
}

/* =================================================================
   ANTES x DEPOIS
   ================================================================= */
.ba__grid { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: stretch; max-width: 880px; margin: 0 auto; }
.ba__col { border-radius: var(--radius); padding: 26px 24px; }
.ba__col h3 { font-size: 1.15rem; margin-bottom: 16px; }
.ba__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ba__col li { position: relative; padding-left: 22px; line-height: 1.4; }
.ba__col li::before { position: absolute; left: 0; top: 0; }
.ba__col--before { background: #F2EBE2; border: 1px solid var(--line); }
.ba__col--before li::before { content: "✗"; color: #C24B3A; font-weight: 800; }
.ba__col--after { background: #14110D; color: var(--on-dark); }
.ba__col--after li::before { content: "✓"; color: #4fd07f; font-weight: 800; }
.ba__arrow { display: none; align-self: center; font-size: 2rem; color: var(--brand); font-weight: 800; }
.ba__quote { text-align: center; font-size: 1.2rem; max-width: 720px; margin: 34px auto 0; font-style: italic; color: var(--ink-soft); }
.ba__quote strong { color: var(--brand); font-style: normal; }

/* =================================================================
   PROVA SOCIAL
   ================================================================= */
.social__grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px; box-shadow: var(--shadow); }
.tcard__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tcard__head strong { display: block; font-size: 1rem; }
.tcard__head small { color: var(--ink-soft); font-size: .85rem; }
.avatar {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--c, var(--brand)); color: #fff; font-weight: 800; font-size: .95rem;
  display: grid; place-items: center; overflow: hidden;
}
img.avatar { object-fit: cover; object-position: center; }
.tcard blockquote { font-size: 1rem; line-height: 1.5; margin-bottom: 12px; }
.stars { color: #F5A623; letter-spacing: 2px; font-size: 1rem; }
.social__note { text-align: center; margin-top: 24px; font-size: .78rem; color: var(--ink-soft); opacity: .85; }

/* =================================================================
   MENTOR
   ================================================================= */
.mentor__inner { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; max-width: 920px; margin: 0 auto; }
.mentor__photo {
  width: 100%; max-width: 460px; aspect-ratio: 1; border-radius: 20px; overflow: hidden;
  margin: 0 auto; box-shadow: var(--shadow-lg); background: var(--cream);
}
.mentor__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.mentor__text p { color: var(--ink-soft); margin-bottom: 16px; }
.mentor__text strong { color: var(--ink); }
.mentor__mission { font-style: italic; border-left: 3px solid var(--brand); padding-left: 16px; }

/* =================================================================
   OFERTA
   ================================================================= */
.offer { text-align: center; }
.offer__card {
  max-width: 640px; margin: 0 auto 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(230,138,78,.4);
  border-radius: 22px; padding: 30px 26px;
  box-shadow: 0 0 0 1px rgba(230,138,78,.08), 0 24px 60px rgba(0,0,0,.45), 0 0 80px rgba(221,98,49,.12);
}
.stack { width: 100%; margin: 0 0 16px; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.stack__row, .stack__total { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; gap: 14px; text-align: left; }
.stack__row { border-bottom: 1px solid rgba(255,255,255,.07); color: var(--on-dark-soft); font-size: .95rem; }
.stack__row:last-child { border-bottom: none; }
.stack__row span { min-width: 0; }
.stack__row b { color: var(--brand-2); white-space: nowrap; font-size: .9rem; }
.stack__row:first-child b { color: var(--on-dark); }
.stack__total { background: rgba(230,138,78,.12); font-weight: 800; }
.stack__total span { color: var(--on-dark); }
.stack__total b { color: #fff; white-space: nowrap; font-size: 1.05rem; }
.stack__total b s { color: var(--brand-2); }
.stack__compare { font-size: .92rem; color: var(--on-dark-soft); line-height: 1.55; margin-bottom: 22px; }
.offer__bridge { font-size: 1.12rem; margin-bottom: 14px; color: var(--on-dark); font-weight: 600; }

.price { margin-bottom: 30px; }
.price__from { display: block; color: var(--on-dark-soft); font-size: .95rem; margin-bottom: 2px; }
.price__main { display: inline-flex; align-items: flex-start; justify-content: center; font-weight: 800; line-height: .9; color: #fff; }
.price__main { font-size: clamp(4rem, 18vw, 6.5rem); }
.price__cur { font-size: .38em; margin-top: .35em; margin-right: 4px; color: var(--brand-2); }
.price__note { display: block; color: var(--on-dark-soft); font-size: .92rem; margin-top: 8px; }

/* lotes */
.lots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 560px; margin: 0 auto 16px; }
.lot { border-radius: var(--radius-sm); padding: 18px 12px; display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; }
.lot__name { font-size: .8rem; font-weight: 700; letter-spacing: .05em; }
.lot__price { font-size: 1.6rem; font-weight: 800; }
.lot__state { font-size: .78rem; }
.lot--active { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-lg); transform: scale(1.03); }
.lot--active .lot__state { font-weight: 700; }
.lot--locked { background: rgba(255,255,255,.05); border: 1px dashed rgba(255,255,255,.2); color: var(--on-dark-soft); }
.lot--locked .lot__price { color: var(--on-dark-soft); }
.lot__tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: #14110D; color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap; border: 1px solid var(--brand-2);
}
.lots__warn { color: var(--on-dark-soft); font-size: .92rem; margin-bottom: 26px; }
.lots__warn strong { color: var(--brand-2); }

.offer__timer { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--on-dark-soft); font-size: .95rem; }
.countdown--big { font-size: 1.5rem; padding: 8px 16px; }
.offer__seals { margin-top: 14px; font-size: .85rem; color: var(--on-dark-soft); }

/* =================================================================
   GARANTIA
   ================================================================= */
.guarantee__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; max-width: 680px; margin: 0 auto; text-align: center; }
.guarantee__body p { margin-top: 4px; }
.guarantee__seal {
  position: relative; width: 138px; height: 138px; flex-shrink: 0; margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #46c47e 0%, #2E9E5B 56%, #1f7a45 100%);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #2E9E5B, 0 16px 32px rgba(46,158,91,.42);
}
.guarantee__seal::before {
  content: ""; position: absolute; inset: 8px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.65);
}
.guarantee__seal .gtop { font-size: .6rem; font-weight: 800; letter-spacing: .2em; }
.guarantee__seal .gnum { font-size: 2.9rem; font-weight: 800; line-height: .85; }
.guarantee__seal .gbot { font-size: .62rem; font-weight: 800; letter-spacing: .18em; opacity: .95; }
.guarantee__inner p { color: var(--ink-soft); font-size: 1.05rem; }
.guarantee__inner strong { color: var(--ink); }

/* =================================================================
   FAQ
   ================================================================= */
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 50px 18px 22px; font-weight: 700; position: relative; font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--brand); font-weight: 700; transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 22px 20px; color: var(--ink-soft); line-height: 1.55; }
.faq__a strong { color: var(--ink); }

/* =================================================================
   ÚLTIMA CHAMADA
   ================================================================= */
.lastcall__text { font-size: 1.15rem; color: var(--on-dark-soft); margin-bottom: 28px; }
.lastcall__text strong { color: var(--brand-2); }
.lastcall__timer { margin-top: 18px; color: var(--on-dark-soft); }

/* =================================================================
   RODAPÉ
   ================================================================= */
.footer { background: #0E0A07; color: var(--on-dark-soft); padding: 46px 0 110px; text-align: center; font-size: .85rem; }
.footer__logo { height: 30px; width: auto; margin: 0 auto 20px; opacity: .9; }
.footer__legal { margin-bottom: 12px; line-height: 1.6; }
.footer__links { margin-bottom: 18px; }
.footer__links a { color: var(--on-dark); text-decoration: none; }
.footer__links a:hover { text-decoration: underline; }
.footer__disclaimer { max-width: 720px; margin: 0 auto; font-size: .78rem; line-height: 1.6; color: #B6A893; }
.footer__disclaimer strong { color: #D8CCB9; }

/* =================================================================
   STICKY CTA MOBILE
   ================================================================= */
.stickycta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(18, 13, 9, .98); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  transform: translateY(120%); transition: transform .3s ease;
  box-shadow: 0 -8px 24px rgba(0,0,0,.3);
}
.stickycta.is-visible { transform: translateY(0); }
.stickycta__info { display: flex; flex-direction: column; line-height: 1.2; }
.stickycta__price { color: #fff; font-weight: 800; font-size: 1rem; }
.stickycta__timer { color: var(--on-dark-soft); font-size: .75rem; }
.stickycta__timer .countdown { background: none; padding: 0; color: var(--brand-2); font-size: .8rem; }
.stickycta__btn { margin-left: auto; padding: 14px 20px; font-size: .95rem; white-space: nowrap; animation: none; }

/* =================================================================
   RESPONSIVO — TABLET / DESKTOP
   ================================================================= */
@media (min-width: 600px) {
  .topbar__live { display: flex; }
  .topbar__timer-label { display: inline; }
  .pain__grid { grid-template-columns: 1fr 1fr; }
  /* botões voltam a ser do tamanho do conteúdo no desktop */
  .btn--lg { padding: 18px 32px; font-size: 1.05rem; }
  .btn--xl { padding: 20px 32px; font-size: 1.15rem; }
  .hero .btn--xl, .center .btn--xl, .center .btn--lg { width: auto; max-width: none; }
}

@media (min-width: 768px) {
  body { font-size: 18px; }
  .band { padding: 88px 0; }
  .forwho__grid { grid-template-columns: 1fr 1fr; }
  .social__grid { grid-template-columns: repeat(3, 1fr); }
  .ba__grid { grid-template-columns: 1fr auto 1fr; }
  .ba__arrow { display: block; }
  .lots { grid-template-columns: repeat(4, 1fr); }
  .mentor__inner { grid-template-columns: 320px 1fr; text-align: left; gap: 40px; }
  .mentor__photo { width: 320px; max-width: none; margin: 0; }
  /* garantia permanece centralizada (selo no topo) em todas as larguras */

  /* 5 frentes: trilho lateral fixo + conteúdo */
  .fcard { flex-direction: row; align-items: flex-start; gap: 28px; padding: 30px 30px; }
  .fcard__rail { flex-direction: column; align-items: flex-start; gap: 10px; min-width: 150px; flex-shrink: 0; padding-top: 4px; }
  .fcard__num { font-size: 2.6rem; }
  .fcard__body { flex: 1; }

  /* o sticky CTA mobile some no desktop (header já tem o timer + CTAs na página) */
  .stickycta { display: none; }
  body { padding-top: var(--topbar-h); }
}

@media (min-width: 1024px) {
  .hero { padding: 80px 0 90px; }
}

/* acessibilidade: respeita preferência de menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .btn { transition: none; }
}
