/* =========================================================
   Landing Page Tainah — Ebook "Parece Caro"
   Paleta editorial espresso/cobre + arquitetura de blocos
   (estilo Fashion Agency: hero cheio, galeria, split)
   ========================================================= */

:root {
  /* ===== Cores ===== */
  --color-espresso: #15120F;
  --color-coffee: #2B211C;
  --color-taupe-dark: #3A302A;
  --color-paper: #F7F2EC;
  --color-ivory: #FFFCF7;
  --color-nude: #E6D2C3;
  --color-nude-line: #D8C4B6;
  --color-copper: #B67D56;
  --color-caramel: #D8A77C;
  --color-text: #130F0C;
  --color-text-soft: #7E6252;
  --color-text-light: #F8F1EA;

  /* ===== Degradês ===== */
  --gradient-hero: linear-gradient(180deg, #2B211C 0%, #15120F 58%, #0F0D0B 100%);
  --gradient-editorial: radial-gradient(circle at 20% 0%, rgba(182, 125, 86, 0.16) 0%, rgba(21, 18, 15, 0) 34%),
                        linear-gradient(180deg, #1B1713 0%, #15120F 100%);
  --gradient-cta: linear-gradient(135deg, #A96E48 0%, #D8A77C 48%, #B67D56 100%);
  --gradient-paper: linear-gradient(180deg, #FFFCF7 0%, #F7F2EC 100%);
  --gradient-nude: linear-gradient(135deg, #EAD9CE 0%, #E6D2C3 55%, #D8C4B6 100%);
  --gradient-line: linear-gradient(90deg, #B67D56 0%, #D8A77C 100%);

  /* ===== Fontes ===== */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Baskerville', Georgia, serif;
  --font-ui: 'Montserrat', Arial, sans-serif;
  --font-script: 'Great Vibes', 'Cormorant Garamond', cursive;

  /* ===== Layout ===== */
  --radius: 8px;
  --radius-sm: 4px;
  --border-editorial: 1px solid var(--color-nude-line);
  --shadow-soft: 0 18px 50px rgba(21, 18, 15, 0.08);
  --shadow-deep: 0 30px 80px rgba(15, 13, 11, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Respiro lateral do palco de scroll (grid de looks) */
  --gutter: clamp(20px, 5vw, 60px);

  /* Grão sutil (textura de filme) reutilizável nas camadas de atmosfera */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--gradient-paper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  /* `clip` no lugar de `hidden`: contém o excesso horizontal sem criar um
     contêiner de rolagem — é o que mantém o `position: sticky` do palco
     de scroll funcionando. `hidden` fica como fallback para navegadores antigos. */
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0; line-height: 1.05; }

/* ===== UTILITÁRIOS ===== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 60px); }
.container--narrow { max-width: 860px; }
.center { text-align: center; }

.ink { color: var(--color-copper); font-style: italic; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 1.3rem;
}

.script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.9;
  color: var(--color-caramel);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  color: var(--color-text);
}
.section-title--light { color: var(--color-text-light); }

.lead {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--color-text-soft);
  max-width: 660px;
  margin: 1.4rem auto 0;
}
.dark .lead { color: rgba(248, 241, 234, 0.72); }

/* ===== DIVISOR DECORATIVO (linha + losango) ===== */
.divider { display: flex; align-items: center; gap: 16px; margin: 1.8rem 0; }
.divider.center-x { justify-content: center; }
.divider span {
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-caramel);
  opacity: 0.7;
  transition: width 0.9s var(--ease) 0.2s;
}
.divider .diamond {
  width: 9px; height: 9px;
  background: var(--color-copper);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.divider--ink span { background: var(--color-copper); }
/* estado revelado -> linhas expandem */
.reveal .divider span,
.divider.center-x span { width: 0; }
.is-visible .divider span,
.divider.is-lit span { width: 72px; }

/* ===== BOTÕES ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  line-height: 1;
  padding: 1.15rem 2.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn--lg { padding: 1.3rem 3rem; font-size: 0.76rem; }
.btn--block { width: 100%; }

.btn--cta, .btn--primary {
  color: var(--color-text-light);
  background: var(--gradient-cta);
  box-shadow: 0 12px 30px rgba(182, 125, 86, 0.28);
}
.btn--cta:hover, .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(182, 125, 86, 0.42);
}

/* Contorno com preenchimento animado (flow do doc de referência) */
.btn--outline-light { color: var(--color-text-light); border-color: rgba(248, 241, 234, 0.55); background: transparent; }
.btn--outline-light:hover { background: var(--color-text-light); color: var(--color-espresso); border-color: var(--color-text-light); transform: translateY(-3px); }

.btn--outline-dark { color: var(--color-text); border-color: var(--color-text); background: transparent; }
.btn--outline-dark:hover { background: var(--color-text); color: var(--color-text-light); transform: translateY(-3px); }

.btn--instagram {
  color: var(--color-text-light);
  border-color: rgba(248, 241, 234, 0.5);
  background: rgba(248, 241, 234, 0.08);
  backdrop-filter: blur(8px);
}
.btn--instagram:hover {
  color: var(--color-espresso);
  background: var(--color-text-light);
  border-color: var(--color-text-light);
  transform: translateY(-3px);
}

/* ===== PLACEHOLDER DE IMAGEM (trocar por background-image) ===== */
.img-ph {
  position: relative;
  background:
    linear-gradient(180deg, rgba(21, 18, 15, 0.08) 0%, rgba(21, 18, 15, 0.5) 100%),
    var(--gradient-nude);
  background-size: cover;
  background-position: center;
}
.img-ph::after {
  content: 'IMAGEM';
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--color-text-light);
  opacity: 0.7;
}

/* ===== MARCA E LINKS SOCIAIS ===== */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.logo { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; letter-spacing: 0.04em; color: var(--color-text-light); }
.logo span { color: var(--color-copper); }
.logo--light { color: var(--color-text-light); }
.icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 241, 234, 0.72);
  transition: color 0.3s, transform 0.3s, border-color 0.3s, background 0.3s;
}
.social-link strong { color: var(--color-caramel); font-weight: 700; }
.social-link:hover { color: var(--color-caramel); transform: translateY(-2px); }
.social-link--center { justify-content: center; margin: 1.5rem auto 0; }
.social-link--footer {
  margin-top: 0;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(216, 167, 124, 0.35);
  border-radius: var(--radius);
  background: rgba(248, 241, 234, 0.04);
}
.social-link--footer:hover {
  border-color: var(--color-caramel);
  background: rgba(216, 167, 124, 0.08);
}

/* ===== 1. HERO (100vh, imagem de fundo) + PALCO DE SCROLL ===== */
/* Envolve hero e reveal num único bloco escuro contínuo:
   a foto da hero "solta" da tela e encolhe até virar o look central. */
.hero-stage {
  position: relative;
  background: #0F0D0B;
  overflow: clip;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: var(--color-text-light);
  overflow: hidden;
  /* espaço para a banda marquee ancorada no rodapé */
  padding-bottom: 62px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  height: 100%;
  background:
    radial-gradient(circle at 72% 22%, rgba(216, 167, 124, 0.28) 0%, rgba(182, 125, 86, 0.12) 34%, transparent 62%),
    linear-gradient(90deg, rgba(15, 13, 11, 0.42) 0%, rgba(21, 18, 15, 0.14) 46%, rgba(15, 13, 11, 0.24) 100%),
    linear-gradient(180deg, rgba(43, 33, 28, 0.18) 0%, rgba(21, 18, 15, 0.24) 55%, rgba(15, 13, 11, 0.48) 100%),
    url('./tainah%20hero.png'),
    var(--gradient-hero);
  background-size: cover;
  background-position: center, center, center, 62% center, center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 13, 11, 0.12) 0%, rgba(15, 13, 11, 0.36) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 60px); }
.hero .script { margin-bottom: 0.4rem; opacity: 0.95; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.06em;
  line-height: 0.98;
}
.hero .divider { justify-content: flex-start; margin: 1.6rem 0 1.8rem; }
.hero .divider span { background: var(--color-text-light); opacity: 0.6; }
.hero__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.14rem;
  line-height: 1.7;
  color: rgba(248, 241, 234, 0.86);
  max-width: 540px;
  margin: 0 0 2.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start; }

/* ===== BANDA MARQUEE (deslize contínuo e fluido) =====
   Ancorada no rodapé da hero: fecha o primeiro quadro e entrega o scroll
   direto ao palco escuro do reveal, sem cortar a composição. */
.trust-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(15, 13, 11, 0) 0%, rgba(15, 13, 11, 0.72) 46%, rgba(15, 13, 11, 0.94) 100%);
  border-top: 1px solid rgba(216, 167, 124, 0.16);
  min-height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.trust-bar__viewport {
  width: 100%;
  overflow: hidden;
  /* Esmaece suavemente as bordas para as frases "surgirem" e "sumirem" */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.trust-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trustMarquee 42s linear infinite;
  will-change: transform;
}
.trust-bar { cursor: default; }
.trust-bar:hover .trust-bar__track { animation-play-state: paused; }
.trust-bar__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 2.4rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(248, 241, 234, 0.78);
  white-space: nowrap;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.trust-bar__item::before { content: '✦'; color: var(--color-copper); margin-right: 1.4rem; font-size: 0.68rem; opacity: 0.9; transition: transform 0.4s var(--ease); }
