/* ==========================================================================
   Protocolo Micropeeling — Grazi Pivetta
   Folha de estilo principal
   ========================================================================== */

/* ----- Design tokens ----------------------------------------------------- */
:root {
  /* Cores */
  --dark: #1C1612;
  --dark-card: #251E17;
  --dark-line: #3A302A;
  --cream: #F3EAE0;
  --cream-light: #FAF4EE;
  --cream-border: #E8D8CE;
  --terracotta: #B87464;
  --gold: #C4956A;
  --rose: #DEB8AD;
  --text: #2A1F18;
  --text-muted: #5C4A3E;
  --green: #2D5A27;

  /* Tipografia — fonte única em todo o site: DM Sans (sem Playfair).
     As duas variáveis apontam para a mesma família por compatibilidade. */
  --font-serif: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Tamanho padrão dos títulos de seção (~42px no desktop) */
  --title-size: clamp(26px, 3.4vw, 42px);

  /* Layout */
  /* Respiro lateral global: o conteúdo ocupa ~90% da viewport e, a partir de
     ~1280px, trava em 1280px centralizado (o bg de cada seção preenche o
     restante). Piso de 20px em telas muito pequenas. */
  --pad-x: max(20px, 5vw, calc((100vw - 1280px) / 2));
  --maxw: 1280px;
  --radius: 14px;
}

/* ----- Reset ------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  /* Dificulta arrastar/salvar as imagens */
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

a {
  color: inherit;
}

/* ----- Utilitários tipográficos ------------------------------------------ */
.eyebrow {
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow--gold {
  color: var(--gold);
}

.italic {
  font-style: italic;
}

/* Títulos de seção — padronizados em DM Sans ~42px */
.section-title {
  font-family: var(--font-sans);
  font-size: var(--title-size);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

/* ----- Botões ------------------------------------------------------------ */
.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 18px 40px;
  font: 600 15px/1 var(--font-sans);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background: #a9685a;
}

.btn--lg {
  padding: 22px 44px;
  font-size: 16px;
  box-shadow: 0 16px 36px rgba(184, 116, 100, .35);
}

.btn--shadow {
  box-shadow: 0 14px 32px rgba(184, 116, 100, .32);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn--dark {
  background: var(--dark);
  color: var(--cream);
}

.btn--dark:hover {
  background: #000;
}

/* ----- Seção genérica ---------------------------------------------------- */
.section {
  padding: 90px var(--pad-x);
}

.section--cream {
  background: var(--cream);
}

.section--cream-light {
  background: var(--cream-light);
  border-top: 1px solid var(--cream-border);
}

.section--dark {
  background: var(--dark);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
}

.container--narrow {
  max-width: 840px;
}

.container--text {
  max-width: 780px;
}

.center {
  text-align: center;
}

/* ----- Aviso de cópia de texto (toast no topo) --------------------------- */
.copy-toast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #F3EAE0;
  color: #1C1612;
  text-align: center;
  font: 500 14px/1.5 var(--font-sans);
  padding: 14px clamp(16px, 4vw, 32px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
  transform: translateY(-100%);
  transition: transform .35s ease;
  /* Não bloqueia a página enquanto está escondido; o link continua clicável. */
  pointer-events: none;
}

.copy-toast.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.copy-toast a {
  color: #1C1612;
  font-weight: 600;
  text-decoration: underline;
  word-break: break-all;
}

/* ==========================================================================
   HERO
   ========================================================================== */
/* Desktop/notebook: grid de 1 coluna onde a IMAGEM e o TEXTO ocupam a mesma
   célula (sobrepostos) e a faixa de confiança cai na linha de baixo. */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--dark);
}

/* Área da imagem. Desktop: fundo do hero (proporção 1920×823, teto 823px). */
.hero__media {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  width: 100%;
  /* Altura "ideal" da imagem (proporção 1920×823 → 823/1920 ≈ 42.857%).
     É um piso, não um teto: sem aspect-ratio/max-height, a área da imagem
     estica para acompanhar o texto quando ele fica mais alto (telas de
     notebook), evitando qualquer brecha antes da faixa de confiança. */
  min-height: clamp(560px, 42.857vw, 823px);
  overflow: hidden;
  background: var(--dark);
}

