:root {
  --color-bg: #FAF6F0;
  --color-bg-alt: #E7DCCF;
  --color-text: #3A2E28;
  --color-accent: #C08B6B;
  --color-accent-dark: #A97652;
  --color-muted: #6E5B4E;
  --color-deep: #2A211C;
  --color-deep-text: #F3E8DC;

  /* Cor de ação: exclusiva de CTA. O terracota da marca (#C08B6B) rende
     2,73:1 com o texto off-white — reprova em AA justamente no elemento mais
     importante da página. Este tom escurecido dá 6,22:1 e continua na mesma
     família do logo. Nenhum elemento decorativo usa esta cor. */
  --color-action: #7E5230;
  --color-action-dark: #63401F;

  /* Moldura da página: 1200px de conteúdo + goteira fluida. Tudo — seções e
     o bloco da hero — se alinha a este mesmo eixo. */
  --container: 1200px;
  --gutter: clamp(24px, 5vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Hanken Grotesk', sans-serif;
  overflow-x: hidden;
}

/* `height: auto` é obrigatório junto dos atributos width/height do HTML:
   sem ele o atributo de altura vence, a largura vem do CSS e a foto estica.
   Os atributos ficam porque são eles que reservam a proporção antes do
   download e evitam o pulo de layout. */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

/* ---------- Reveal on scroll (shared, motion-safe by default) ---------- */
/* Content is fully visible by default. The hidden-then-reveal treatment is
   layered on only for users who haven't asked for reduced motion, so a JS
   failure or a reduced-motion preference never hides real content. */

@media (prefers-reduced-motion: no-preference) {
  .reveal,
  .reveal-media,
  .reveal-quote,
  .reveal-scale {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible,
  .reveal-media.is-visible,
  .reveal-quote.is-visible,
  .reveal-scale.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-media {
    transform: scale(0.94);
  }

  .reveal-media.is-visible {
    transform: scale(1);
  }

  .reveal-scale {
    transform: scale(0.92);
  }

  .reveal-scale.is-visible {
    transform: scale(1);
  }
}

/* ---------- Hero ---------- */

/* Altura travada em 100svh (não 100vh) na primeira dobra: svh usa a menor
   altura possível do viewport (com a barra do navegador visível), que é
   exatamente o que a visitante vê antes de rolar. Isso garante que o CTA
   do WhatsApp — a ação mais importante da página — nunca fique cortado
   nessa primeira tela, em qualquer aparelho. */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100svh;
  min-height: 100svh;
  background-color: var(--color-bg);
  overflow: hidden;
}

/* Foto-banner como fundo full-bleed, isolada num pseudo-elemento pra levar
   seu próprio filtro de cor sem desbotar o texto por cima. No mobile usa uma
   composição própria (retrato, com a Paola na metade de cima e uma "zona
   segura" off-white na metade de baixo) — não é o mesmo recorte do banner
   largo do desktop, que não deixa espaço limpo pro texto num formato alto. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-mobile-banner.jpg');
  background-size: cover;
  background-position: center top;
  filter: saturate(0.92) sepia(0.05);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 32px);
  max-width: 620px;
  /* +20px em relação ao encosto anterior: o bloco sobe um pouco dentro da
     zona segura, ganhando respiro entre o CTA e a borda inferior da tela. */
  margin-bottom: clamp(36px, 4svh + 20px, 60px);
  padding: 0 4px;
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* A logo saiu de dentro do JPG do banner e virou elemento próprio. Dentro do
   bitmap ela era escalada pelo `cover` junto com a foto — nunca tinha o mesmo
   tamanho ótico em dois aparelhos. Aqui ela tem largura própria e divide o
   mesmo eixo esquerdo do texto, o que também ancora visualmente a coluna. */
.hero__logo {
  display: block;
  width: clamp(170px, 48vw, 250px);
  height: auto;
  margin: 0 0 clamp(12px, 2.5svh, 28px);
  flex-shrink: 0;
}

.hero__headline {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.625rem, 4vw + 3svh, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--color-text);
  margin: 0 0 clamp(10px, 2svh, 24px);
  position: relative;
  padding-bottom: clamp(10px, 2svh, 24px);
}

.hero__headline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.hero__subheadline {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(0.9375rem, 0.8vw + 1.4svh, 1.125rem);
  line-height: 1.55;
  color: var(--color-text);
  max-width: 34ch;
  margin: 0 0 clamp(12px, 2.5svh, 32px);
}

.hero__cta,
.method__cta,
.final-cta__cta {
  display: inline-block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-bg);
  background-color: var(--color-action);
  padding: 16px 32px;
  min-height: 48px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(126, 82, 48, 0.28);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s ease, box-shadow 0.35s ease;
}