/* Ao pausar (hover), os itens escurecem e o item sob o cursor brilha */
.trust-bar:hover .trust-bar__item { color: rgba(248, 241, 234, 0.45); }
.trust-bar__item:hover { color: var(--color-caramel); transform: scale(1.06); }
.trust-bar__item:hover::before { transform: rotate(90deg) scale(1.2); }
/* Move exatamente uma cópia do conjunto -> loop perfeitamente contínuo */
@keyframes trustMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Tooltip que segue o cursor sobre o marquee ===== */
.marquee-tip {
  position: fixed;
  z-index: 99;
  pointer-events: none;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--gradient-cta);
  color: var(--color-text-light);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(182, 125, 86, 0.45);
  opacity: 0;
  transform: translate(-50%, -150%) rotate(0deg);
  transition: opacity 0.3s var(--ease);
}
.marquee-tip.is-visible { opacity: 1; }

/* =========================================================
   REVEAL DE SCROLL (hero → carrossel de looks)
   Seção alta + palco sticky: a foto da hero começa ocupando a
   tela inteira, encolhe até o tamanho do card central e some,
   entregando o carrossel de looks já montado no lugar dela.
   Progresso controlado no script.js.
   ========================================================= */
.scroll-reveal {
  position: relative;
  min-height: 260vh;   /* espaço de rolagem para a animação respirar */
}
.scroll-reveal__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;      /* evita o salto da barra de endereço no mobile */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Conteúdo que a foto revela: título + carrossel */
.stage-content {
  width: 100%;
  opacity: 0;
  transform: scale(0.92);
  will-change: transform, opacity;
}
.stage-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stage-head .section-title { font-size: clamp(2rem, 4.2vw, 3.2rem); }