/* Imagem desktop (modelo à direita) */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Imagem tablet/celular (modelo centralizada) — escondida no desktop */
.hero__portrait {
  display: none;
}

/* Véu escuro removido a pedido — fundo do hero sem sombra sobreposta. */
.hero__media::after {
  display: none;
}

.hero__content {
  grid-row: 1;
  /* sobrepõe a imagem no desktop */
  grid-column: 1;
  z-index: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* O bloco de texto não encosta na tela: até 320px à esquerda, escalando
     com a viewport (320px ÷ 1920px ≈ 16.66vw). A largura também é relativa
     para o texto nunca avançar sobre a modelo. */
  max-width: min(800px, 46vw);
  margin-left: clamp(40px, 16.66vw, 320px);
  padding-block: 80px;
  padding-right: 40px;
}

/* Logo da marca, acima do título (como na referência) */
.hero__logo {
  width: clamp(150px, 13vw, 190px);
  height: auto;
  margin-bottom: 30px;
}

.hero__title {
  font-family: var(--font-sans);
  /* 58px no desktop, encolhendo proporcionalmente no notebook/telas menores */
  font-size: clamp(30px, 3.55vw, 58px);
  font-weight: 500;
  line-height: 1.36;
  /* 79px ÷ 58px */
  color: #D6CEC5;
}

.hero__title-accent {
  display: block;
  font-style: italic;
  color: #AE6146;
}

.hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(243, 234, 224, .72);
  margin-top: 26px;
  max-width: 500px;
}

.hero__lead b {
  color: var(--cream);
  font-weight: 700;
}

.hero__cta {
  margin-top: 36px;
  align-self: flex-start;
}

.hero__note {
  font-size: 13px;
  color: rgba(243, 234, 224, .45);
  margin-top: 18px;
  letter-spacing: .04em;
}


/* ==========================================================================
   TRUST BAND
   ========================================================================== */
.trust {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-border);
  padding: 24px var(--pad-x);
}

.trust__list {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.trust__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

/* ==========================================================================
   PROBLEMA
   ========================================================================== */
.prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.prose b {
  color: var(--text);
}

.lead-h2 {
  margin-bottom: 32px;
}

.quote {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 34px 40px;
  margin: 40px 0;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(243, 234, 224, .9);
}

/* ==========================================================================
   RESULTADOS / CARROSSEL
   ========================================================================== */
.results__head {
  text-align: center;
  margin-bottom: 56px;
}

.results__head h2 {
  margin: 22px 0 18px;
}

.results__sub {
  font-size: 17px;
  color: var(--terracotta);
  font-weight: 500;
}

/* Carrossel full-bleed: ocupa toda a largura da viewport (ponta a ponta),
   ignorando o respiro lateral da seção. A máscara dá o fade nas bordas. */
.results__carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.results .splide__slide {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(44, 31, 24, .16);
}

.results .splide__slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.results__cta {
  text-align: center;
  margin-top: 44px;
}

/* ==========================================================================
   BIO
   ========================================================================== */
.bio__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.bio__photo {
  position: relative;
}

.bio__photo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(44, 31, 24, .2);
}

.bio__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--dark);
  border-radius: 10px;
  padding: 16px 18px;
}

.bio__badge p {
  font: 500 11px/1.5 var(--font-sans);
  letter-spacing: .08em;
  color: var(--gold);
  text-align: center;
}

.bio__title {
  margin-bottom: 28px;
}

.bio__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.bio__text b {
  color: var(--text);
}

/* ==========================================================================
   PROTOCOLO (cards escuros)
   ========================================================================== */
.protocol {
  /* Espaço no rodapé para os cards não colarem na faixa de estatísticas */
  padding-bottom: 90px;
}

.protocol__head {
  text-align: center;
}

.protocol__head h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.protocol__intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(243, 234, 224, .65);
  max-width: 640px;
  margin: 0 auto 56px;
}

