/* ══════════════════════════════════════════════════
   PUTOS MACHOS — Dark Editorial
   Fotos como cenas. Tipografia como identidade.
   ══════════════════════════════════════════════════ */

:root {
  --bg:     #0a0806;
  --bg-2:   #110e09;
  --bg-3:   #181409;
  --text:   #e8dcc8;
  --muted:  #c8b896;
  --faint:  #9a8a72;
  --gold:   #d4a943;
  --gold-d: #957222;
  --cr:     #CA0017;
  --cr-hi:  #AA0013;
  --rule:   rgba(212,169,67,.25);
  --bord:   rgba(212,169,67,.14);
  --pad-y:  clamp(80px, 10vw, 136px);
  --gap:    clamp(24px, 3.5vw, 48px);

  /* Tipografia — General Sans (Fontshare) */
  --fonte-display: 'General Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fonte-texto:   'General Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --peso-display:  500;   /* espessura dos títulos: 400 mais leve · 600/700 mais pesado */

  /* Escala de tracking — General Sans é mais larga que a Inter anterior,
     então os valores herdados esgarçavam o texto. */
  --track-marcador: .18em;   /* .section-eyebrow — o rótulo mais largo da página */
  --track-rotulo:   .12em;   /* eyebrows e micro-labels em caixa alta */
  --track-botao:    .07em;   /* botões e navegação */
  --track-titulo:   0;       /* títulos display */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px; /* barra do cronômetro (46px) + header */
  overflow-x: hidden;
}

body {
  font-family: var(--fonte-texto);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
  /* NÃO colocar overflow-x aqui. O <html> já faz o clipping horizontal.
     Definir overflow-x nos dois transforma o <body> num segundo container
     de rolagem (o overflow-y vira 'auto' automaticamente) → duas barras
     de scroll, e a .topbar-stack sticky passa a grudar no scrollport
     errado. Se precisar clipar algo, faça na própria seção. */
}

/* Grain — atmosfera */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ════════════════════════════════
   ASSINATURA — filete gold (LABEL)
════════════════════════════════ */
/* marcadores de produto — volume, alertas */
.product-volume,
.precaution-title {
  display: block;
  font-family: var(--fonte-texto);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .06em;
  color: var(--gold);
}

/* PAR DE TÍTULOS — toda seção abre com o rótulo pequeno (.section-eyebrow)
   seguido do título grande (.section-title), dentro de um .section-header
   centralizado no topo da seção. */

/* título pequeno — rótulo em caixa alta */
.section-eyebrow {
  display: block;
  font-family: var(--fonte-texto);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: var(--track-marcador);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* centralizado, compensa o espaço final do tracking */
.section-header .section-eyebrow {
  text-indent: var(--track-marcador);
}

/* título grande — display, par do .section-eyebrow */
.section-title {
  display: block;
  font-family: var(--fonte-display);
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: var(--peso-display);
  font-style: normal;
  line-height: 1.06;
  letter-spacing: var(--track-titulo);
  text-transform: uppercase;
  color: var(--muted);
}

/* títulos que devem ficar em UMA linha no desktop. No mobile volta a quebrar,
   senão o texto encolhe até ficar ilegível. */
@media (min-width: 861px) {
  .section-title-nowrap {
    white-space: nowrap;
  }
}

/* CTA no rodapé da seção — botão centralizado, sozinho */
.section-cta {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
}

/* ════════════════════════════════
   TICKER
════════════════════════════════ */
.ticker-section {
  overflow: hidden;
  max-width: 100vw;
  background: transparent;
  padding: 18px 0;
  border-top: 1px solid var(--bord);
  border-bottom: 1px solid var(--bord);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-section:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--fonte-texto);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--track-rotulo);
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 0 52px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item::before {
  content: '◆';
  margin-right: 52px;
  font-size: 6px;
  color: var(--gold);
  vertical-align: middle;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(10,8,6,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: padding .35s ease, border-color .35s ease;
}

.site-header.scrolled {
  padding: 8px 0;
  border-bottom-color: var(--bord);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 56px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--fonte-texto);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-botao);
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}

.nav a:hover {
  color: var(--text);
}

.nav a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .28s ease;
}

.nav a:not(.btn-nav):hover::after {
  width: 100%;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: var(--cr) !important;
  color: #fff !important;
  font-size: 12px !important;
  border-radius: 8px;
  transition: background .2s !important;
}

.btn-nav:hover {
  background: var(--cr-hi) !important;
}

/* ════════════════════════════════
   HERO — split full-bleed
════════════════════════════════ */
.hero {
  position: relative;
  padding: 40px 0;
  background: var(--bg);
}