/* A foto da hero por cima do palco, encolhendo até o card central */
.scroll-reveal .scaler {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  pointer-events: none;
}
.scroll-reveal .scaler img {
  display: block;
  /* o JS mede em px e chega a ocupar a tela inteira: a trava global
     `img { max-width: 100% }` não pode valer aqui */
  max-width: none;
  object-fit: cover;
  object-position: 62% center;   /* mesmo enquadramento do fundo da hero */
  will-change: width, height, opacity;
}

@media (max-width: 700px) {
  .scroll-reveal { min-height: 220vh; }
}

/* Sem animação: entrega direto o carrossel, sem a foto por cima */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { min-height: 100vh; }
  .stage-content { opacity: 1; transform: none; }
  .scroll-reveal .scaler { display: none; }
}

/* ===== CARROSSEL DE LOOKS (center mode · loop · arraste) ===== */
.looks-carousel { position: relative; margin-top: clamp(24px, 4vh, 56px); }
.looks-viewport {
  overflow: hidden;
  padding: 22px 0 30px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  /* esmaece as laterais para reforçar o foco na peça central */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.looks-viewport.is-dragging { cursor: grabbing; }
.looks-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.look-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(190px, 20vw, 250px);
  aspect-ratio: 350 / 600;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 196, 182, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transform-origin: center center;
}
.look-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.look-card figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-bottom: 30px;
  color: var(--color-text-light);
  background: linear-gradient(180deg, rgba(21, 18, 15, 0) 40%, rgba(21, 18, 15, 0.74) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.look-card.is-active figcaption { opacity: 1; }
.look-card figcaption span { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.look-card figcaption em { font-family: var(--font-ui); font-style: normal; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-caramel); margin-top: 0.5rem; }
@media (max-width: 640px) {
  .look-card { width: clamp(170px, 52vw, 230px); }
  .looks-viewport { padding: 16px 0 24px; }
}

/* ===== SEÇÕES BASE ===== */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.light { background: var(--gradient-paper); }
.dark { background: var(--gradient-editorial); color: var(--color-text-light); }
.dark .section-title { color: var(--color-text-light); }
.dark .eyebrow { color: var(--color-caramel); }
.section .center { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ===== 2. INTRO / PROBLEMA ===== */
.intro { background: var(--gradient-paper); }
.pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 70px; }
.pain { text-align: center; padding: 40px 28px; background: var(--color-ivory); border: var(--border-editorial); border-radius: var(--radius); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.pain:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--color-copper); }
.pain__ico { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%; background: var(--gradient-nude); border: var(--border-editorial); margin-bottom: 1.1rem; transition: background 0.4s var(--ease), border-color 0.4s var(--ease); }
.pain__svg { width: 26px; height: 26px; fill: none; stroke: var(--color-copper); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s var(--ease); }
.pain:hover .pain__ico { background: var(--gradient-cta); border-color: transparent; }
.pain:hover .pain__svg { stroke: var(--color-text-light); }
.pain h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pain p { color: var(--color-text-soft); font-size: 0.98rem; }

/* ===== 3. SERVIÇOS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 70px; }
.card { padding: 48px 36px; background: var(--color-ivory); border: var(--border-editorial); border-radius: var(--radius); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: var(--color-copper); }
.card__num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--color-copper); display: block; margin-bottom: 0.8rem; line-height: 1; }
.card h3 { font-size: 1.55rem; margin-bottom: 0.7rem; }
.card p { color: var(--color-text-soft); font-size: 0.98rem; }

/* ===== 4. GALERIA ===== */
.gallery { background: var(--color-paper); }
.grid-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 70px; }
.g-item { position: relative; overflow: hidden; margin: 0; cursor: pointer; border-radius: var(--radius); border: var(--border-editorial); }
.g-img { height: 420px; background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 0.8s var(--ease); }
.g-item:hover .g-img { transform: scale(1.08); }
.g-item figcaption { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--color-text-light); background: linear-gradient(180deg, rgba(21, 18, 15, 0.1) 0%, rgba(21, 18, 15, 0.62) 100%); opacity: 0; transition: opacity 0.45s var(--ease); }
.g-item:hover figcaption { opacity: 1; }
.g-item figcaption span { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; transform: translateY(12px); transition: transform 0.45s var(--ease); }
.g-item figcaption em { font-family: var(--font-ui); font-style: normal; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-caramel); margin-top: 0.6rem; transform: translateY(12px); transition: transform 0.45s var(--ease) 0.05s; }
.g-item:hover figcaption span, .g-item:hover figcaption em { transform: translateY(0); }

