/* =========================================================
   Imersão Método CASA — landing page
   Paleta e tipografia definidas por Tanandra Hermanns
   ========================================================= */

/* ---- Fontes reais (adicionar arquivos em assets/fonts/ e descomentar) ----
   Quando os arquivos de Century Expanded / Helvetica chegarem, basta
   descomentar este bloco: eles já são o primeiro nome das variáveis
   --font-display e --font-body abaixo, então passam a valer na hora.

@font-face {
  font-family: "Century Expanded";
  src: url("assets/fonts/century-expanded.woff2") format("woff2"),
       url("assets/fonts/century-expanded.otf") format("opentype");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue LT";
  src: url("assets/fonts/helvetica.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
------------------------------------------------------------------------- */

:root {
  /* ---- Paleta base ---- */
  --slate:        #3d4450;
  --slate-deep:   #262b33;
  --slate-soft:   #4a515f;
  --cream:        #ede7e6;
  --cream-soft:   #f6f3f1;
  --gold:         #cda16d;
  --gold-deep:    #b98a54;
  --gold-light:   #e3c191;

  /* ---- Acentos femininos (derivados da paleta / do vinho do figurino) ---- */
  --rose:         #d9a8a2;
  --rose-deep:    #b9827c;
  --wine:         #6e3a48;
  --blush:        #f3e3df;

  /* ---- Tipografia ----
     Century Expanded / Helvetica são os nomes reais; enquanto os arquivos
     não chegam, o fallback é Cormorant Garamond (títulos) e a Helvetica
     nativa do sistema (corpo). Parisienne é só o toque de assinatura. */
  --font-display: "Century Expanded", "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Helvetica Neue LT", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-script: "Parisienne", "Cormorant Garamond", cursive;

  /* ---- Layout ---- */
  --wrap: 1120px;
  --wrap-narrow: 760px;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 40px;
  --radius-pill: 999px;
  --pad-section: clamp(3.75rem, 8vw, 7rem);

  /* ---- Sombras suaves e quentes ---- */
  --shadow-soft: 0 22px 48px -22px rgba(110, 58, 72, .30);
  --shadow-card: 0 16px 40px -20px rgba(61, 68, 80, .35);
  --shadow-gold: 0 16px 34px -12px rgba(185, 138, 84, .45);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--slate-deep);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .6em;
  letter-spacing: .005em;
}

h1 {
  font-size: clamp(1.85rem, 4.7vw, 3.35rem);
  font-weight: 600;
  overflow-wrap: break-word;
}
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 600; }

p { margin: 0 0 1rem; }
em { font-style: italic; }
a { color: inherit; }