.hero-stage {
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-banner-bg { display: none; }
.hero-banner-overlay { display: none; }

.hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 48px;
  padding: 0;
}

.hero-copy {
  flex: 0 0 56%;
  max-width: 56%;
  background: #0a0806;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
}

.hero-seal {
  display: none;
}

/* LABEL */
.hero-eyebrow {
  margin-bottom: 36px;
}

.hero-title {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

/* imagem do título "3 em UM" */
.hero-title-img {
  display: block;
  max-width: min(560px, 92%);
  height: auto;
  margin-bottom: 16px;
}

/* MICRO */
.hero-t3 {
  display: none;
  font-family: var(--fonte-texto);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-brand-name {
  font-family: var(--fonte-display);
  font-size: 40px;
  font-weight: var(--peso-display);
  color: var(--text);
  letter-spacing: var(--track-titulo);
  line-height: 1.0;
  margin-bottom: 28px;
}

/* BODY */
.hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid var(--bord);
  font-family: var(--fonte-texto);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

/* ícone dourado à esquerda do rótulo; flex:none impede que ele achate
   quando a tag quebra linha no mobile */
.hero-tag svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--gold);
}

/* produto no hero — coluna direita full-height */
.hero-product {
  flex: 1;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}

.hero-product::before {
  display: none;
}

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

/* ── HERO SEAL ── */
.hero-seal {
  display: none;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.seal-ring {
  width: 76px;
  height: 76px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(212,169,67,.06);
}

.seal-big {
  font-family: var(--fonte-display);
  font-size: 26px;
  font-weight: var(--peso-display);
  color: var(--gold);
  line-height: 1;
}

.seal-mid {
  font-family: var(--fonte-texto);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold);
  margin-top: 3px;
}

.seal-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  line-height: 1.55;
}

/* ── CTAs ── */
@keyframes btn-shimmer {
  0%   { background-position: -250% center; }
  100% { background-position: 250% center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--cr);
  color: #fff;
  text-decoration: none;
  font-family: var(--fonte-texto);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--track-botao);
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(212,169,67,.2);
  position: relative;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .18s;
  border-radius: 8px;
}

/* filete dourado deslizante */
.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,169,67,.8), transparent);
  transition: left .35s ease;
}

.btn-primary:hover {
  background: var(--cr-hi);
  border-color: rgba(212,169,67,.4);
  transform: translateY(-1px);
}

.btn-primary:hover::after {
  left: 100%;
}

/* botão principal de compra — shimmer periódico */
.btn-large {
  padding: 16px 52px;
  font-size: 12px;
  letter-spacing: .2em;
  background: linear-gradient(
    105deg,
    var(--cr) 0%,
    var(--cr) 42%,
    rgba(255,220,160,.18) 50%,
    var(--cr) 58%,
    var(--cr) 100%
  );
  background-size: 250% auto;
  animation: btn-shimmer 4s linear infinite;
  border-color: rgba(212,169,67,.35);
}

.btn-large:hover {
  background: linear-gradient(
    105deg,
    var(--cr-hi) 0%,
    var(--cr-hi) 42%,
    rgba(255,220,160,.22) 50%,
    var(--cr-hi) 58%,
    var(--cr-hi) 100%
  );
  background-size: 250% auto;
  animation: none;
  border-color: rgba(212,169,67,.6);
}

/* ════════════════════════════════
   RESULTADOS
════════════════════════════════ */
.resultados-section {
  background: var(--bg-2);
}

.resultados-layout {
  display: grid;
  grid-template-columns: 50% 0%;
  align-items: stretch;
  padding: 60px 0;
  gap: 90px;
}

.resultados-img {
  background: var(--faint);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.resultados-ghost {
  position: absolute;
  bottom: -0.06em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fonte-display);
  font-size: clamp(80px, 11vw, 160px);
  font-weight: var(--peso-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,169,67,.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: .1em;
  text-transform: uppercase;
  user-select: none;
}

.resultados-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 42% 60% at 50% 52%, rgba(58,32,6,.65) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.resultados-img img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-height: calc(76vh - 96px);
  max-width: calc(100% - 48px);
  display: block;
}

.resultados-copy {
  background: var(--bg-2);
  display: flex;
  align-items: center;
}

.resultados-inner {
  max-width: 440px;
}

.resultados-inner .model-eyebrow {
  margin-bottom: 28px;
}

.resultados-inner .model-headline {
  font-size: 70px;
  margin-bottom: 32px;
  color: var(--muted);
}

.resultados-inner .model-body {
  margin-top: 0;
  margin-bottom: 40px;
  color: var(--text);
}