.hero__cta {
  padding-top: clamp(12px, 1.8svh, 16px);
  padding-bottom: clamp(12px, 1.8svh, 16px);
  flex-shrink: 0;
}

.hero__cta:hover,
.method__cta:hover,
.final-cta__cta:hover {
  background-color: var(--color-action-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(126, 82, 48, 0.4);
}

/* Estado pressionado: sem ele o botão "engole" o toque no mobile e a pessoa
   clica duas vezes. */
.hero__cta:active,
.method__cta:active,
.final-cta__cta:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 16px rgba(126, 82, 48, 0.35);
}

.hero__cta:focus-visible,
.method__cta:focus-visible,
.final-cta__cta:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

.hero__microcopy {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: clamp(8px, 1.5svh, 16px) 0 0;
  flex-shrink: 1;
}

/* Em telas baixas o retrato da Paola ocupa mais da metade da altura visível,
   então a "zona segura" pro texto (abaixo dela) fica pequena em pixels.
   Comprime o bloco de texto ainda mais nesse caso específico — senão o
   título sobe e passa por cima da foto. O teto de altura é generoso (não só
   720px) porque a headline de 10/07 ficou bem mais longa: sem isso, celulares
   comuns (iPhone padrão ~844px, etc.) caem no tamanho "cheio" e o texto
   invade a foto mesmo em telas de altura normal.

   O teto de altura foi removido: tablets altos (820x1180) escapavam da regra
   e caíam no tamanho "cheio", em que o bloco fica mais alto que a zona segura
   e sobe por cima do retrato. Abaixo de 1024px a composição é sempre o
   retrato, então a compressão vale para toda a faixa. */
@media (max-width: 1023px) {
  .hero__logo {
    width: clamp(150px, 40vw, 200px);
    margin-bottom: 10px;
  }

  .hero__headline {
    font-size: clamp(1.375rem, 6vw, 1.875rem);
    line-height: 1.15;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  /* 13px era confortável no Figma e ilegível no celular ao sol. 16px é o
     piso de corpo de texto no mobile. */
  .hero__subheadline {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  /* Alvo de toque de 48px de altura mesmo na versão comprimida. */
  .hero__cta {
    font-size: 1rem;
    padding: 12px 24px;
    min-height: 48px;
  }

  .hero__microcopy {
    display: none;
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content {
    animation: none;
  }
}

@media (min-width: 1024px) {
  .hero {
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: 80vh;
  }

  .hero::before {
    background-image: url('assets/images/hero-full-banner.jpg');
    background-position: 78% center;
  }

  /* A hero é full-bleed, mas o texto se alinha à mesma moldura de 1200px do
     resto da página: em telas até ~1300px vale a goteira; acima disso o bloco
     trava no eixo esquerdo do container em vez de continuar escorregando pra
     direita junto com a viewport. Substitui os 80px fixos, que em 1280px liam
     como margem e em 2500px viravam 3% da tela. */
  .hero__content {
    width: auto;
    max-width: clamp(480px, 40vw, 620px);
    margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
    margin-bottom: 0;
    padding: 0;
  }

  .hero__logo {
    width: clamp(220px, 17vw, 320px);
    margin-bottom: clamp(20px, 2vw, 36px);
  }

  .hero__headline {
    font-size: clamp(2.25rem, 2.7vw, 3.5rem);
  }

  /* O parágrafo carrega a informação real da oferta (6 semanas, psicóloga,
     10 anos) — travado em 18px ao lado de uma headline de 72px ele lia como
     legenda. Sobe junto, mantendo o contraste em torno de 3:1. */
  .hero__subheadline {
    font-size: clamp(1rem, 0.9vw, 1.1875rem);
    line-height: 1.6;
    max-width: 46ch;
  }
}

/* ---------- Shared section title ---------- */

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.25;
}

/* ---------- Seção 2: Espelho (dor) ---------- */
/* Cada linha ganha mais peso/tamanho que a anterior — a leitora "ouve" o
   próprio pensamento ficando mais pesado até o medo não dito, depois o
   respiro da resposta. */

.mirror {
  background-color: var(--color-bg-alt);
  padding: 96px var(--gutter);
}

@media (min-width: 1024px) {
  .mirror {
    padding: 112px var(--gutter);
  }
}

.mirror__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.mirror__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.3;
  color: var(--color-muted);
  margin: 0 0 48px;
}

.mirror__line {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 20px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (prefers-reduced-motion: no-preference) {
  .mirror__line {
    opacity: 0;
    transform: translateY(10px);
  }

  .mirror__line.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.mirror__line--2 {
  font-size: 1.125rem;
  color: var(--color-text);
}

.mirror__line--3 {
  font-size: 1.1875rem;
  color: var(--color-text);
}

.mirror__line--4 {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}

.mirror__line--5 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  color: var(--color-text);
  line-height: 1.4;
  margin: 32px 0 40px;
}

.mirror__close {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(58, 46, 40, 0.15);
}

/* ---------- Seção 3: Por que não funcionou ---------- */
/* Único painel "invertido" da página — o momento de maior contraste, usado
   uma vez só, pra dar peso ao gancho racional (6/6/6). */

.no-worked {
  position: relative;
  background-color: var(--color-deep);
  color: var(--color-deep-text);
  padding: 96px var(--gutter);
}

@media (min-width: 1024px) {
  .no-worked {
    padding: 112px var(--gutter);
  }
}

/* Presença fotográfica sutil da Paola ao fundo — único uso de "profundidade
   fotográfica" da página, reservado pro momento de maior contraste (seção
   invertida do 6/6/6), não repetido em nenhuma outra seção. */
.no-worked::before {
  content: '';
  position: absolute;
  inset: 0;
  right: auto;
  width: min(30vw, 760px);
  background-image: url('assets/images/authority-paola.jpg');
  background-size: cover;
  background-position: center 12%;
  filter: grayscale(1) brightness(0.5) contrast(1.05);
  opacity: 0.16;
  mask-image: linear-gradient(to right, black 10%, transparent 70%);
  -webkit-mask-image: linear-gradient(to right, black 10%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 640px) {
  .no-worked::before {
    width: min(58vw, 760px);
    opacity: 0.24;
    mask-image: linear-gradient(to right, black 15%, transparent 78%);
    -webkit-mask-image: linear-gradient(to right, black 15%, transparent 78%);
  }
}

.no-worked__edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  transform: translateY(calc(-100% + 1px));
  fill: var(--color-deep);
  pointer-events: none;
}

.no-worked__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .no-worked__inner {
    max-width: 820px;
  }
}

.no-worked__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2.125rem);
  line-height: 1.3;
  color: var(--color-deep-text);
  margin: 0 0 32px;
}