/* ---- Foco visível (acessibilidade) ---- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: var(--radius-pill);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Wrappers ---- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 5vw, 2.5rem);
}
.wrap--narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }
.center .checklist,
.center .cta-row { justify-content: center; }

/* ---- Ornamento decorativo (divisor) ---- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 0 0 1.6rem;
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: clamp(38px, 12vw, 64px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { transform: scaleX(-1); }
.ornament > i {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(205, 161, 109, .18);
}

/* =========================================================
   1. TOPBAR
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(38, 43, 51, .86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(205, 161, 109, .22);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  text-decoration: none;
  color: var(--cream);
}
.brand__script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-light);
}
.brand__caps {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  --btn-fg: #2a2118;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: .95rem 1.9rem;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  text-align: center;
  line-height: 1.25;
  max-width: 100%;
  flex-wrap: wrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -12px rgba(185, 138, 84, .58);
  filter: saturate(1.05);
}
.btn:active { transform: translateY(0); }
.btn--sm { padding: .55rem 1.15rem; font-size: .9rem; box-shadow: 0 10px 22px -10px rgba(185, 138, 84, .5); }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.1rem; }
.btn--wpp svg { width: 1.35em; height: 1.35em; flex: none; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}
.cta-row--center { justify-content: center; }
.closing-cta { margin-top: 2.75rem; }
.cta-note {
  font-size: .92rem;
  letter-spacing: .03em;
  color: var(--gold-light);
}
.section--cream .cta-note { color: var(--rose-deep); }

/* =========================================================
   2. HERO
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 90vh, 800px);
  overflow: hidden;
  background: var(--slate-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
/* Degradê escuro: da esquerda (texto) para transparente à direita (foto) */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(30, 34, 41, .97) 0%,
      rgba(30, 34, 41, .90) 34%,
      rgba(30, 34, 41, .62) 56%,
      rgba(30, 34, 41, .18) 80%,
      rgba(30, 34, 41, .02) 100%),
    linear-gradient(180deg, rgba(38, 43, 51, .15), rgba(38, 43, 51, .35));
}
.hero__inner { padding-block: clamp(3rem, 10vh, 6rem); }
.hero__content {
  max-width: 33rem;          /* texto alinhado à esquerda, longe do rosto ao fundo */
  color: var(--cream);
}
.hero__content h1 { color: #fff; }
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--cream);
  max-width: 32em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
}
.eyebrow--lg {
  font-size: clamp(.9rem, 1.7vw, 1.05rem);
  letter-spacing: .16em;
  gap: .8rem;
}
.eyebrow--lg::before { width: 34px; }

@media (max-width: 460px) {
  .brand__caps { letter-spacing: .16em; }
  .brand__script { font-size: 1.4rem; }
}

@media (max-width: 720px) {
  .hero__bg { background-position: 72% 16%; }
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(30, 34, 41, .58) 0%,
        rgba(30, 34, 41, .70) 52%,
        rgba(30, 34, 41, .92) 100%);
  }
  .hero { min-height: 86vh; }
  .hero__content { max-width: 100%; }
}

/* =========================================================
   SEÇÕES — bases de cor + cantos arredondados
   ========================================================= */