.res-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 0 32px;
}

/* ════════════════════════════════
   FEATURE STRIP — triptych editorial
   fotos full-height, texto flutua na base
════════════════════════════════ */
.feature-strip {
  padding: 90px 0 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--bord);
}

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

.feature-item {
  position: relative;
  min-height: clamp(480px, 88vh, 920px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 14px;
  cursor: default;
}

.feature-item:last-child {
  border-right: none;
}

/* overlay gradiente por coluna */
.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,.97) 0%,
    rgba(10,8,6,.75) 28%,
    rgba(10,8,6,.20) 58%,
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
}

/* foto preenche todo o fundo */
.feature-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(.88) brightness(.78);
  transition: transform .9s ease, filter .6s ease;
}

.feature-item:hover .feature-img img {
  transform: scale(1.06);
  filter: saturate(.95) brightness(.88);
}

/* texto flutua na base */
.feature-item h3,
.feature-item p {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 28px;
}

.feature-item h3 {
  font-family: var(--fonte-texto);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: var(--track-titulo);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  padding-bottom: 40px;
}

/* ════════════════════════════════
   MODEL SECTION — full-bleed cinematic
════════════════════════════════ */
.model-section {
  position: relative;
  min-height: 64vh;
}

.model-stage {
  position: relative;
  overflow: hidden;
  min-height: 64vh;
  display: flex;
  align-items: center;
}

.model-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.model-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.8) brightness(.6);
}

.model-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,8,6,.96) 0%, rgba(10,8,6,.82) 50%, rgba(10,8,6,.65) 100%),
    linear-gradient(to top, rgba(10,8,6,.9) 0%, transparent 50%);
}

.model-overlay {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 8vw, 96px) 0;
}

.model-content {
  max-width: 560px;
}

/* LABEL */
.model-eyebrow {
  margin-bottom: 20px;
}

/* HEADLINE */
.model-headline {
  font-family: var(--fonte-display);
  font-weight: var(--peso-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 28px;
}

/* BODY */
.model-body {
  font-size: 19px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  text-align: justify;
}

/* ════════════════════════════════
   SECTION HEADER
════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-sub {
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  color: var(--muted);
  text-align: center;
  max-width: 520px;
  margin: 16px auto 48px;
}

/* ════════════════════════════════
   PRODUCT DETAIL — cinematic split
════════════════════════════════ */
.product-detail {
  overflow: hidden;
  padding: 90px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--bord);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* galeria principal — produto em destaque.
   max-width segura a altura: a foto é 4:5, então largura menor = card mais baixo. */
.product-gallery {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.gallery-main {
  background: radial-gradient(ellipse 55% 62% at 50% 46%, #2e1d04 0%, #130c02 48%, #090705 80%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, rgba(9,7,5,.6) 100%),
    linear-gradient(to top, rgba(9,7,5,.5) 0%, transparent 30%);
  pointer-events: none;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
  position: relative;
  z-index: 1;
}

.gallery-main:hover img {
  transform: scale(1.04);
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product-kicker {
  font-family: var(--fonte-texto);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 20px;
}

/* HEADLINE */


/* BODY */
.product-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  text-align: justify;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* CTA do produto — fica logo abaixo da lista de benefícios, no lugar
   onde antes ficavam os selos. */
.product-cta {
  margin-top: 32px;
  width: 100%;
}

.product-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════
   ACTIVE INGREDIENTS — editorial rows
════════════════════════════════ */
.actives {
  padding: 90px 0;
  background: var(--bg);
  border-top: 1px solid var(--bord);
}

.actives-grid {
  display: flex;
  flex-direction: column;
}

.active-card {
  display: grid;
  grid-template-columns: 52px 1fr 2.4fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}

.active-card:last-child {
  border-bottom: 1px solid var(--rule);
}

.active-icon {
  color: var(--gold);
  padding-top: 2px;
  display: flex;
  align-items: flex-start;
}

.active-name {
  font-family: var(--fonte-texto);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0;
}

.active-card p {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  text-align: justify;
}

/* ════════════════════════════════
   USAGE
════════════════════════════════ */
.usage {
  padding: 90px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--bord);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
  align-items: stretch;
}

/* Card sem ::before e sem overflow:hidden de propósito: o filete dourado do topo
   é background-image do próprio card. Com camada absoluta + clipping, em telas
   com escala 125% as bordas de colunas de largura fracionada caíam no mesmo
   pixel e dois cards apareciam colados. */
.step {
  min-width: 0;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 28px 30px;
  background-color: rgba(212,169,67,.035);
  background-image:
    linear-gradient(90deg, rgba(212,169,67,.55) 0%, rgba(212,169,67,0) 72%),
    linear-gradient(165deg, rgba(149,114,34,.10) 0%, rgba(10,8,6,0) 58%);
  background-repeat: no-repeat;
  background-size: 100% 2px, 100% 100%;
  background-position: 0 0, 0 0;
  transition: border-color .35s ease, transform .35s ease, background-color .35s ease;
}

.step:hover {
  border-color: rgba(212,169,67,.38);
  background-color: rgba(212,169,67,.06);
  transform: translateY(-3px);
}

/* número — grande, mas sem competir com o título */
.step-num {
  display: block;
  font-family: var(--fonte-display);
  font-size: 34px;
  font-weight: var(--peso-display);
  line-height: 1;
  color: var(--gold);
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--fonte-display);
  font-size: 22px;
  font-weight: var(--peso-display);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}

.step p strong {
  color: var(--text);
  font-weight: 500;
}

.usage-note {
  text-align: center;
  color: var(--faint);
  font-size: 15px;
  max-width: 520px;
  margin: clamp(28px, 4vw, 40px) auto 0;
}

.precautions {
  border-top: 1px solid var(--bord);
  padding-top: 24px;
}

.precaution-title {
  margin-bottom: 16px;
}

.precautions ul {
  list-style: none;
}

.precautions li {
  font-size: 15px;
  font-weight: 400;
  color: var(--faint);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.6;
}

.precautions li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--cr);
}