/* ===== SPLIT (imagem + texto) ===== */
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split-inner--reverse .split-img { order: 2; }
.split-text .eyebrow { margin-bottom: 1.3rem; }
.split-text .section-title { margin-bottom: 1.6rem; }
.split-p { color: var(--color-text-soft); margin-bottom: 1.1rem; font-size: 1.02rem; }
.dark .split-p { color: rgba(248, 241, 234, 0.76); }
.split-img { position: relative; }
.split-img .ph { border-radius: var(--radius); box-shadow: var(--shadow-deep); border: 1px solid rgba(216, 196, 182, 0.3); }
.img-ph--tall { aspect-ratio: 3 / 4; }
.curadora-photo {
  background:
    linear-gradient(180deg, rgba(21, 18, 15, 0.02) 0%, rgba(21, 18, 15, 0.18) 100%),
    url('./tainah%20bloco.jpg');
  background-size: cover;
  background-position: center top;
}
.curadora-photo::after { display: none; }
.split-tag { position: absolute; bottom: -20px; left: -16px; background: var(--gradient-nude); color: var(--color-text); font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.05rem; padding: 16px 26px; border: var(--border-editorial); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split-tag--script { font-family: var(--font-script); font-style: normal; font-size: 2rem; padding: 8px 28px; color: var(--color-copper); }
.split-inner--reverse .split-tag { left: auto; right: -16px; }

/* Deliverables (dentro do split "O que você recebe") */
.deliverables { display: flex; flex-direction: column; gap: 1.6rem; margin: 2rem 0 2.4rem; }
.deliverable { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: flex-start; }
.deliverable__ico { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); background: var(--gradient-nude); border: var(--border-editorial); font-size: 1.3rem; }
.deliverable h3 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.deliverable p { color: var(--color-text-soft); font-size: 0.96rem; }

/* Credenciais (bio) */
.credentials { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.credentials li { display: flex; align-items: center; gap: 16px; font-family: var(--font-ui); font-size: 0.84rem; letter-spacing: 0.04em; color: var(--color-text-light); }
.credentials li::before { content: ''; width: 28px; height: 2px; background: var(--gradient-line); flex-shrink: 0; }


/* ===== 8. PARA QUEM É ===== */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 64px; }
.check-card { display: flex; gap: 20px; align-items: center; padding: 32px 30px; background: var(--color-ivory); border: var(--border-editorial); border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.check-card:hover { transform: translateY(-4px); border-color: var(--color-copper); }
.check-card p { font-family: var(--font-body); font-size: 1.02rem; color: var(--color-text); }
.check { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-cta); color: var(--color-text-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }

/* ===== 10. OFERTA / PREÇO ===== */
.offer .center { margin-bottom: 52px; }
.price-card {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  background: var(--color-ivory);
  border: var(--border-editorial);
  border-radius: 16px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 44px 96px rgba(15, 13, 11, 0.52); }
/* Fio de luz cobre no topo do card */
.price-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient-line);
  z-index: 4;
}

/* ===== Selo "Mais escolhido" ===== */
.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gradient-cta);
  color: var(--color-text-light);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.53rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(182, 125, 86, 0.45), inset 0 1px 0 rgba(255, 252, 247, 0.35);
  overflow: hidden;
  animation: badgeFloat 3.6s var(--ease) infinite;
}
.price-badge::before { content: '★'; font-size: 0.68rem; letter-spacing: 0; line-height: 1; }
/* Brilho que varre o selo periodicamente */
.price-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 252, 247, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: badgeShine 3.6s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes badgeShine {
  0%, 55% { left: -60%; }
  100% { left: 135%; }
}

.price-top {
  position: relative;
  background: var(--gradient-hero);
  color: var(--color-text-light);
  padding: 54px 48px 44px;
  text-align: center;
  overflow: hidden;
}
/* Brilho radial suave atrás do título */
.price-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(216, 167, 124, 0.3) 0%, transparent 62%);
  pointer-events: none;
}
.price-top > * { position: relative; z-index: 1; }
.price-top h3 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 0.4rem; }
.price-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--color-caramel); }
.price-body { padding: 44px clamp(28px, 5vw, 48px); }
.price-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; margin-bottom: 2.4rem; }
.price-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 0.95rem; color: var(--color-text); }
.price-item::before { content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--gradient-cta); color: var(--color-text-light); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-size: 0.64rem; font-weight: 700; }
.price-divider { width: 64px; height: 2px; background: var(--gradient-line); margin: 0 auto 2rem; }
.price-note { text-align: center; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-text-soft); margin-bottom: 0.5rem; }