.section {
  position: relative;
  padding-block: var(--pad-section);
  margin-top: -34px;                       /* a seção seguinte "abraça" a anterior */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.section:last-of-type { padding-bottom: calc(var(--pad-section) + 34px); }

.section--dark  { background: radial-gradient(130% 90% at 12% 0%, #464d5b 0%, var(--slate) 60%); color: var(--cream); }
.section--deep  { background: radial-gradient(140% 100% at 50% 0%, #30363f 0%, var(--slate-deep) 62%); color: var(--cream); }
.section--cream { background: radial-gradient(120% 85% at 85% 0%, #fcf8f6 0%, var(--cream) 62%); color: var(--slate-deep); }

.section--dark h2, .section--deep h2 { color: #fff; }
.section--dark h3, .section--deep h3 { color: var(--gold-light); }

/* brilho quente sutil no topo de cada seção */
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(38rem 20rem at 82% -12%, rgba(205, 161, 109, .16), transparent 70%);
}
.section--cream::after {
  background: radial-gradient(38rem 20rem at 82% -12%, rgba(217, 168, 162, .28), transparent 70%);
}
.section > .wrap { position: relative; z-index: 1; }

/* filete decorativo sob o primeiro título de cada seção */
.section > .wrap > h2:first-child::after,
.section > .wrap > .bio__text h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), var(--rose));
}
.center > h2::after { margin-inline: auto; }

.section__intro,
.section__footnote {
  max-width: 46em;
  color: inherit;
  opacity: .85;
}
.section__footnote {
  margin-top: 2.75rem;
  font-size: .95rem;
  border-top: 1px solid rgba(205, 161, 109, .28);
  padding-top: 1.4rem;
}
.section__intro { margin-bottom: 2.75rem; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.22rem); }

.placeholder-note {
  font-size: .85rem;
  letter-spacing: .02em;
  opacity: .55;
  font-style: italic;
}

/* =========================================================
   CHECKLIST (ícone de check)
   ========================================================= */
.checklist {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0 0;
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 720px) {
  .checklist { grid-template-columns: 1fr 1fr; gap: 1.2rem 2.75rem; }
  .checklist--center { grid-template-columns: 1fr; max-width: 32em; margin-inline: auto; }
}
.checklist li {
  position: relative;
  padding-left: 2.7rem;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .02em;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 60% no-repeat,
    linear-gradient(135deg, var(--gold) 0%, var(--rose-deep) 100%);
  box-shadow: 0 6px 14px -6px rgba(185, 138, 84, .6);
}
.checklist--center li { text-align: left; }

/* =========================================================
   4. ÍCONE + TEXTO
   ========================================================= */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  color: var(--gold-deep);
  background: radial-gradient(circle at 30% 30%, #fff, var(--blush));
  box-shadow: 0 12px 30px -14px rgba(185, 138, 84, .5), inset 0 0 0 1px rgba(205, 161, 109, .4);
}
.icon-badge svg { width: 1.7rem; height: 1.7rem; }

/* =========================================================
   5. MÉTODO CASA
   ========================================================= */
.casa {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .casa { grid-template-columns: minmax(0, 440px) 1fr; gap: 3.5rem; }
}
.casa__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #1e2229;            /* combina com o fundo do próprio diagrama */
}
.casa__figure img {
  width: 100%;
  height: 100%;
  /* no desktop a figura estica pra mesma altura dos 4 cards; contain evita
     cortar o topo ("CASA") e a base do diagrama */
  object-fit: contain;
  object-position: center;
}
@media (max-width: 899px) {
  .casa__figure img { height: auto; }
}
.casa__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.pilar {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(227, 193, 145, .18), 0 14px 34px -22px rgba(0, 0, 0, .5);
  transition: transform .2s ease;
}
.pilar:hover { transform: translateY(-3px); }
.pilar h3 { margin-bottom: .3rem; }
.pilar p { margin: 0; font-size: .97rem; opacity: .9; }
.pilar__letter {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold-light);
  background: rgba(205, 161, 109, .12);
  box-shadow: inset 0 0 0 1.5px var(--gold);
}
.pilar__date {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .03em;
  color: var(--cream);
  opacity: .72;
  white-space: nowrap;
}
.pilar__date::before {
  content: "·";
  margin: 0 .45rem;
  color: var(--gold);
  opacity: .9;
}
.pilar--foundation {
  background: linear-gradient(125deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  box-shadow: 0 20px 44px -20px rgba(185, 138, 84, .7);
}
.pilar--foundation h3,
.pilar--foundation p { color: var(--slate-deep); opacity: 1; }
.pilar--foundation .pilar__letter {
  background: var(--slate-deep);
  color: var(--gold-light);
  box-shadow: none;
}
.pilar--foundation .pilar__date { color: var(--slate-deep); opacity: .8; }
.pilar--foundation .pilar__date::before { color: var(--slate-deep); }

/* =========================================================
   7. BIO
   ========================================================= */
.bio {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 800px) {
  .bio { grid-template-columns: 280px 1fr; gap: 3.25rem; }
}
.bio__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(217, 168, 162, .45), var(--shadow-card);
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 18%;   /* mantém o rosto dela visível no recorte */
}

/* =========================================================
   8. PROVAS SOCIAIS — carrossel de prints + lightbox
   ========================================================= */
.media-carousel {
  position: relative;
  margin-top: 2.5rem;
}
.carousel__track {
  list-style: none;
  margin: 0;
  padding: .5rem .25rem 1.25rem;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.carousel__track::-webkit-scrollbar { height: 6px; }
.carousel__track::-webkit-scrollbar-track { background: transparent; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }

.carousel__item {
  flex: 0 0 82%;
  scroll-snap-align: center;
}
@media (min-width: 600px) {
  .carousel__item { flex-basis: calc((100% - 1.25rem) / 2); scroll-snap-align: start; }
}
@media (min-width: 980px) {
  .carousel__item { flex-basis: calc((100% - 2.5rem) / 3); }
}

.proof {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}
.proof img {
  width: 100%;
  height: 100%;
  /* prints têm formatos bem diferentes; contain mostra cada um inteiro
     (a leitura completa acontece no lightbox ao clicar) */
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 10px;
}
.proof:hover,
.proof:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px -20px rgba(110, 58, 72, .42);
}
.proof__zoom {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(38, 43, 51, .72);
}
.proof__zoom svg { width: 1.15rem; height: 1.15rem; }

.carousel__nav { display: none; }
@media (min-width: 980px) {
  .carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: #fff;
    color: var(--wine);
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: var(--shadow-soft);
    z-index: 4;
    transition: background-color .2s ease, transform .2s ease;
  }
  .carousel__nav:hover { background: var(--blush); transform: translateY(-50%) scale(1.06); }
  .carousel__nav--prev { left: -1.1rem; }
  .carousel__nav--next { right: -1.1rem; }
}