.no-worked__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(243, 232, 220, 0.8);
  margin: 0 0 24px;
}

.no-worked__lead {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--color-deep-text);
  margin: 0 0 40px;
}

.no-worked__close {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3125rem;
  color: var(--color-deep-text);
  margin: 40px 0 0;
}

.stats {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 0 40px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats__item--1 {
  transform: rotate(-1deg);
}

.stats__item--2 {
  transform: translateY(-10px);
}

.stats__item--3 {
  transform: rotate(1deg);
}

.stats__number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 16vw, 5.5rem);
  line-height: 1;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}

.stats__label {
  font-size: 1rem;
  color: rgba(243, 232, 220, 0.75);
  margin-top: 8px;
}

@media (min-width: 640px) {
  .stats {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 72px;
  }
}

/* ---------- Seção 4: Método ---------- */

.method {
  background-color: var(--color-bg-alt);
  padding: 96px var(--gutter);
}

@media (min-width: 1024px) {
  .method {
    padding: 112px var(--gutter);
  }
}

.method__inner {
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .method__inner {
    max-width: 1200px;
  }
}

.method__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 64px;
}

.method__list {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.method__pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 8px;
  align-items: start;
}

/* Assim como o `.reveal` compartilhado: visível por padrão, o estado oculto
   só existe pra quem não pediu prefers-reduced-motion — sem isso, o pilar
   ficava opacity:0 permanente pra qualquer render sem o scroll real que
   dispara o IntersectionObserver (headless, motion reduzido, JS falho). */