.protocol__intro b {
  color: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.protocol-card {
  background: var(--dark-card);
  padding: 36px 28px;
  text-align: left;
}

.protocol-card:first-child {
  border-radius: 14px 0 0 0;
}

.protocol-card:last-child {
  border-radius: 0 14px 0 0;
}

.protocol-card__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 18px;
}

.protocol-card h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.protocol-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(243, 234, 224, .62);
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats {
  background: var(--rose);
  padding: 44px var(--pad-x);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.stats__item {
  padding: 0 24px;
}

.stats__item:not(:last-child) {
  border-right: 1px solid rgba(92, 47, 38, .18);
}

.stats__num {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
}

.stats__label {
  font: 600 11px/1.3 var(--font-sans);
  letter-spacing: .1em;
  color: #5C2F26;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ==========================================================================
   OBJEÇÕES
   ========================================================================== */
.objections__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.objection {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}

.objection__num {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 700;
  color: #E8D2C5;
  line-height: 1;
}

.objection__q {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 19px;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.objection__a {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.objection__a b {
  color: var(--text);
}

/* ==========================================================================
   PARA QUEM
   ========================================================================== */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 32px;
  border-bottom: 1px solid var(--cream-border);
}

.audience__item:nth-child(odd) {
  border-right: 1px solid var(--cream-border);
}

.audience__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.audience__check {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.audience__item p {
  font-size: 16px;
  line-height: 1.6;
  color: #3A2E28;
}

/* ==========================================================================
   MÓDULOS
   ========================================================================== */
.modules__head {
  text-align: center;
  margin-bottom: 56px;
}

.modules__head h2 {
  color: var(--cream);
  margin-bottom: 18px;
}

.modules__head p {
  font-size: 16px;
  color: rgba(243, 234, 224, .55);
}

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

.module {
  background: var(--dark-card);
  padding: 32px 28px;
}

.module:nth-child(1) {
  border-radius: 14px 0 0 0;
}

.module:nth-child(3) {
  border-radius: 0 14px 0 0;
}

.module:nth-child(4) {
  border-radius: 0 0 0 14px;
}

.module:nth-child(6) {
  border-radius: 0 0 14px 0;
}

.module__num {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-line);
  line-height: 1;
  margin-bottom: 14px;
}

.module h3 {
  font: 700 13px/1.3 var(--font-sans);
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.module__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module__items p {
  font-size: 14px;
  color: rgba(243, 234, 224, .6);
  padding-left: 14px;
  border-left: 1px solid var(--dark-line);
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.reviews__head {
  text-align: center;
  margin-bottom: 56px;
}

.reviews__head h2 {
  margin: 22px 0 18px;
}

.reviews__head p {
  font-size: 16px;
  color: var(--text-muted);
}

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

.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 4px 18px rgba(44, 31, 24, .08);
}

.review__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.review__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 10px;
}

.review--featured {
  background: var(--dark);
  grid-column: span 2;
}

.review--featured .review__author {
  color: var(--gold);
}

.review--featured .review__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 234, 224, .85);
}

/* ==========================================================================
   O QUE VOCÊ RECEBE
   ========================================================================== */
.offer {
  display: flex;
  flex-direction: column;
}

.offer__row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-border);
}

.offer__row:last-child {
  border-bottom: none;
}

.offer__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.offer__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.offer__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.offer__price {
  font: 600 14px var(--font-sans);
  color: #9B8878;
  white-space: nowrap;
}