/* ════════════════════════════════
   BUY CTA
════════════════════════════════ */
.vip-cta {
  padding: clamp(64px, 7vw, 96px) 0;
  background: var(--bg);
  border-top: 1px solid var(--bord);
}

.vip-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

/* foto modelo com overlay escuro — recortada para não ficar comprida demais */
.vip-product {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  aspect-ratio: 4 / 5;
}

.vip-product::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 50%, rgba(10,8,6,.72) 100%),
    linear-gradient(to bottom, rgba(10,8,6,.18) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.vip-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.55) saturate(.78) contrast(1.08);
  transition: transform .7s ease;
}

.vip-product:hover img {
  transform: scale(1.02);
}


/* BODY */
.vip-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 36px;
  text-align: justify;
  line-height: 1.75;
}

.vip-checks {
  list-style: none;
  margin-bottom: 36px;
}

.vip-checks li {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  padding: 5px 0;
}

.vip-checks li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 10px;
  font-weight: 600;
}

/* CTA dentro da coluna de texto, logo abaixo da prova social */
.vip-cta-inline {
  margin-top: 28px;
}

.vip-cta-inline .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--bord);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.site-footer p {
  font-size: 13px;
  color: var(--faint);
}

.footer-nav a {
  color: var(--faint);
  text-decoration: none;
  font-family: var(--fonte-texto);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--track-botao);
  text-transform: uppercase;
  margin-left: 20px;
  transition: color .2s;
}

.footer-nav a:hover {
  color: var(--text);
}

