/* =============================================
   PROTOCOLO TERAPÊUTICO — STYLESHEET
   Estilo: Escolaviver.com/lp_2
   Paleta: Creme quente · Dourado · Cinza escuro
   ============================================= */

/* ── RESET & TOKENS ─────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores */
  --bg: #faf7f2;
  /* Fundo creme */
  --bg-alt: #f4f0e8;
  /* Fundo creme alternativo */
  --bg-dark: #eee8dc;
  /* Fundo creme escuro */
  --text: #1c1a17;
  /* Texto principal */
  --text-mid: #4a4540;
  /* Texto médio */
  --text-light: #8a8278;
  /* Texto leve */
  --gold: #b8892a;
  /* Dourado principal */
  --gold-btn: #c8973a;
  /* Botão dourado */
  --gold-btn-hov: #a8771f;
  /* Botão hover */
  --gold-pale: rgba(200, 151, 58, .1);
  /* Dourado pálido */
  --line: #e2d9cc;
  /* Linha divisória */

  /* Tipografia */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* Espaços */
  --section-py: 100px;
  --section-py-sm: 64px;

  /* Forma */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-card: 0 4px 24px rgba(60, 40, 10, .07);
  --shadow-up: 0 -4px 30px rgba(60, 40, 10, .07);
  --transition: all .25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--sans);
  border: none;
  background: none;
}

s {
  opacity: .5;
  font-weight: 400;
}

/* ── CONTAINER ───────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── COUNTDOWN BANNER (Barra para Pilha iOS) ───── */
.topbar-countdown {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* Deixa cliques passarem no entorno */
  padding: 0;
  transition: padding 0.8s cubic-bezier(0.16, 1, 0.3, 1), top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-countdown.scrolled {
  top: 16px;
  padding: 0 16px;
}

.countdown-container {
  width: 100%;
  max-width: 100%;
  background: rgba(34, 26, 15, 0.7);
  /* Vidro escuro levemente puxando pro dourado/marrom premium */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid rgba(200, 151, 58, 0.4);
  /* Linha divisória de baixo dourada sutil */
  border-radius: 0;
  padding: 10px 24px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-countdown.scrolled .countdown-container {
  width: fit-content;
  max-width: 92vw;
  background: rgba(34, 26, 15, 0.85);
  /* Fica ligeiramente mais denso ao flutuar */
  border: 0.5px solid rgba(200, 151, 58, 0.5);
  /* Aro dourado em torno da "Dynamic Island" */
  border-radius: 999px;
  /* Superposição de sombras: Uma preta profunda pra soltar, e um leve neon dourado pra brilhar um fundo sutil */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(200, 151, 58, 0.15), inset 0 0.5px 0 rgba(255, 255, 255, 0.1);
}

.countdown-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #ebdcb5;
  /* Creme/Dourado Pálido (Chama muita atenção contra o fundo escuro sem "gritar") */
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 3px;
}

@media (max-width: 520px) {

  .countdown-container {
    flex-direction: column;
    padding: 12px 20px;
    gap: 6px;
  }

  .topbar-countdown.scrolled .countdown-container {
    border-radius: 24px;
    /* Substitui o 999px para não virar um "ovo" comprido quando estica verticalmente */
  }

  .countdown-text {
    text-align: center;
    line-height: 1.3;
  }
}

.time-box {
  /* Substituí o vidro translúcido acinzentado por um Gradiente Dourado chamativo mas sofisticado */
  background: linear-gradient(135deg, var(--gold-btn), #9a6f1a);
  color: #fff;
  padding: 4px 7px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 1.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0.5px 1px rgba(255, 255, 255, 0.3);
  /* Destaque 3D metálico */
}

.time-box span {
  font-size: 0.95rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
}

.time-box small {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  /* Branco translúcido para ler fácil no dourado */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-box.separator {
  background: transparent;
  color: var(--gold-btn);
  /* Dois pontos dourados, chamativos fora da caixa */
  box-shadow: none;
  padding: 0 1px;
  font-size: 0.95rem;
  font-weight: 700;
  transform: translateY(-1px);
}

/* ── BOTÃO DOURADO ───────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold-btn);
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  letter-spacing: .2px;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-btn-hov);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 137, 42, .35);
}

/* ── SECTION TAG PEQUENA ─────────────────────── */
.section-tag-small {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── SECTION HEADING ─────────────────────────── */
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 28px;
}

.centered {
  text-align: center;
}

.section-heading.centered {
  text-align: center;
}

/* ────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 88px 0 80px;
  text-align: center;
}

.hero-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.91rem);
  font-weight: 500;
  color: #121a24;
  line-height: 1.25;
  margin: 0 auto 24px;
  max-width: 900px;
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #6a7182;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-pills {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
  padding: 0;
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: #8c93a1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-pills li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold-btn);
}

/* ────────────────────────────────────────────────
   DOR
──────────────────────────────────────────────── */
.section-dor {
  background: #ffffff;
  padding: var(--section-py) 0;
}

.dor-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #121a24;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  display: block;
  width: 100%;
}

.dor-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-btn);
  margin: 12px auto 0;
}

