/* ══════════════════════════════════════════════════
   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);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  font-family: 'Alexandria', Georgia, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* 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)
════════════════════════════════ */
/* eyebrows — rótulos de produto, Cormorant itálico */
.hero-eyebrow,
.model-eyebrow,
.buy-eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: .1em;
  color: var(--muted);
}

/* marcadores de produto — volume, alertas */
.product-volume,
.precaution-title {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .06em;
  color: var(--gold);
}

/* marcadores de seção — Cinzel com réguas decorativas */
.section-title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ════════════════════════════════
   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: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  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;
  padding: 14px 0;
  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: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  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 {
  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: 60px 0;
}

.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: 'Cinzel', serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  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 {
  padding: 6px 16px;
  border: 1px solid var(--bord);
  font-family: 'Cinzel', serif;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

/* 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: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.seal-mid {
  font-family: 'Cinzel', serif;
  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-block;
  padding: 14px 28px;
  background: var(--cr);
  color: #fff;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  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: 'Cinzel', serif;
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 700;
  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 {
  background: var(--bg-2);
  padding: 90px 0 40px;
}

.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: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  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: 'Cinzel', serif;
  font-weight: 700;
  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 {
  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;
}

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

/* galeria principal — produto em destaque */
.product-gallery {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-main {
  background: radial-gradient(ellipse 55% 62% at 50% 46%, #2e1d04 0%, #130c02 48%, #090705 80%);
  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: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 20px;
}

/* HEADLINE */
.product-name {
  font-family: 'Cinzel', serif;
  font-size: 70px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.0;
  margin-bottom: 32px;
}

.product-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 0 32px;
  width: 100%;
}

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

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}

.badge {
  padding: 6px 16px;
  border: 1px solid var(--bord);
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

/* ════════════════════════════════
   BENEFITS
════════════════════════════════ */
.benefits {
  padding: 90px 0;
  background: var(--bg-2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}

.benefit-card {
  padding: 40px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-2);
  transition: background .3s;
}

.benefit-card:hover {
  background: var(--bg-3);
}

.benefit-icon {
  flex-shrink: 0;
  color: var(--gold);
  padding-top: 2px;
}

.benefit-icon svg {
  display: block;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-num-title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

/* ════════════════════════════════
   ACTIVE INGREDIENTS — editorial rows
════════════════════════════════ */
.actives {
  padding: 90px 0;
}

.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: 'Cormorant Garamond', Georgia, serif;
  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;
}

.actives-cta {
  margin-top: 48px;
  text-align: center;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  counter-reset: step-counter;
}

.step {
  counter-increment: step-counter;
  border: 1px solid var(--rule);
  padding: 32px;
  border-radius: 14px;
}

.step::before {
  content: '0' counter(step-counter);
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: .35;
}

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

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

.usage-note {
  text-align: center;
  color: var(--faint);
  font-size: 16px;
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
}

.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
════════════════════════════════ */
.buy-cta {
  padding: clamp(48px, 5vw, 72px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--bord);
}

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

/* foto modelo com overlay escuro */
.buy-product {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.buy-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;
}

.buy-product img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(.55) saturate(.78) contrast(1.08);
  transition: transform .7s ease;
}

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

/* LABEL */
.buy-eyebrow {
  margin-bottom: 22px;
}

/* DISPLAY */
.buy-headline {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 74px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

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

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

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

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  padding: 36px 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: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  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: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 600;
  letter-spacing: .08em;
  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: .2em;
  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;
  }

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

  .buy-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;
  }

  /* benefits — coluna única centralizada */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    flex-direction: column;
    align-items: center;
    padding: 28px 24px;
    text-align: center;
  }

  /* 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;
  }

  .product-rule {
    display: 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 */
  .buy-product {
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
  }

  .buy-product img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center top;
    height: auto;
  }

  /* gradiente vira fade para baixo ao empilhar */
  .buy-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-name {
    font-size: clamp(20px, 5.5vw, 30px);
  }

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

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

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

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

  .benefit-card p,
  .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::before {
    font-size: clamp(36px, 9vw, 56px);
  }

  .buy-headline {
    font-size: clamp(28px, 8vw, 44px);
  }

  .buy-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-badges {
    justify-content: center;
  }

  .benefit-card {
    text-align: 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;
  }

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

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

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

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

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

  /* botão buy — bloco editorial, sem quebra de linha */
  .buy-copy .btn-primary {
    display: block;
    text-align: center;
    letter-spacing: .07em;
    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::before {
    margin-bottom: 10px;
    font-size: clamp(28px, 8vw, 44px);
  }

  /* 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;
  }

  /* benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 36px 24px;
  }

  /* 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 */
  .buy-product {
    max-width: 100%;
  }

  .buy-headline {
    font-size: clamp(26px, 7.5vw, 38px);
  }

  /* 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;
  }

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