/* ════════════════════════════════
   HAMBURGER + MOBILE OVERLAY
════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 410;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform .35s ease, opacity .25s ease, background .2s;
  transform-origin: center;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 420;
  background: rgba(10,8,6,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}

.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fonte-display);
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 600;
  letter-spacing: var(--track-botao);
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: color .25s, opacity .42s ease, transform .42s ease;
}

.nav-mobile-link::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-mobile-link:hover {
  color: var(--gold);
}

.nav-mobile-link:hover::after {
  width: 100%;
}

.nav-open .nav-mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-open .nav-mobile-link:nth-child(1) { transition-delay: .08s; }
.nav-open .nav-mobile-link:nth-child(2) { transition-delay: .14s; }
.nav-open .nav-mobile-link:nth-child(3) { transition-delay: .20s; }
.nav-open .nav-mobile-link:nth-child(4) { transition-delay: .26s; }

.nav-btn-mobile {
  margin-top: 20px;
  padding: 11px 36px;
  background: var(--cr);
  color: #fff;
  font-size: 11px;
  letter-spacing: var(--track-botao);
  border-radius: 8px;
}

.nav-btn-mobile:hover {
  background: var(--cr-hi);
  color: #fff;
}

.nav-btn-mobile::after {
  display: none;
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(212,169,67,.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
  z-index: 10;
  touch-action: manipulation;
}

.nav-close:hover,
.nav-close:active {
  background: rgba(212,169,67,.15);
  border-color: var(--gold);
}

/* reveal removido — elementos sempre visíveis */
.reveal {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .feature-item {
    min-height: clamp(400px, 75vh, 800px);
  }

  .product-layout {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .gallery-main {
    min-height: unset;
    aspect-ratio: 4/5;
  }

  .product-info {
    border-left: none;
  }

  .vip-inner {
    grid-template-columns: 1fr;
  }

  .vip-product {
    max-width: 360px;
    margin: 0 auto;
  }

  .lifestyle .container {
    grid-template-columns: 1fr;
  }

  .lifestyle-img {
    height: 56vw;
    max-height: 480px;
  }

  .lifestyle-copy {
    padding: 52px 36px;
    border-left: none;
    border-top: 1px solid var(--bord);
  }

  .resultados-layout {
    grid-template-columns: 1fr;
  }

  .resultados-img {
    padding: 48px 24px;
  }

  .resultados-img img {
    max-height: 70vh;
    max-width: min(340px, 80%);
    filter: drop-shadow(0 32px 60px rgba(0,0,0,.85));
  }

  .resultados-copy {
    padding: 40px 24px 56px;
    justify-content: center;
    border-left: none;
    border-top: none;
  }

  .resultados-inner {
    text-align: center;
  }

  .resultados-inner .model-body {
    text-align: justify;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav a {
    display: none;
  }

  /* hero — imagem como fundo no mobile */
  .hero {
    padding: 0;
  }

  .hero .container {
    padding: 0;
    max-width: none;
  }

  .hero-stage {
    height: auto;
  }

  .hero-inner {
    flex-direction: column;
    padding: 0;
    position: relative;
    min-height: 100vh;
  }

  .hero-product {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex: none;
    order: 0;
    background: transparent;
    border-radius: 0;
  }

  .hero-product img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-product::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,8,6,.5) 0%, rgba(10,8,6,.7) 55%, rgba(10,8,6,.92) 100%);
  }

  .hero-copy {
    flex: 1;
    max-width: 100%;
    padding: clamp(110px,18vh,160px) 40px 80px;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    position: relative;
    z-index: 1;
  }

  /* feature strip — itens portait em coluna única */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 115vw;
    border-right: none;
    border-bottom: 1px solid var(--bord);
  }

  .feature-item:last-child {
    border-bottom: none;
  }


  /* hero seal mobile */
  .seal-ring {
    width: 60px;
    height: 60px;
  }

  .seal-big {
    font-size: 22px;
  }

  .hero-seal {
    margin-bottom: 20px;
  }

  /* ativos — centralizado */
  .active-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 0;
  }

  .active-name {
    text-align: center;
  }

  .active-card p {
    text-align: center;
  }

  /* como usar */
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    text-align: center;
  }

  /* product detail */
  .product-detail {
    padding: clamp(48px, 8vw, 80px) 0;
  }

  .product-layout {
    gap: 24px;
  }

  .product-gallery,
  .gallery-main {
    border-radius: 14px;
    overflow: hidden;
  }

  .product-info {
    border-top: none;
  }


  /* resultados — imagem 100% dentro do container */
  .resultados-section {
    padding: 0 0 40px;
  }

  .resultados-layout {
    padding: 0;
    gap: 0;
  }

  .resultados-img {
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
  }

  .resultados-img img {
    max-height: none;
    max-width: 40%;
    width: 100%;
    filter: none;
  }

  .resultados-inner .model-headline {
    font-size: clamp(22px, 7vw, 34px);
  }

  .resultados-copy {
    padding: 28px 0 32px;
    border-top: none;
    text-align: center;
  }

  .resultados-inner {
    text-align: center;
  }

  .resultados-inner .model-body {
    text-align: center;
  }

  /* lifestyle — empilhado, imagem mais alta */
  .lifestyle-img {
    height: 80vw;
    max-height: 520px;
  }

  .lifestyle-copy {
    padding: 48px 0;
    border-left: none;
    border-top: 1px solid var(--bord);
  }

  /* buy — imagem com border-radius e centralizada */
  .vip-product {
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  /* gradiente vira fade para baixo ao empilhar */
  .vip-product::after {
    background:
      linear-gradient(to bottom, transparent 55%, rgba(10,8,6,.85) 100%);
  }

  /* tipografia mobile — reduzir tamanhos */
  body {
    font-size: 17px;
  }

  .hero-brand-name {
    font-size: clamp(32px, 9vw, 52px);
  }

  .hero-title-img {
    max-width: min(440px, 88%);
  }

  .model-headline {
    font-size: clamp(26px, 6.5vw, 40px);
  }

  .model-body {
    font-size: 16px;
  }


  .product-desc {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .section-sub {
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .active-card p,
  .step p,
  .feature-item p,
  .lifestyle-inner > p {
    font-size: 15px;
    text-align: center;
  }

  .step p {
    text-align: center;
  }

  .lifestyle-inner h2 {
    font-size: clamp(22px, 5.5vw, 32px);
  }

  .step-num {
    font-size: clamp(28px, 7vw, 34px);
  }


  .vip-desc {
    font-size: 15px;
    text-align: center;
  }

  /* centralização geral mobile */
  .hero-copy {
    text-align: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .section-header {
    text-align: center;
  }

  .section-sub {
    text-align: center;
  }

  .product-info {
    text-align: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .product-cta {
    display: flex;
    justify-content: center;
  }

  /* actives: mantém alinhamento à esquerda (grid editorial) */
  .usage-note {
    text-align: center;
  }

  .step {
    text-align: center;
  }

  .lifestyle-inner {
    text-align: center;
  }

  .lifestyle-inner .precautions {
    text-align: left;
  }

  .vip-copy {
    text-align: center;
    align-items: center;
  }

  /* seções — reduz padding vertical no mobile */
  .feature-strip{
    padding: 50px 0 20px;
  }

  .actives,
  .usage,
  .feature-strip {
    padding: 50px 0;
  }

  .product-detail {
    padding: 50px 0;
  }

  .vip-cta {
    padding: 44px 0;
  }

  /* botão buy — bloco editorial, sem quebra de linha */
  .product-cta,
  .vip-cta-inline {
    width: 100%;
  }

  .section-cta .btn-primary,
  .product-cta .btn-primary,
  .vip-cta-inline .btn-primary {
    display: block;
    text-align: center;
    letter-spacing: var(--track-botao);
    padding: 18px 24px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* section-sub — menos espaço abaixo do subtítulo */
  .section-sub {
    margin: 12px auto 20px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  /* ativos — cards com menos espaçamento */
  .active-card {
    padding: 20px 0;
    gap: 10px 20px;
  }

  /* como usar — gap entre boxes */
  .steps {
    gap: 16px;
    margin-bottom: 32px;
  }

  .step {
    padding-top: 16px;
  }

  .step-num {
    margin-bottom: 10px;
    font-size: clamp(26px, 7vw, 32px);
  }

  /* footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav a:first-child {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  /* container */
  .container {
    padding: 0 24px;
  }

  /* hero */
  .hero-title-img {
    max-width: min(340px, 82%);
  }

  .hero-copy {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 48px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-tags {
    gap: 6px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 12px;
  }


  /* feature strip — ainda mais alto em telefone */
  .feature-item {
    min-height: 130vw;
  }

  /* lifestyle */
  .lifestyle-copy {
    padding: 40px 0;
  }

  /* resultados e produto — gutter 24px no celular */
  .resultados-copy {
    padding: 40px 24px;
  }

  .product-layout {
    padding: 0 24px;
  }

  /* model */
  .model-content {
    max-width: 100%;
  }

  .model-headline {
    font-size: clamp(32px, 8vw, 52px);
  }

  /* buy */
  .vip-product {
    max-width: 100%;
  }


  /* product detail */
  .product-gallery,
  .gallery-main {
    border-radius: 14px;
    overflow: hidden;
  }

  .gallery-main {
    aspect-ratio: 3/4;
  }

  .gallery-main img {
    padding: 0px;
    border-radius: 14px;
  }
}

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

  .feature-img img {
    transition: none;
  }

  .gallery-main img {
    transition: none;
  }

  .vip-product img {
    transition: none;
  }
}

/* ══════════════════════════════════════════════════
   CRONÔMETRO DE LANÇAMENTO
   ══════════════════════════════════════════════════ */

/* topo fixo: cronômetro + header viajam juntos */
.topbar-stack {
  position: sticky;
  top: 0;
  z-index: 500;
}

.topbar-stack .site-header {
  position: static;
  top: auto;
}

.countdown-bar {
  background: linear-gradient(180deg, #0d0a07 0%, #0a0806 100%);
  border-bottom: 1px solid var(--bord);
  padding: 10px 0;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.countdown-clock {
  color: var(--gold);
  flex-shrink: 0;
  display: block;
}

.countdown-label {
  font-family: var(--fonte-texto);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .01em;
  white-space: nowrap;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cd-unit {
  display: flex;
  align-items: baseline;
  gap: 3px;
  min-width: 62px;
  justify-content: center;
  padding: 7px 12px;
  background: rgba(212,169,67,.06);
  border: 1px solid var(--bord);
  border-radius: 8px;
}

.cd-num {
  font-family: var(--fonte-texto);
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

.cd-suf {
  font-family: var(--fonte-texto);
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

/* pulso a cada virada de dígito */
@keyframes cd-tick {
  0%   { opacity: .45; transform: translateY(-2px); }
  100% { opacity: 1;   transform: translateY(0); }
}

.cd-num.tick {
  animation: cd-tick .28s ease-out;
}

.countdown-live {
  font-family: var(--fonte-texto);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ── versão grande, dentro da seção VIP ── */


/* ══════════════════════════════════════════════════
   COLLAB — cards de quem está no lançamento
   ══════════════════════════════════════════════════ */
.embaixadores {
  padding: 90px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--bord);
}

.embaixadores .section-header {
  text-align: center;
}

.embaixadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.embaixador-card {
  display: flex;
  flex-direction: column;
}

.embaixador-foto {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--rule);
  background: linear-gradient(160deg, #171208 0%, #0a0806 100%);
  margin-bottom: 22px;
}

/* Fotos de estúdio com fundo branco: sem scrim escuro (viraria mancha cinza).
   Nome e cargo ficam fora da foto, então o scrim não cumpria papel de legibilidade. */
.embaixador-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(115% 85% at 50% 30%, transparent 55%, rgba(149,114,34,.16) 100%);
  pointer-events: none;
  z-index: 1;
}

.embaixador-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.02) contrast(1.02);
  transition: transform .7s ease, filter .5s ease;
}

.embaixador-card:hover .embaixador-foto img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

/* placeholder enquanto a foto não existe */
.embaixador-foto.sem-foto::before {
  content: attr(data-iniciais);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-display);
  font-size: 64px;
  font-weight: var(--peso-display);
  letter-spacing: .06em;
  color: rgba(212,169,67,.28);
}

.embaixador-papel {
  font-family: var(--fonte-texto);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-rotulo);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.embaixador-nome {
  font-family: var(--fonte-display);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: var(--peso-display);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}


/* ══════════════════════════════════════════════════
   GRUPO VIP — ajustes de copy
   ══════════════════════════════════════════════════ */


.btn-vip {
  padding: 17px 34px;
  font-size: 13px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVO — cronômetro e embaixadores
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .embaixadores-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .embaixadores-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .embaixador-card {
    text-align: center;
  }

}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 128px;
  }


  .vip-copy {
    text-align: center;
  }

}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 116px;
  }

  .countdown-bar {
    padding: 8px 0;
  }

  .countdown-inner {
    gap: 6px 8px;
  }

  .countdown-clock {
    width: 15px;
    height: 15px;
  }

  .countdown-label {
    font-size: 12px;
  }

  .countdown-units {
    gap: 5px;
  }

  .cd-unit {
    min-width: 46px;
    padding: 5px 7px;
  }

  .cd-num {
    font-size: 15px;
  }

  .cd-suf {
    font-size: 10px;
  }


  .embaixador-foto.sem-foto::before {
    font-size: 48px;
  }
}

/* barra do cronômetro sempre acima do menu mobile aberto */
body.nav-open .topbar-stack {
  z-index: 300;
}

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

  .embaixador-foto img {
    transition: none;
  }
}

/* ══════════════════════════════════════════════════
   ESTRUTURA DE PRÉ-LANÇAMENTO
   ══════════════════════════════════════════════════ */

.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}

/* ── benefícios dentro da seção de produto ── */
.product-benefits {
  list-style: none;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.product-benefits svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.product-benefits div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-benefits strong {
  font-family: var(--fonte-texto);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-benefits span {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ── contexto acima do CTA dos ativos ── */

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq {
  padding: 90px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--bord);
}

.faq .section-header {
  text-align: center;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--fonte-texto);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color .2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

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

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 4px 24px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 66ch;
}

/* ══════════════════════════════════════════════════
   RESPONSIVO — estrutura nova
   ══════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .product-benefits {
    align-items: flex-start;
    text-align: left;
  }

  .faq {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .faq-item summary {
    font-size: 15px;
    padding: 18px 2px;
    gap: 14px;
  }

  .faq-item p {
    font-size: 15px;
    padding: 0 2px 20px;
  }

  .product-benefits span {
    font-size: 15px;
  }

}

/* ══════════════════════════════════════════════════
   CONVERSÃO E ACESSIBILIDADE — componentes novos
   ══════════════════════════════════════════════════ */

/* Texto só para leitor de tela e para o Google (h1 real por trás da imagem) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Pular para o conteúdo — aparece só ao navegar por teclado */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--cr);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--track-botao);
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Foco visível em tudo que é clicável — exigência de acessibilidade e
   evita o efeito "botão morto" para quem navega no teclado */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── PROVA SOCIAL ────────────────────────────────── */