.offer__total {
  background: var(--dark);
  border-radius: 16px;
  padding: 36px 44px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.offer__total-label {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: .1em;
  color: rgba(243, 234, 224, .45);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offer__total-old {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  color: rgba(243, 234, 224, .4);
  text-decoration: line-through;
}

.offer__total-now {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.offer__total-note {
  font-size: 14px;
  color: rgba(243, 234, 224, .6);
  margin-top: 6px;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  color: var(--cream);
  margin-bottom: 24px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.final-cta__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(243, 234, 224, .6);
  margin-bottom: 44px;
}

.price-box {
  background: var(--dark-card);
  border: 1px solid rgba(196, 149, 106, .2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 36px;
}

.price-box__label {
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .1em;
  color: rgba(243, 234, 224, .4);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-box__value {
  font-family: var(--font-sans);
  font-size: clamp(52px, 7vw, 72px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.price-box__or {
  font-size: 16px;
  color: rgba(243, 234, 224, .4);
  margin: 14px 0 4px;
}

.price-box__full {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}

.final-cta__guarantee {
  font-size: 14px;
  color: rgba(243, 234, 224, .4);
  margin-top: 18px;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  opacity: .35;
}

.badges span {
  font: 500 11px var(--font-sans);
  color: var(--cream);
  border: 1px solid rgba(243, 234, 224, .3);
  border-radius: 4px;
  padding: 5px 10px;
}

/* ==========================================================================
   GARANTIA
   ========================================================================== */
.guarantee {
  background: var(--cream);
  padding: 70px var(--pad-x);
}

.guarantee__card {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 44px 48px;
  box-shadow: 0 10px 34px rgba(44, 31, 24, .1);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}

.guarantee__seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guarantee__seal-num {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.guarantee__seal-label {
  font: 600 8px/1.1 var(--font-sans);
  letter-spacing: .06em;
  color: rgba(243, 234, 224, .55);
  text-transform: uppercase;
  margin-top: 3px;
  text-align: center;
}

.guarantee__card h3 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.guarantee__card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--cream);
  padding: 20px var(--pad-x) 90px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 44px;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid var(--cream);
  overflow: hidden;
}

.faq__item:first-child {
  border-radius: 10px 10px 0 0;
}

.faq__item:last-child {
  border-radius: 0 0 10px 10px;
  border-bottom: none;
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font: 500 16px var(--font-sans);
  color: var(--dark);
}

.faq__icon {
  color: var(--terracotta);
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
  flex: none;
}

.faq__item[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq__item[aria-expanded="true"] .faq__a {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* ==========================================================================
   FOOTER CTA + FOOTER
   ========================================================================== */
.footer-cta {
  background: var(--terracotta);
  padding: 80px var(--pad-x);
  text-align: center;
}

.footer-cta h2 {
  font-family: var(--font-sans);
  font-size: var(--title-size);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0 auto 20px;
  max-width: 680px;
}

.footer-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  max-width: 540px;
  margin: 0 auto 36px;
}

.site-footer {
  background: var(--dark);
  padding: 28px var(--pad-x);
  border-top: 1px solid rgba(196, 149, 106, .1);
}

.site-footer p {
  font-size: 13px;
  color: rgba(243, 234, 224, .35);
  text-align: center;
}

.site-footer a {
  color: rgba(243, 234, 224, .45);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

/* --- Notebook estreito (1001–1615px): texto à esquerda, conteúdo mais
   estreito para não encostar na modelo; bg continua ponta a ponta. --------- */
@media (min-width: 1001px) and (max-width: 1615px) {
  .hero__content {
    max-width: min(560px, 52vw);
    margin-left: clamp(40px, 9vw, 150px);
  }
}

/* --- HERO EMPILHADO (≤1000px): imagem (retrato) no topo, faixa de confiança
   no meio e o bloco de texto centralizado embaixo. Fonte base (mobile peq.). */
@media (max-width: 1000px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero__media {
    order: 1;
    min-height: 0;
    height: clamp(340px, 60vw, 480px);
  }

  .hero__media::after {
    display: none;
  }

  .hero__bg {
    display: none;
  }

  .hero__portrait {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .trust {
    order: 2;
  }

  .hero__content {
    order: 3;
    background: var(--dark);
    max-width: none;
    margin: 0;
    align-items: center;
    text-align: center;
    padding: 48px var(--pad-x);
  }

  .hero__lead {
    font-size: 16px;
    margin-inline: auto;
  }

  .hero__cta {
    align-self: stretch;
    text-align: center;
  }

  /* Vertical das seções um pouco menor no mobile/tablet */
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* --- Mobile grande / Tablet / Laptop pequeno (481–1000px): mesma estrutura
   empilhada, porém com mais largura e fonte maior que no mobile pequeno. ---- */
@media (min-width: 481px) and (max-width: 1000px) {
  .hero__media {
    height: clamp(360px, 50vw, 520px);
  }

  .hero__content {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px var(--pad-x);
  }

  .hero__logo {
    width: clamp(190px, 22vw, 230px);
    margin-bottom: 34px;
  }

  .hero__title {
    font-size: clamp(40px, 5.6vw, 56px);
  }

  .hero__lead {
    font-size: clamp(18px, 2.4vw, 22px);
    max-width: 640px;
  }

  .hero__cta {
    font-size: 18px;
  }

  .hero__note {
    font-size: 15px;
  }
}

/* --- Tablet/laptop (≤1023px): grids do restante da página em 1–2 colunas -- */
@media (max-width: 1023px) {
  .trust__list {
    gap: 40px;
  }

  .bio__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio__photo {
    max-width: 420px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .protocol-card:first-child {
    border-radius: 14px 0 0 0;
  }

  .protocol-card:nth-child(2) {
    border-radius: 0 14px 0 0;
  }

  .protocol-card:nth-child(3) {
    border-radius: 0 0 0 14px;
  }

  .protocol-card:last-child {
    border-radius: 0 0 14px 0;
  }

  .modules__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module {
    border-radius: 0 !important;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review--featured {
    grid-column: span 2;
  }

  .offer__total {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
}

/* --- Celular (≤627px): grids em 1 coluna + faixa de confiança compacta.
   (O hero já está empilhado e centralizado desde ≤768.) ------------------- */
@media (max-width: 627px) {
  /* Faixa de confiança: compacta e centralizada (quebra sem deixar buracos) */
  .trust {
    padding: 16px var(--pad-x);
  }

  .trust__list {
    gap: 10px 14px;
    justify-content: center;
  }

  .trust__item {
    gap: 7px;
  }

  .trust__icon {
    width: 26px;
    height: 26px;
  }

  .trust__label {
    font-size: 11.5px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .stats__item {
    border-bottom: none !important;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .protocol-card {
    border-radius: 0 !important;
  }

  .protocol-card:first-child {
    border-radius: 14px 14px 0 0 !important;
  }

  .protocol-card:last-child {
    border-radius: 0 0 14px 14px !important;
  }

  .objection {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .objection__num {
    font-size: 40px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .audience__item {
    border-right: none !important;
  }

  .modules__grid {
    grid-template-columns: 1fr;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .review--featured {
    grid-column: span 1;
  }

  .offer__row {
    grid-template-columns: 40px 1fr;
    row-gap: 6px;
  }

  .offer__price {
    grid-column: 2;
    justify-self: start;
  }

  .guarantee__card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 36px 28px;
  }

  .price-box {
    padding: 30px 22px;
  }

  .quote {
    padding: 26px 24px;
    font-size: 18px;
  }
}

/* --- Mobile pequeno (≤480px): a faixa de confiança empilha (um item por
   linha, centralizado). Garante que os 3 itens sempre caibam na tela, sem
   quebrar em 2+1 nem deixar espaços em branco, mesmo no menor aparelho. ---- */
@media (max-width: 480px) {
  .trust__list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .trust__item {
    justify-content: center;
  }

  .trust__label {
    font-size: 13px;
  }
}

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA (fade-in suave)
   Só atuam com JS ativo (classe .js no <html>); sem JS, tudo aparece normal.
   ========================================================================== */
.js .section,
.js .stats,
.js .guarantee,
.js .faq,
.js .footer-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.js .section.is-visible,
.js .stats.is-visible,
.js .guarantee.is-visible,
.js .faq.is-visible,
.js .footer-cta.is-visible {
  opacity: 1;
  transform: none;
}

/* Fade-in suave do conteúdo do hero ao carregar */
.js .hero__content {
  animation: hero-in .8s ease both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Respeita quem prefere menos movimento: mantém o fade-in (opacidade),
   mas remove o deslocamento/translação. */
@media (prefers-reduced-motion: reduce) {

  .js .section,
  .js .stats,
  .js .guarantee,
  .js .faq,
  .js .footer-cta {
    transform: none !important;
  }

  .js .hero__content {
    animation: none !important;
  }
}

/* ==========================================================================
   SCROLL SUAVE (Lenis) — CSS exigido pela biblioteca
   ========================================================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