/* Gancho de desconto: preço antigo riscado + selo de % */
.price-was { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 0.5rem; }
.price-was__old { font-family: var(--font-body); font-size: 1rem; color: var(--color-text-soft); }
.price-was__old s { text-decoration-color: var(--color-copper); text-decoration-thickness: 2px; }
.price-was__off {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: var(--gradient-cta);
  padding: 5px 11px;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(182, 125, 86, 0.4);
}
.price-value {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.6rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(158deg, var(--color-espresso) 8%, var(--color-copper) 118%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.price-value sup { font-size: 0.34em; vertical-align: super; color: var(--color-copper); -webkit-text-fill-color: var(--color-copper); font-weight: 600; }
.price-installment { text-align: center; font-family: var(--font-body); font-size: 0.96rem; color: var(--color-text-soft); margin-bottom: 2rem; }
.price-security { text-align: center; margin-top: 1.1rem; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--color-text-soft); }

/* ===== Formas de pagamento (faixa no fundo do card) ===== */
.price-pay { margin-top: 1.4rem; text-align: center; }
.price-pay__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  opacity: 0.7;
  margin-bottom: 0.7rem;
}
.price-pay__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 30px;
  padding: 0 11px;
  background: var(--color-ivory);
  border: 1px solid var(--color-nude-line);
  border-radius: 6px;
  color: var(--color-text-soft);
  box-shadow: 0 2px 6px rgba(21, 18, 15, 0.05);
}
.pay__mark { height: 15px; width: auto; display: block; }
.pay__mark--barcode { height: 16px; }
.pay__cap {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pay--text span {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-text-soft);
}
.pay--text em { font-style: italic; opacity: 0.65; }

/* Garantia incorporada ao card de valores */
.price-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1.8rem;
  padding: 16px 20px;
  background: var(--gradient-nude);
  border: var(--border-editorial);
  border-radius: 12px;
  text-align: left;
}
.price-guarantee__seal { width: 82px; height: auto; flex-shrink: 0; filter: drop-shadow(0 6px 14px rgba(15, 13, 11, 0.22)); }
.price-guarantee__text strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--color-text); margin-bottom: 0.15rem; }
.price-guarantee__text p { font-family: var(--font-body); font-size: 0.85rem; line-height: 1.55; color: var(--color-text-soft); }
@media (max-width: 440px) {
  .price-guarantee { flex-direction: column; text-align: center; gap: 12px; }
}

/* ===== 11. GARANTIA ===== */
.guarantee__inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 140px 1fr; gap: 48px; align-items: center; background: var(--gradient-nude); border: var(--border-editorial); border-radius: var(--radius); padding: 48px 56px; }
.guarantee__seal { width: 140px; height: 140px; border-radius: 50%; background: var(--gradient-hero); color: var(--color-text-light); display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--color-copper); }
.guarantee__days { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; }
.guarantee__days-label { font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-caramel); }
.guarantee__title { font-size: 1.9rem; margin-bottom: 0.6rem; }
.guarantee__text { color: var(--color-text-soft); font-size: 1.02rem; }
.guarantee__text strong { color: var(--color-text); }

/* ===== 12. FAQ ===== */
.accordion { max-width: 860px; margin: 60px auto 0; display: flex; flex-direction: column; }
.accordion__item { border-bottom: var(--border-editorial); }
.accordion__head { width: 100%; background: none; border: none; text-align: left; padding: 28px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: var(--color-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.accordion__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--color-ivory); border: var(--border-editorial); color: var(--color-copper); display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-size: 1.3rem; transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s; }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion__body p { color: var(--color-text-soft); font-size: 1rem; padding-bottom: 26px; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); background: var(--gradient-cta); color: var(--color-text-light); border-color: transparent; }

/* ===== 13. CTA FINAL ===== */
.final-cta { position: relative; overflow: hidden; }
.final-cta__glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(182, 125, 86, 0.3) 0%, transparent 58%); pointer-events: none; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta .script { margin-bottom: 0.4rem; }
.final-cta .divider { margin-top: 1.6rem; margin-bottom: 1.6rem; }
.final-cta .lead { margin-bottom: clamp(2.2rem, 4vw, 3rem); }
.final-cta .btn { margin-top: 0.25rem; }