.dor-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}

.dor-card {
  background: #fdfaf5;
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.dor-card p {
  font-size: 1.05rem;
  color: #4a5262;
  font-weight: 500;
}

.dor-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-btn);
  flex-shrink: 0;
}

.dor-footer {
  text-align: center;
  margin-top: 40px;
}

.dor-footer p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: #121a24;
  line-height: 1.4;
}

.dor-footer em {
  font-style: italic;
  position: relative;
  display: inline-block;
}

.dor-footer em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-btn);
}



.dor-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--text);
  text-align: center;
  padding: 40px 32px;
  background: var(--bg);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  line-height: 1.55;
  margin-top: 10px;
}

/* ────────────────────────────────────────────────
   CRENÇA
──────────────────────────────────────────────── */
.section-crenca {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.crenca-text.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.crenca-text p {
  font-size: 1.15rem;
  color: #4a5262;
  line-height: 1.8;
  margin-bottom: 40px;
}

.crenca-quote-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 40px;
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--gold-btn);
  box-shadow: var(--shadow-card);
  border: 1px solid #f0edf0;
}

/* ────────────────────────────────────────────────
   MÉTODO / PILARES
──────────────────────────────────────────────── */
.section-metodo {
  background: #fff;
  padding: var(--section-py) 0;
}

.section-metodo {
  background: #fff;
  padding: 120px 0;
}

.metodo-subtag {
  font-family: var(--sans);
  font-size: 1rem;
  color: #8c93a1;
  font-weight: 500;
  margin-bottom: 72px;
  display: block;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pilar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid #f2f2f2;
}

.pilar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  border-color: #eee;
}

.pilar-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-btn);
  margin-bottom: 32px;
  background: #faf7f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.pilar-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #121a24;
  margin-bottom: 20px;
}

.pilar-card p {
  font-size: 1.05rem;
  color: #6a7182;
  line-height: 1.8;
}

/* ────────────────────────────────────────────────
   PROVA SOCIAL
──────────────────────────────────────────────── */
.section-provasocial {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.depoimento-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: var(--transition);
}