.hero-prova {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.hero-prova strong {
  font-weight: 600;
  color: var(--text);
}

.hero-prova-pontos {
  display: inline-flex;
}

.hero-prova-pontos i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--bg);
  background: linear-gradient(140deg, var(--gold-d), var(--cr));
  margin-left: -8px;
}

.hero-prova-pontos i:first-child {
  margin-left: 0;
}

.vip-prova {
  margin: 20px 0 4px;
  font-size: 14px;
  color: var(--muted);
}

.vip-prova strong {
  color: var(--gold);
  font-weight: 600;
}

/* Ícone do WhatsApp dentro do botão */
.btn-vip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ícone do WhatsApp nos CTAs — o tamanho vem daqui porque o SVG é
   injetado por $ico_zap e não carrega mais width/height próprios */
.btn-zap {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

/* nos botões menores da navegação o glifo acompanha a escala reduzida */
.btn-nav .btn-zap,
.cta-fixo-btn .btn-zap {
  width: 15px;
  height: 15px;
}

/* ── TEXTO DE APOIO (SEO) ────────────────────────── */


/* ── BARRA FIXA DE CTA (mobile) ──────────────────── */
/* O atributo hidden precisa vencer o display:flex abaixo — sem esta regra
   a caixa fica invisível (opacity 0) mas continua por cima da página,
   engolindo todo clique, inclusive o do botão principal. */
.cta-fixo[hidden],
.saida[hidden] {
  display: none;
}

.cta-fixo {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 8, 6, .96);
  border-top: 1px solid var(--rule);
  backdrop-filter: blur(10px);
  transform: translateY(110%);
  transition: transform .3s ease;
}