/* ===== FOOTER ===== */
.footer { background: var(--color-espresso); padding: 64px 0 36px; border-top: 1px solid var(--color-taupe-dark); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.footer .logo { font-size: 2rem; letter-spacing: 0.14em; }
.footer__copy { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.04em; color: rgba(248, 241, 234, 0.32); }

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta { position: fixed; inset: auto 0 0 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(21, 18, 15, 0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--color-taupe-dark); z-index: 90; transform: translateY(120%); transition: transform 0.4s var(--ease); }
.sticky-cta.is-visible { transform: translateY(0); }

/* ===== REVEAL (fade-up ao rolar / ao abrir a página) ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease) var(--reveal-delay, 0s), transform 0.9s var(--ease) var(--reveal-delay, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Cascata: filhos diretos de um bloco revelado entram em sequência */
.reveal--cascade.is-visible > * { animation: revealFadeUp 0.9s var(--ease) both; animation-delay: calc(var(--cascade-step, 0.12s) * var(--cascade-i, 0)); }

@keyframes revealFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  /* Sem deslize (movimento), mas mantém um fade suave ao aparecer */
  .reveal { opacity: 0; transform: none; transition: opacity 0.7s var(--ease) var(--reveal-delay, 0s); }
  .reveal.is-visible { opacity: 1; }
  .reveal--cascade.is-visible > * { animation-name: revealFade; }
  .trust-bar__track { animation: none; transform: none; }
  .price-badge, .price-badge::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   REDESIGN DE BLOCOS — clima da hero
   Fundos escuros atmosféricos (espresso + glow de cobre + grão)
   alternando com respiros claros (nude quente). Cards em vidro.
   Placeholders de imagem = classes .img-ph existentes (trocar depois).
   ========================================================= */

/* ---- Atmosfera reutilizável: glow (::before) + grão (::after) ---- */
.atmo-sec { position: relative; overflow: hidden; }
.atmo-sec > .container { position: relative; z-index: 2; }
.atmo-sec::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.atmo-sec::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: var(--grain); opacity: 0.04;
}

/* ------------------ PROBLEMA (escuro atmosférico) ------------------ */
.problema-dark { background: var(--gradient-hero); color: var(--color-text-light); }
/* HOOK imagem de fundo (opcional) — descomente e ajuste a url:
.problema-dark {
  background:
    linear-gradient(180deg, rgba(15,13,11,0.82) 0%, rgba(21,18,15,0.9) 60%, #0F0D0B 100%),
    url('./sua-imagem.jpg') right center / cover no-repeat,
    var(--gradient-hero);
} */
.problema-dark::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 167, 124, 0.20) 0%, transparent 46%),
    radial-gradient(circle at 12% 92%, rgba(182, 125, 86, 0.16) 0%, transparent 42%);
}
.problema-dark .section-title { color: var(--color-text-light); }
.problema-dark .eyebrow { color: var(--color-caramel); }
.problema-dark .lead { color: rgba(248, 241, 234, 0.72); }
.problema-dark .divider span { background: var(--color-caramel); }
.problema-dark .pain {
  position: relative;
  text-align: left;
  background: linear-gradient(160deg, rgba(64, 53, 46, 0.62) 0%, rgba(28, 23, 20, 0.5) 100%);
  border: 1px solid rgba(216, 167, 124, 0.22);
}
.problema-dark .pain:hover { border-color: rgba(216, 167, 124, 0.55); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
.problema-dark .pain__ico { border-radius: 14px; background: linear-gradient(135deg, rgba(182, 125, 86, 0.9), rgba(216, 167, 124, 0.55)); border-color: transparent; }
.problema-dark .pain__svg { stroke: var(--color-text-light); }
.problema-dark .pain:hover .pain__ico { background: linear-gradient(135deg, rgba(182, 125, 86, 1), rgba(216, 167, 124, 0.72)); }
.problema-dark .pain h3 { color: var(--color-text-light); }
.problema-dark .pain p { color: rgba(248, 241, 234, 0.62); }
.pain__num { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-style: italic; font-size: 2.4rem; color: rgba(216, 167, 124, 0.28); line-height: 1; }

/* ------------------ VÍDEO DA TAINAH (escuro atmosférico) ------------------ */
.video-sec { background: var(--gradient-hero); color: var(--color-text-light); }
.video-sec::before {
  background:
    radial-gradient(circle at 16% 8%, rgba(216, 167, 124, 0.22) 0%, transparent 46%),
    radial-gradient(circle at 88% 92%, rgba(182, 125, 86, 0.16) 0%, transparent 44%);
}
.video-sec .eyebrow { color: var(--color-caramel); }
.video-sec .divider span { background: var(--color-caramel); }
.video-sec .center { margin-bottom: clamp(38px, 5vw, 58px); }

.video-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0F0D0B;
  border: 1px solid rgba(216, 167, 124, 0.3);
  box-shadow: var(--shadow-deep);
}
.video-frame__media { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Camada de clique: cobre o vídeo inteiro, então tocar em qualquer ponto
   alterna play/pause. Fica visível parada e some enquanto o vídeo roda. */
.video-frame__toggle {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--color-text-light);
  background: linear-gradient(180deg, rgba(15, 13, 11, 0.26) 0%, rgba(15, 13, 11, 0.56) 100%);
  transition: opacity 0.4s var(--ease), background 0.4s var(--ease);
}
.video-frame__btn {
  display: grid;
  place-items: center;
  width: clamp(64px, 8vw, 84px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gradient-cta);
  box-shadow: 0 18px 44px rgba(15, 13, 11, 0.5);
  transition: transform 0.35s var(--ease);
}
.video-frame__toggle:hover .video-frame__btn,
.video-frame__toggle:focus-visible .video-frame__btn { transform: scale(1.07); }
.video-frame__icon { width: 38%; fill: currentColor; }
.video-frame__icon--sound,
.video-frame__icon--muted { display: none; }
.video-frame__hint {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 241, 234, 0.82);
}

/* Tocando: a camada some, mas segue clicável — o clique agora só muda o som.
   Ela reaparece no hover e, no toque, num flash de 1,6s (classe .is-hinting). */