.depoimento-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.stars {
  font-size: .9rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.depoimento-card p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.depoimento-autor {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.depoimento-autor strong {
  font-size: .9rem;
  color: var(--text);
  font-weight: 600;
}

.depoimento-autor span {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ────────────────────────────────────────────────
   OFERTA / STACK
──────────────────────────────────────────────── */


/* ────────────────────────────────────────────────
   OFERTA / STACK (Screenshot Match)
──────────────────────────────────────────────── */
.section-oferta {
  background: #0b0f19;
  padding: 100px 0;
  background-image: radial-gradient(circle at 50% 50%, #151b2b 0%, #0b0f19 80%);
}

.section-heading.light {
  color: #fff;
}

.oferta-box {
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px 20px 0 0;
  padding: 20px 24px;
}

.oferta-list {
  display: flex;
  flex-direction: column;
}

.oferta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.oferta-row:last-child {
  border-bottom: none;
}

.oferta-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.oferta-item-left svg {
  width: 18px;
  height: 18px;
  color: #c8973a;
}

.oferta-item-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.oferta-footer-total {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 24px;
}

.oferta-footer-total .label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.oferta-footer-total .price-strikethrough {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  opacity: 0.6;
  display: block;
}

.warning-text {
  color: #c8973a;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.oferta-card-final {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  margin-top: -20px;
  position: relative;
  z-index: 10;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.offer-label {
  font-size: 0.75rem;
  color: #8c93a1;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.final-price strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  color: #121a24;
  line-height: 1.1;
  letter-spacing: -1px;
}

.final-price span {
  font-size: 1rem;
  color: #6a7182;
  margin-top: 4px;
  display: block;
}

.btn-gold-card {
  display: block;
  background: #c4a060;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  margin: 24px 0 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(196, 160, 96, 0.3);
}

.btn-gold-card:hover {
  background: #b38e4d;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(196, 160, 96, 0.4);
}

.trust-footer-small {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.trust-footer-small span {
  font-size: 0.75rem;
  color: #8c93a1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-footer-small svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* ────────────────────────────────────────────────
   BÔNUS
──────────────────────────────────────────────── */
.section-bonus {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.bonus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid #f0f0f0;
  position: relative;
  box-shadow: var(--shadow-card);
}

.bonus-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold-btn);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.bonus-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #121a24;
  margin-bottom: 16px;
}

.bonus-card p {
  font-size: .98rem;
  color: #4a5262;
  margin-bottom: 32px;
}

.bonus-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f8f8f8;
  padding-top: 20px;
}

.price-st {
  font-size: .85rem;
  color: #8c93a1;
  text-decoration: line-through;
}

.label-gratis {
  font-weight: 700;
  color: var(--gold-btn);
  font-size: .9rem;
}

.bonus-final-box {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #f0f0f0;
  padding: 48px;
  text-align: center;
}

.st-total {
  font-size: .9rem;
  color: #8c93a1;
  display: block;
}

.final-price-bonus {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold-btn);
  font-weight: 700;
  margin-top: 12px;
  line-height: 1;
}

.avista-bonus {
  display: block;
  font-size: 0.95rem;
  color: #8c93a1;
  margin-top: 4px;
}

/* ────────────────────────────────────────────────
   PREÇO
──────────────────────────────────────────────── */


/* ────────────────────────────────────────────────
   GARANTIA
──────────────────────────────────────────────── */
.section-garantia {
  background: #fff;
  padding: var(--section-py) 0;
}

.garantia-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.garantia-selo {
  flex-shrink: 0;
}

.selo-img {
  width: 180px;
  height: auto;
}

.garantia-texto h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #121a24;
  margin-bottom: 20px;
}

.garantia-texto p {
  font-size: 1.05rem;
  color: #4a5262;
  line-height: 1.8;
  margin-bottom: 16px;
}

.garantia-destaque {
  font-weight: 700;
  color: var(--gold-btn) !important;
  font-size: 1.1rem;
}

.section-autoridade {
  background: var(--bg);
  padding: 120px 0;
}

/* ────────────────────────────────────────────────
   AUTORIDADE
──────────────────────────────────────────────── */
.autoridade-flex {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.autoridade-foto-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.autoridade-foto {
  width: 100%;
  height: auto;
  display: block;
}

.autoridade-tag {
  font-size: .75rem;
  color: var(--gold-btn);
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.autoridade-nome {
  font-family: var(--serif);
  font-size: 3rem;
  color: #121a24;
  margin-bottom: 8px;
}

.autoridade-intro {
  color: #6a7182;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.autoridade-body p {
  font-size: 1.05rem;
  color: #4a5262;
  line-height: 1.8;
  margin-bottom: 24px;
}

.autoridade-destaque-list {
  border-left: 3px solid var(--gold-btn);
  padding-left: 32px;
  margin: 40px 0;
}

.autoridade-destaque-list p {
  font-size: 1rem;
  color: #121a24;
  font-weight: 600;
  margin-bottom: 12px;
}

.autoridade-quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-btn);
  margin-top: 40px;
}

/* ────────────────────────────────────────────────
   FAQ
──────────────────────────────────────────────── */
.section-faq {
  background: var(--bg);
  padding: var(--section-py) 0;
}

.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--line);
}

.faq-pergunta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  cursor: pointer;
  transition: color .2s;
}

.faq-pergunta:hover {
  color: var(--gold);
}

.faq-icone {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  transition: transform .3s;
  width: 24px;
  text-align: center;
}