.cta-fixo.visivel {
  transform: translateY(0);
}

.cta-fixo-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.cta-fixo-titulo {
  font-size: 11px;
  letter-spacing: var(--track-rotulo);
  text-transform: uppercase;
  color: var(--faint);
}

.cta-fixo-tempo {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.cta-fixo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 13px 20px;
  background: var(--cr);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--track-botao);
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid rgba(212, 169, 67, .25);
  white-space: nowrap;
}

.cta-fixo-btn:hover {
  background: var(--cr-hi);
}

/* Acima de 900px o botão do topo já está sempre visível: barra desnecessária */
@media (min-width: 901px) {
  .cta-fixo {
    display: none;
  }
}

/* ── MODAL DE SAÍDA ──────────────────────────────── */
.saida {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 4, 3, .84);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s ease;
}

.saida.visivel {
  opacity: 1;
}

.saida-caixa {
  position: relative;
  width: 100%;
  max-width: 470px;
  padding: clamp(28px, 5vw, 44px);
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 14px;
  text-align: center;
  transform: translateY(14px) scale(.98);
  transition: transform .3s ease;
}

.saida.visivel .saida-caixa {
  transform: translateY(0) scale(1);
}

.saida-fechar {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  color: var(--faint);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}

.saida-fechar:hover {
  color: var(--text);
}