.video-frame.is-playing .video-frame__toggle { opacity: 0; background: transparent; }
.video-frame.is-playing .video-frame__toggle:hover,
.video-frame.is-playing .video-frame__toggle:focus-visible,
.video-frame.is-playing.is-hinting .video-frame__toggle {
  opacity: 1;
  background: linear-gradient(180deg, rgba(15, 13, 11, 0.1) 0%, rgba(15, 13, 11, 0.42) 100%);
}
.video-frame.is-playing .video-frame__icon--play { display: none; }
.video-frame.is-playing .video-frame__icon--sound { display: block; }
.video-frame.is-playing.is-muted .video-frame__icon--sound { display: none; }
.video-frame.is-playing.is-muted .video-frame__icon--muted { display: block; }

/* ---- Barra de progresso (só aparece depois do play) ---- */
.video-frame__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
  padding: 40px clamp(16px, 2.6vw, 24px) clamp(13px, 2vw, 18px);
  background: linear-gradient(180deg, transparent 0%, rgba(15, 13, 11, 0.66) 100%);
  opacity: 0;
  pointer-events: none;  /* o clique atravessa e chega na camada de som */
  transition: opacity 0.45s var(--ease);
}
.video-frame.is-playing .video-frame__progress { opacity: 1; }
.video-frame__time {
  align-self: flex-end;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  font-variant-numeric: tabular-nums;
  color: rgba(248, 241, 234, 0.8);
}
.video-frame__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(248, 241, 234, 0.2);
  overflow: hidden;
}
.video-frame__fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-cta);  /* mesma cor do botão de play */
  box-shadow: 0 0 14px rgba(216, 167, 124, 0.55);
  transition: width 0.2s linear;
}

@media (max-width: 560px) {
  .video-frame__hint { font-size: 0.58rem; letter-spacing: 0.16em; }
  .video-frame__toggle { gap: 14px; }
  .video-frame__time { font-size: 0.55rem; }
}