.faq-item.open .faq-icone {
  transform: rotate(45deg);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-resposta {
  max-height: 300px;
}

.faq-resposta p {
  padding: 0 0 22px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ────────────────────────────────────────────────
   CTA FINAL
──────────────────────────────────────────────── */
/* ────────────────────────────────────────────────
   CTA FINAL (Screenshot Match)
──────────────────────────────────────────────── */
.section-final-cta {
  background: var(--bg);
  padding: 120px 0;
  text-align: center;
}

.final-cta-card {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 640px;
  margin: 48px auto 0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.st-price-final {
  display: block;
  font-size: .9rem;
  color: #8c93a1;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.label-por-final {
  display: block;
  font-size: .85rem;
  color: #8c93a1;
  margin-bottom: 12px;
}

.final-price-main {
  font-family: var(--serif);
  font-size: 4.2rem;
  color: #c4a060;
  font-weight: 700;
  line-height: 1;
}

.final-avista-small {
  display: block;
  font-size: .95rem;
  color: #8c93a1;
  margin-top: 8px;
}

.btn-final-gold {
  display: block;
  background: #c4a060;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 99px;
  margin: 32px 0 16px;
  transition: all .3s ease;
}

.btn-final-gold:hover {
  background: #b38e4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 160, 96, 0.3);
}

.acesso-info {
  font-size: .75rem;
  color: #8c93a1;
}

/* ────────────────────────────────────────────────
   FOOTER (Screenshot Match)
──────────────────────────────────────────────── */
.footer {
  background: #0b0f19;
  color: rgba(255, 255, 255, 0.4);
  padding: 80px 0;
  text-align: center;
}

.footer p {
  font-size: .85rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: .85rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  font-size: .7rem;
  line-height: 1.6;
  opacity: 0.5;
}

/* ────────────────────────────────────────────────
   FAB (BOTÃO FLUTUANTE)
──────────────────────────────────────────────── */
.fab-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}

.fab-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.fab-link {
  display: flex;
  align-items: center;
  background: var(--gold-btn);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px rgba(184, 137, 42, .4);
  transition: var(--transition);
  white-space: nowrap;
}

.fab-link:hover {
  background: var(--gold-btn-hov);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 137, 42, .5);
}

/* ────────────────────────────────────────────────
   ANIMAÇÕES SCROLL
──────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ────────────────────────────────────────────────
   WHATSAPP FLUTUANTE
──────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

/* ────────────────────────────────────────────────
   NOTIFICAÇÃO DE VENDAS (SOCIAL PROOF)
──────────────────────────────────────────────── */
.sales-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(200, 151, 58, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08), 0 0 10px rgba(200, 151, 58, 0.03);
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 280px;
}

.sales-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.toast-icon svg {
  width: 12px;
  height: 12px;
}

.toast-content {
  display: flex;
  flex-direction: column;
}

.toast-content strong {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: #121a24;
  line-height: 1.2;
}

.toast-content span {
  font-size: 0.7rem;
  color: #6a7182;
  margin-bottom: 2px;
  line-height: 1.3;
}

.toast-content small {
  font-size: 0.6rem;
  color: #8c93a1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  /* Hero */
  .hero {
    padding: 60px 0 50px;
  }

  .hero-title {
    font-size: 2.38rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-pills {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* Estruturas de Grid */
  .pilares-grid,
  .depoimentos-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Autoridade */
  .autoridade-flex {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .autoridade-foto-col {
    max-width: 280px;
    margin: 0 auto;
  }

  .autoridade-destaque-list {
    text-align: left;
    display: inline-block;
    max-width: 100%;
  }

  /* Oferta */
  .oferta-box {
    max-width: 92%;
    padding: 24px 16px;
  }

  .oferta-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 18px 0;
  }

  .oferta-item-left {
    justify-content: center;
    font-size: 0.9rem;
  }

  .oferta-item-right {
    font-size: 0.65rem;
  }

  .oferta-card-final {
    max-width: 95%;
    padding: 30px 20px;
  }

  .final-price strong {
    font-size: 2.2rem;
  }

  /* Garantia */
  .garantia-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  /* CTA Final */
  .final-price-main {
    font-size: 2.2rem;
  }

  /* Toast de Notificação (Mobile) */
  .sales-toast {
    bottom: 24px;
    left: 16px;
    right: auto;
    transform: translateY(150%);
    width: auto;
    max-width: 280px;
  }

  .sales-toast.show {
    transform: translateY(0);
  }

  /* FAB */
  .fab-cta {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .fab-link {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.06rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .crenca-quote-box {
    font-size: 1.2rem;
    padding: 24px;
  }

  .pilar-card,
  .depoimento-card,
  .bonus-card {
    padding: 32px 24px;
  }
}