.saida-eyebrow {
  font-size: 11px;
  letter-spacing: var(--track-rotulo);
  color: var(--gold);
  margin-bottom: 12px;
}

.saida-titulo {
  font-family: var(--fonte-display);
  font-weight: var(--peso-display);
  font-size: clamp(22px, 4.4vw, 29px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.saida-texto {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 26px;
}

.saida-recusa {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: 0;
  color: var(--faint);
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .2s;
}

.saida-recusa:hover {
  color: var(--muted);
}

body.saida-aberta {
  overflow: hidden;
}

/* ── QUEM PEDIU MENOS MOVIMENTO, RECEBE MENOS ────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ══════════════════════════════════════════════════
   PÁGINAS INSTITUCIONAIS — privacidade e termos
   ══════════════════════════════════════════════════ */
.legal-header {
  position: static;
}

.legal {
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
}

.legal-inner {
  max-width: 780px;
}

.legal-titulo {
  font-family: var(--fonte-display);
  font-weight: var(--peso-display);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--text);
}

.legal-data {
  margin: 12px 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bord);
  font-size: 13px;
  color: var(--faint);
}

.legal h2 {
  font-family: var(--fonte-display);
  font-weight: 500;
  font-size: clamp(17px, 2.4vw, 21px);
  letter-spacing: .02em;
  color: var(--gold);
  margin: 40px 0 14px;
}

.legal p,
.legal li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

.legal p {
  margin-bottom: 16px;
}

.legal ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.legal li {
  margin-bottom: 8px;
}

.legal strong {
  color: var(--text);
  font-weight: 500;
}

.legal a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover {
  color: var(--text);
}