.carousel__hint {
  text-align: center;
  margin: .4rem 0 .25rem;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--rose-deep);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 2vw, 1.5rem);
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(24, 20, 24, .93);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox__fig {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.lightbox__fig img {
  display: block;
  max-width: min(92vw, 860px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  background: #fff;
  cursor: zoom-in;
}
.lightbox__fig.is-zoomed {
  align-items: flex-start;
  justify-content: flex-start;
}
.lightbox__fig.is-zoomed img {
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}
.lightbox__close {
  position: absolute;
  top: clamp(.75rem, 3vw, 1.5rem);
  right: clamp(.75rem, 3vw, 1.5rem);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .28); }
.lightbox__nav {
  flex: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, .28); }
@media (max-width: 600px) {
  .lightbox__nav {
    position: absolute;
    bottom: 1.1rem;
  }
  .lightbox__nav--prev { left: 1.1rem; }
  .lightbox__nav--next { right: 1.1rem; }
}
body.no-scroll { overflow: hidden; }

/* =========================================================
   9. STEPS (numerado 1-2-3)
   ========================================================= */
.steps {
  list-style: none;
  padding: 0;
  margin: 2.75rem 0 0;
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.steps li { position: relative; }
.steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--slate-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  box-shadow: 0 0 0 7px rgba(217, 168, 162, .22), 0 14px 26px -12px rgba(185, 138, 84, .6);
}
.steps li p { opacity: .88; font-size: .97rem; }

/* =========================================================
   10. INVESTIMENTO
   ========================================================= */
.price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  margin: .5rem 0 .4rem;
}
.price-note {
  font-size: .95rem;
  letter-spacing: .03em;
  color: var(--cream);
  opacity: .8;
  margin-bottom: 2.25rem;
}
.urgency {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  margin: 2.25rem 0 1.9rem;
  font-size: 1.2rem;
}
.section--deep .btn--wpp { margin-top: .5rem; }
.section--deep .cta-note { display: block; margin-top: 1rem; color: var(--gold-light); }

/* =========================================================
   11. FAQ (acordeão nativo)
   ========================================================= */
.faq { margin-top: 2.25rem; display: grid; gap: .9rem; }
.faq details {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .2s ease;
}
.faq details[open] {
  box-shadow: 0 22px 48px -20px rgba(110, 58, 72, .38), inset 0 0 0 1px rgba(205, 161, 109, .35);
}
.faq summary {
  cursor: pointer;
  padding: 1.25rem 2.25rem 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  list-style: none;
  position: relative;
  color: var(--slate-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--rose-deep);
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p {
  margin: 0 0 1.25rem;
  color: var(--slate);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: -34px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--slate-deep);
  color: var(--cream);
  padding: 3rem 0 2.25rem;
  font-size: .9rem;
  opacity: .92;
}
.site-footer p { margin: 0; letter-spacing: .04em; opacity: .8; }