@media (prefers-reduced-motion: no-preference) {
  .method__pillar {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .method__pillar.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.method__eyebrow {
  grid-column: 2;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.method__index {
  grid-row: 1 / span 4;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1;
  /* Era terracota a 50% (2,17:1) — recessivo demais para texto de 72px, que
     em AA precisa de 3:1. Marrom neutro a 75% dá exatamente 3:1 e mantém o
     número como camada de fundo, sem competir com o título do pilar. */
  color: var(--color-muted);
  opacity: 0.75;
  margin-right: -8px;
}

.method__pillar-title {
  grid-column: 2;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 0;
}

.method__rule {
  grid-column: 2;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 4px 0;
  transform-origin: left;
  transition: width 0.5s ease-out 0.2s;
}

.method__pillar.is-visible .method__rule {
  width: 56px;
}

.method__pillar-text {
  grid-column: 2;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

@media (min-width: 640px) {
  .method__pillar:nth-child(even) {
    grid-template-columns: 1fr auto;
    text-align: right;
  }

  .method__pillar:nth-child(even) .method__eyebrow,
  .method__pillar:nth-child(even) .method__pillar-title,
  .method__pillar:nth-child(even) .method__rule,
  .method__pillar:nth-child(even) .method__pillar-text {
    grid-column: 1;
  }

  .method__pillar:nth-child(even) .method__index {
    grid-column: 2;
    text-align: right;
    margin-right: 0;
    margin-left: -8px;
  }

  .method__pillar:nth-child(even) .method__rule {
    margin-left: auto;
    transform-origin: right;
  }
}

/* A partir de 1024px o container ganha 1200px (ver design-system/REFERENCE.md,
   métrica de grid da referência) — a lista de semanas passa de coluna única
   pra grade de 2 colunas pra ocupar essa largura, mantendo o zigue-zague
   esquerda/direita que já existe (ímpar cai na col. 1, par na col. 2). */
@media (min-width: 1024px) {
  .method__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 72px;
    row-gap: 64px;
  }
}

.method__pillar:hover .method__index {
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.method__included {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 32px;
}

.method__cta {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* ---------- Seção 5: Autoridade ---------- */

.authority {
  background-color: var(--color-bg);
  padding: 96px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.authority__media {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.authority__image {
  width: 100%;
  border-radius: 20px;
  filter: saturate(0.9) sepia(0.08);
}

.authority__badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(58, 46, 40, 0.18);
}

.authority__badge strong {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--color-text);
}

.authority__content {
  max-width: 640px;
  margin: 0 auto;
}

.authority__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 5vw, 2.375rem);
  color: var(--color-text);
  text-align: center;
  margin: 0 0 32px;
}

.authority__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 20px;
}

@media (min-width: 1024px) {
  .authority {
    flex-direction: row;
    align-items: center;
    gap: 96px;
    padding: 112px var(--gutter);
    max-width: 1200px;
    margin: 0 auto;
  }

  .authority__media {
    max-width: 380px;
    flex-shrink: 0;
  }

  .authority__content {
    text-align: left;
  }

  .authority__title {
    text-align: left;
  }
}

/* ---------- Seção 6: Prova social ---------- */

.social-proof {
  background-color: var(--color-bg-alt);
  padding: 96px var(--gutter);
}

@media (min-width: 1024px) {
  .social-proof {
    padding: 112px var(--gutter);
  }
}

.social-proof__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.social-proof__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 5vw, 2.375rem);
  color: var(--color-text);
  margin: 0 0 24px;
}

.testimonial {
  position: relative;
  margin: 0 0 24px;
  padding-top: 24px;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.35;
}

.testimonial__quote {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.375rem, 4.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 16px;
}

.testimonial__cite {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-size: 1rem;
  color: var(--color-muted);
}

.social-proof__note {
  font-size: 0.9375rem;
  color: var(--color-muted);
  font-style: italic;
}

/* ---------- Seção 7: Objeção final ---------- */

.final-objection {
  background-color: var(--color-bg);
  padding: 96px var(--gutter);
}

.final-objection__inner {
  max-width: 900px;
  margin: 0 auto;
}

.final-objection__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.625rem, 5vw, 2.25rem);
  line-height: 1.3;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 40px;
}

.final-objection__response {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.final-objection__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 24px;
}

@media (min-width: 1024px) {
  .final-objection {
    padding: 112px var(--gutter);
  }

  .final-objection__inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 64px;
    align-items: center;
    text-align: left;
    max-width: 1200px;
  }

  .final-objection__title {
    text-align: left;
    margin: 0;
  }

  .final-objection__response {
    text-align: left;
    max-width: none;
  }
}

/* ---------- Seção 8: CTA final ---------- */

.final-cta {
  background-color: var(--color-bg-alt);
  padding: 96px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.final-cta__media {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.final-cta__image {
  width: 100%;
  border-radius: 20px;
  filter: saturate(0.85) sepia(0.12);
}

.final-cta__content {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.final-cta__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  color: var(--color-text);
  text-align: center;
  margin: 0 0 24px;
}

.final-cta__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 32px;
}

.final-cta__cta {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.final-cta__microcopy {
  font-size: 0.9375rem;
  color: var(--color-muted);
  text-align: center;
  margin: 24px 0 0;
}

@media (min-width: 1024px) {
  .final-cta {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 96px;
    padding: 112px var(--gutter);
    max-width: 1200px;
    margin: 0 auto;
  }

  .final-cta__media {
    flex-shrink: 0;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background-color: var(--color-deep);
  padding: 28px var(--gutter);
  text-align: center;
}

.site-footer p {
  font-size: 0.875rem;
  color: rgba(243, 232, 220, 0.75);
  margin: 0;
}