/* ------------------ GALERIA (respiro claro nude) ------------------ */
.gallery-nude { background: linear-gradient(165deg, #FFFCF7 0%, #F1E6DC 60%, #E9DACD 100%); }
.gallery-nude::before { background: radial-gradient(circle at 88% 6%, rgba(182, 125, 86, 0.16) 0%, transparent 40%); }

/* --------------- O QUE VOCÊ RECEBE (escuro, split) --------------- */
.recebe-dark::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(182, 125, 86, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 90% 90%, rgba(216, 167, 124, 0.12) 0%, transparent 44%);
}
.dark .deliverable h3 { color: var(--color-text-light); }
.dark .deliverable p { color: rgba(248, 241, 234, 0.62); }
.dark .deliverable__ico { background: linear-gradient(135deg, rgba(182, 125, 86, 0.85), rgba(216, 167, 124, 0.5)); border-color: transparent; color: var(--color-text-light); }

/* ------------------ PARA QUEM É (respiro claro nude) ------------------ */
.forwho-nude { background: linear-gradient(160deg, #EAD9CE 0%, #E6D2C3 52%, #D8C4B6 100%); }
.forwho-nude::before {
  background:
    radial-gradient(circle at 85% 12%, rgba(182, 125, 86, 0.28) 0%, transparent 44%),
    radial-gradient(circle at 8% 96%, rgba(21, 18, 15, 0.1) 0%, transparent 40%);
}
.forwho-nude .check-card {
  background: linear-gradient(160deg, rgba(255, 252, 247, 0.72) 0%, rgba(255, 252, 247, 0.42) 100%);
  border-color: rgba(182, 125, 86, 0.28);
  box-shadow: 0 10px 30px rgba(21, 18, 15, 0.06);
}
.forwho-nude .check-card:hover { box-shadow: 0 20px 44px rgba(21, 18, 15, 0.12); }

/* ------------------ FAQ (respiro claro nude) ------------------ */
.faq-nude { background: linear-gradient(165deg, #FFFCF7 0%, #F1E6DC 100%); }
.faq-nude::before { background: radial-gradient(circle at 12% 8%, rgba(182, 125, 86, 0.14) 0%, transparent 40%); }
.faq-nude .accordion { margin-top: 52px; }
.faq-nude .accordion__item {
  border: 1px solid rgba(182, 125, 86, 0.22);
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 4px 24px;
  background: linear-gradient(160deg, rgba(255, 252, 247, 0.85), rgba(247, 242, 236, 0.55));
  box-shadow: 0 8px 24px rgba(21, 18, 15, 0.05);
}

/* =========================================================
   CARROSSEL — bloco "O que você recebe"
   Coluna esquerda auto-avança (barra de carregamento) e a
   imagem da direita acompanha o item ativo.
   ========================================================= */
.feats { display: flex; flex-direction: column; gap: 10px; margin: 2rem 0 2.4rem; }
.feat {
  position: relative; display: block; width: 100%; text-align: left; cursor: pointer;
  font: inherit; color: inherit;
  background: linear-gradient(160deg, rgba(64, 53, 46, 0.28) 0%, rgba(28, 23, 20, 0.18) 100%);
  border: 1px solid rgba(216, 167, 124, 0.12); border-radius: 14px; padding: 18px 22px;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.feat:hover { border-color: rgba(216, 167, 124, 0.3); }
.feat.is-active { background: linear-gradient(160deg, rgba(72, 60, 52, 0.55) 0%, rgba(32, 26, 22, 0.38) 100%); border-color: rgba(216, 167, 124, 0.4); }
.feat__row { display: grid; grid-template-columns: 50px 1fr; gap: 16px; align-items: center; }
.feat__ico { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; color: rgba(248, 241, 234, 0.5); background: rgba(216, 167, 124, 0.1); border: 1px solid rgba(216, 167, 124, 0.18); transition: color 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.feat__ico svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feat.is-active .feat__ico { color: var(--color-text-light); background: linear-gradient(135deg, rgba(182, 125, 86, 0.9), rgba(216, 167, 124, 0.55)); border-color: transparent; box-shadow: 0 10px 26px rgba(182, 125, 86, 0.35); }
.feat__num { display: block; font-family: var(--font-ui); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; color: var(--color-caramel); opacity: 0.55; margin-bottom: 2px; }
.feat__title { font-family: var(--font-display); font-size: 1.35rem; color: rgba(248, 241, 234, 0.66); transition: color 0.5s var(--ease); }
.feat.is-active .feat__title { color: var(--color-text-light); }
.feat__desc { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.55s var(--ease), opacity 0.45s var(--ease), margin 0.55s var(--ease); }
.feat__desc > span { overflow: hidden; font-family: var(--font-body); font-size: 0.96rem; color: rgba(248, 241, 234, 0.64); padding-left: 66px; }
.feat.is-active .feat__desc { grid-template-rows: 1fr; opacity: 1; margin-top: 0.7rem; }
.feat__bar { position: relative; height: 3px; margin-top: 14px; border-radius: 100px; background: rgba(216, 196, 182, 0.14); overflow: hidden; opacity: 0; max-height: 0; transition: opacity 0.4s var(--ease); }
.feat.is-active .feat__bar { opacity: 1; max-height: 3px; }
.feat__fill { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 100px; background: var(--gradient-line); box-shadow: 0 0 10px rgba(216, 167, 124, 0.5); }
.feat.is-active .feat__fill { animation: featFill var(--feat-dur, 5s) linear forwards; }
@keyframes featFill { from { width: 0; } to { width: 100%; } }
.feats:hover .feat.is-active .feat__fill { animation-play-state: paused; }

/* imagem que acompanha o item ativo (slides sobrepostos, crossfade) */
/* Mesma proporção das fotos de look (350×600): a foto aparece inteira,
   sem cortar o logo da marca no topo nem os sapatos na base */
.recebe-media {
  position: relative;
  aspect-ratio: 350 / 600;
  max-width: 400px;
  margin-inline: auto;
}
.recebe-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 196, 182, 0.3);
  box-shadow: var(--shadow-deep);
}
.recebe-slide.is-active { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .feat.is-active .feat__fill { animation: none; width: 100%; }
}
@media (max-width: 560px) {
  .feat__desc > span { padding-left: 0; }
}

/* =========================================================
   A CURADORA — imagem de fundo (mantém espresso + cobre)
   Texto à esquerda; Tainah (direita da foto) visível ao lado.
   ========================================================= */
.curadora-bg {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 72vh, 760px);
  background:
    radial-gradient(circle at 15% 22%, rgba(182, 125, 86, 0.16) 0%, transparent 42%),
    linear-gradient(90deg, rgba(15, 13, 11, 0.92) 0%, rgba(19, 15, 12, 0.68) 44%, rgba(19, 15, 12, 0.3) 70%, rgba(15, 13, 11, 0.5) 100%),
    url('./tainah-curadora.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.curadora-bg .container { position: relative; z-index: 2; }
.curadora-bg__text { max-width: 560px; }

@media (max-width: 760px) {
  .curadora-bg {
    background:
      linear-gradient(180deg, rgba(15, 13, 11, 0.78) 0%, rgba(15, 13, 11, 0.9) 100%),
      radial-gradient(circle at 12% 14%, rgba(182, 125, 86, 0.16) 0%, transparent 46%),
      url('./tainah-curadora.png');
    background-size: cover;
    background-position: 68% center;
    background-repeat: no-repeat;
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 860px) {
  .split-inner { grid-template-columns: 1fr; gap: 56px; }
  .split-inner--reverse .split-img { order: 0; }
  .split-img { max-width: 460px; margin: 0 auto; }
  .split-inner--reverse .split-tag { right: 0; }
  .split-tag { left: 0; }
}

@media (max-width: 780px) {
  .price-includes { grid-template-columns: 1fr; }
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 40px 28px; }
  body { padding-bottom: 78px; }
}

@media (max-width: 440px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .trust-bar__item { padding: 0 1.6rem; font-size: 0.64rem; letter-spacing: 0.15em; }
  .trust-bar__track { animation-duration: 32s; }
  .g-img { height: 340px; }
}
