/* ═══════════════════════════════════════════════════════════════
   TOROFILA · landing premium — paleta luxo masculino
   Preto profundo + dourado real + brasa-laranja
   ═══════════════════════════════════════════════════════════════ */

:root {
  --font-display: "Cinzel", "Trajan Pro", serif;
  --font-cond: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --ink: #0A0708;
  --ink-soft: #14100C;
  --ink-mid: #1F1812;
  --grey: #2A211A;
  --grey-line: #3A2F25;

  --bone: #E8E0CC;
  --bone-soft: #C9BFA6;

  --gold: #D4AF37;
  --gold-bright: #FFD166;
  --gold-deep: #8B6914;
  --gold-glow: rgba(212, 175, 55, 0.4);

  --ember: #FF6B1A;
  --ember-bright: #FF8C42;
  --ember-deep: #C2410C;
  --ember-glow: rgba(255, 107, 26, 0.45);

  --red-blood: #8B0000;
}

html {
  scroll-snap-type: y proximity;
  cursor: none;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }

@media (hover: none) {
  html { cursor: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   ATMOSFERA GLOBAL — fundo de brasa fixo
   ═══════════════════════════════════════════════════════════════ */

.universe-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255, 107, 26, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(139, 0, 0, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, #0A0708 0%, #14100C 50%, #0A0708 100%);
}
.universe-noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px;
  mix-blend-mode: overlay;
}

/* Nebulas de brasa (drift sutil) */
.ember-cloud {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}
.ember-cloud-1 {
  top: -10vh; left: -10vw;
  width: 50vw; height: 50vh;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, transparent 65%);
  animation: emberDrift1 42s ease-in-out infinite;
}
.ember-cloud-2 {
  bottom: -10vh; right: -15vw;
  width: 55vw; height: 55vh;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
  animation: emberDrift2 56s ease-in-out infinite;
}
.ember-cloud-3 {
  top: 40vh; left: 50vw;
  width: 40vw; height: 40vh;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.18) 0%, transparent 65%);
  animation: emberDrift3 64s ease-in-out infinite;
}
@keyframes emberDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes emberDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, 35px) scale(1.08); }
}
@keyframes emberDrift3 {
  0%, 100% { transform: translate(0, 0) scale(0.95); opacity: 0.7; }
  50%      { transform: translate(50px, 50px) scale(1.05); opacity: 1; }
}

/* Faíscas subindo (cometas adaptados) */
.sparks-layer {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.spark {
  position: absolute;
  bottom: -20px;
  width: 2px; height: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 26, 0.4) 50%, var(--gold-bright) 100%);
  filter: drop-shadow(0 0 4px var(--ember)) drop-shadow(0 0 8px var(--gold));
  border-radius: 999px;
  opacity: 0;
  will-change: transform, opacity;
}
.spark::after {
  content: ''; position: absolute; bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright), 0 0 16px var(--ember);
}
@keyframes sparkRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(var(--drift)); opacity: 0; }
}
.spark-1  { left: 8%;  --drift: 20px;  animation: sparkRise 8s linear 1s infinite; }
.spark-2  { left: 18%; --drift: -15px; animation: sparkRise 10s linear 4s infinite; }
.spark-3  { left: 28%; --drift: 25px;  animation: sparkRise 9s linear 7s infinite; }
.spark-4  { left: 42%; --drift: -10px; animation: sparkRise 11s linear 2s infinite; }
.spark-5  { left: 56%; --drift: 30px;  animation: sparkRise 9s linear 6s infinite; }
.spark-6  { left: 68%; --drift: -20px; animation: sparkRise 10s linear 9s infinite; }
.spark-7  { left: 78%; --drift: 15px;  animation: sparkRise 12s linear 3s infinite; }
.spark-8  { left: 88%; --drift: -25px; animation: sparkRise 8s linear 11s infinite; }

/* ═══════════════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════════════ */

.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.loader__logo {
  width: clamp(180px, 24vw, 280px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px var(--gold-glow));
  animation: loaderPulse 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--gold-glow)); }
  50%      { transform: scale(1.04); filter: drop-shadow(0 0 50px var(--gold-glow)) drop-shadow(0 0 80px var(--ember-glow)); }
}
.loader__line {
  width: 200px; height: 1px;
  background: rgba(212, 175, 55, 0.15);
  position: relative; overflow: hidden;
}
.loader__line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: loader-fill 1.6s ease-in-out infinite;
}
@keyframes loader-fill {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   CURSOR CUSTOM
   ═══════════════════════════════════════════════════════════════ */

.cursor {
  position: fixed; top: 0; left: 0;
  z-index: 9000; pointer-events: none;
}
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%; pointer-events: none;
  will-change: transform;
}
.cursor__dot {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright), 0 0 4px #fff;
  transform: translate(-50%, -50%);
}
.cursor__ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 209, 102, 0.85);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.cursor.is-hover .cursor__ring {
  width: 56px; height: 56px;
  border-color: var(--ember-bright);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 0 16px var(--ember-glow);
}
@media (hover: none), (max-width: 900px) {
  .cursor { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════════════ */

.progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--ember), var(--red-blood));
  z-index: 99;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  background: rgba(10, 7, 8, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: padding 0.4s ease, background 0.4s ease;
}
.nav.is-scrolled {
  padding-top: 0.7rem; padding-bottom: 0.7rem;
  background: rgba(10, 7, 8, 0.85);
  border-bottom-color: rgba(212, 175, 55, 0.25);
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.nav__logo img {
  height: 36px; width: auto; object-fit: contain;
}
.nav__links {
  display: flex; justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bone-soft);
}
.nav__links a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 99px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 26, 0.45), 0 0 40px rgba(212, 175, 55, 0.25);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL universal
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(10px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 1s cubic-bezier(0.2, 0.7, 0.3, 1),
              filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1; transform: scale(1); filter: blur(0);
}
.hero { opacity: 1; transform: none; filter: none; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem clamp(1.5rem, 3vw, 3rem) 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: clamp(1.5rem, 4vw, 4rem);
  row-gap: 1.5rem;
  z-index: 2;
}

.hero__bg-headline {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.11);
  user-select: none;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  z-index: 0;
}
.hero__bg-headline span { display: block; }

.hero__title-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6.6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0;
}
.hero__title em {
  font-style: normal;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--ember-bright) 55%, var(--ember) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 22px var(--ember-glow));
}

.hero__bottom {
  grid-column: 1 / -1;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__lede {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.55;
  color: var(--bone-soft);
  max-width: 56ch;
  margin: 0;
  text-align: center;
  border-top: 1px solid var(--gold);
  padding-top: 1rem;
}

.hero__actions {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1.05rem 1.8rem;
  background: linear-gradient(135deg, var(--ember-bright) 0%, var(--ember-deep) 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 99px;
  border: 1px solid rgba(255, 209, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 30px rgba(255, 107, 26, 0.45), 0 0 50px rgba(212, 175, 55, 0.18);
  cursor: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 107, 26, 0.6), 0 0 70px rgba(212, 175, 55, 0.3);
}
.btn-primary svg { width: 18px; height: 14px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-soft);
  cursor: none;
  transition: color 0.2s ease;
}
.btn-ghost:hover { color: var(--gold-bright); }
.btn-ghost svg { width: 14px; height: 14px; }

.hero__quick-stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-soft);
  justify-content: center;
}
.hero__quick-stats > span {
  display: flex; flex-direction: column; gap: 0.15rem;
  align-items: center;
  text-align: center;
}
.hero__quick-stats strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--gold-bright);
  line-height: 1;
}

/* ─── HERO PRODUCT ─── */
.hero__product {
  position: relative;
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 1;
  z-index: 3;
  display: grid; place-items: center;
  margin: 0 auto;
}
.hero__product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 2;
}
.hero__product-img img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.7))
          drop-shadow(0 60px 80px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 40px var(--gold-glow));
  animation: heroProductFloat 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroProductFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
.hero__product-glow {
  position: absolute;
  inset: 5% 8%;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 70%, var(--ember-glow) 0%, var(--gold-glow) 40%, transparent 70%);
  filter: blur(60px);
  animation: heroGlowPulse 3.5s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}
.hero__product-pedestal {
  position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65) 0%, transparent 70%);
  filter: blur(15px);
  z-index: 0;
}

/* Anel rotativo dourado atrás do pote */
.hero__product-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  z-index: 0;
  animation: ringRotate 35s linear infinite;
}
.hero__product-ring::before,
.hero__product-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.hero__product-ring::before {
  inset: -8%;
  border: 1px dashed rgba(255, 107, 26, 0.18);
  animation: ringRotate 50s linear infinite reverse;
}
.hero__product-ring::after {
  inset: 18%;
  border: 1px solid rgba(212, 175, 55, 0.14);
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.hero__floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30vh;
  background: linear-gradient(180deg, transparent 0%, var(--ink) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE BENEFÍCIOS
   ═══════════════════════════════════════════════════════════════ */

.marquee {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
  white-space: nowrap;
  padding: 1.1rem 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  animation: marqueeScroll 40s linear infinite;
}
.marquee__track span {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.marquee__track i {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════════════════════ */

.manifesto {
  position: relative;
  width: 100vw;
  min-height: 80vh;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  z-index: 2;
}
.manifesto__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.manifesto__bg picture,
.manifesto__bg img {
  width: 100%; height: 100%; display: block;
}
.manifesto__bg img {
  object-fit: cover;
  object-position: right center;
  filter: contrast(1.05) brightness(0.85);
  opacity: 0.95;
  transform: scale(1.05);
  animation: manifestoZoom 22s ease-out forwards;
}
@media (max-width: 768px) {
  .manifesto__bg img {
    object-position: center 25%;
    opacity: 0.55;
  }
}
@keyframes manifestoZoom {
  0%   { transform: scale(1.22); }
  100% { transform: scale(1.05); }
}
.manifesto__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 7, 8, 0.55) 0%, rgba(10, 7, 8, 0.25) 40%, rgba(10, 7, 8, 0.35) 60%, rgba(10, 7, 8, 0.75) 100%),
    linear-gradient(90deg, rgba(10, 7, 8, 0.75) 0%, rgba(10, 7, 8, 0.15) 55%, rgba(10, 7, 8, 0) 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .manifesto__overlay {
    background:
      linear-gradient(180deg, rgba(10, 7, 8, 0.75) 0%, rgba(10, 7, 8, 0.45) 50%, rgba(10, 7, 8, 0.9) 100%);
  }
}
.manifesto__grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: 0.1;
  background-image: repeating-radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.5) 0, transparent 1px, transparent 2px);
  mix-blend-mode: overlay;
}

.manifesto__content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; gap: 1.5rem;
  max-width: 1100px;
}
.manifesto__cite {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  letter-spacing: 0.45em;
  color: var(--ember);
  text-transform: uppercase;
}
.manifesto__big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5.6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 20ch;
  text-transform: uppercase;
}
.manifesto__big em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--ember) 70%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.manifesto__lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(232, 224, 204, 0.78);
  max-width: 56ch;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   ATMOSPHERIC DIVIDER (transição em brasa)
   ═══════════════════════════════════════════════════════════════ */

.divider {
  position: relative;
  height: 220px;
  margin-top: -110px;
  margin-bottom: -110px;
  z-index: 6;
  pointer-events: none;
}
.divider::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 107, 26, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 30% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 70% 40%, rgba(139, 0, 0, 0.18) 0%, transparent 60%);
  filter: blur(20px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════════════════════════ */

.section {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 7vh, 5rem) clamp(1.5rem, 4vw, 4rem);
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}
.section__kicker {
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--ember);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}
.section__kicker::before, .section__kicker::after {
  content: ''; display: inline-block;
  width: 20px; height: 1px;
  background: var(--ember);
  vertical-align: middle;
  margin: 0 0.8rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0 auto;
}
.section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section__sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.55;
  color: var(--bone-soft);
  max-width: 60ch;
  margin: 1.2rem auto 0;
}

/* ═══════════════════════════════════════════════════════════════
   PAIN POINTS
   ═══════════════════════════════════════════════════════════════ */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pain-card {
  position: relative;
  padding: 2rem 1.6rem;
  background: linear-gradient(160deg, rgba(31, 24, 18, 0.7) 0%, rgba(20, 16, 12, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 4px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.05) 0%, transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 26, 0.12);
}
.pain-card:hover::before { opacity: 1; }
.pain-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: background 0.4s ease, color 0.4s ease;
}
.pain-card:hover .pain-card__icon {
  background: var(--gold);
  color: var(--ink);
}
.pain-card__icon svg { width: 22px; height: 22px; }
.pain-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bone);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.pain-card__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--bone-soft);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT SHOWCASE (com sticky scroll-driven)
   ═══════════════════════════════════════════════════════════════ */

.product-showcase {
  position: relative;
  width: 100vw;
  z-index: 2;
  background: var(--ink);
  padding: clamp(3rem, 8vh, 5rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.product-showcase__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.product-showcase__bg picture,
.product-showcase__bg img {
  width: 100%; height: 100%; display: block;
}
.product-showcase__bg img {
  object-fit: cover;
  object-position: left center;
  filter: contrast(1.08) brightness(0.85);
  opacity: 0.85;
  transform: scale(1.05);
}
.product-showcase__overlay {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 7, 8, 0.55) 0%, rgba(10, 7, 8, 0.30) 35%, rgba(10, 7, 8, 0.45) 65%, rgba(10, 7, 8, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 7, 8, 0) 0%, rgba(10, 7, 8, 0.15) 40%, rgba(10, 7, 8, 0.85) 100%);
}
@media (max-width: 768px) {
  .product-showcase__bg img {
    object-position: center 30%;
    opacity: 0.45;
  }
  .product-showcase__overlay {
    background:
      linear-gradient(180deg, rgba(10, 7, 8, 0.8) 0%, rgba(10, 7, 8, 0.55) 50%, rgba(10, 7, 8, 0.92) 100%);
  }
}
.product-showcase__inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.product-showcase__visual {
  position: relative;
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.product-bg-text {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(10rem, 22vw, 22rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.22);
  user-select: none; pointer-events: none;
  z-index: 0;
}
.product-img {
  position: relative;
  width: 78%;
  aspect-ratio: 1;
  z-index: 2;
}
.product-img img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.7))
          drop-shadow(0 0 50px var(--gold-glow));
}
.product-img-glow {
  position: absolute;
  inset: 10% 15%;
  background: radial-gradient(ellipse at center, var(--ember-glow) 0%, transparent 65%);
  filter: blur(50px);
  z-index: 1;
}

.product-showcase__copy {
  display: flex; flex-direction: column;
  gap: 1.4rem;
}
.product-showcase__copy h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-transform: uppercase;
}
.product-showcase__copy h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.benefits-list {
  display: flex; flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
}
.benefits-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--bone);
  line-height: 1.5;
}
.benefits-list li svg {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--gold-bright);
  margin-top: 2px;
}
.benefits-list li strong {
  font-weight: 600;
  color: var(--gold-bright);
}

/* ═══════════════════════════════════════════════════════════════
   FÓRMULA — split molecular
   ═══════════════════════════════════════════════════════════════ */

.formula {
  position: relative; z-index: 2;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.5rem, 4vw, 4rem);
  background: var(--ink);
}
.formula__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.formula-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(31, 24, 18, 0.85) 0%, rgba(10, 7, 8, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.formula-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.formula-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 1;
}
.formula-card__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold);
  border-radius: 99px;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.formula-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.formula-card__dose {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.formula-card__text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--bone-soft);
  margin-bottom: 1.4rem;
}
.formula-card__pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.formula-card__pills li {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--bone);
}

/* ═══════════════════════════════════════════════════════════════
   RITUAL · jornada scroll-driven
   ═══════════════════════════════════════════════════════════════ */

.ritual-journey {
  position: relative;
  width: 100vw;
  height: 280vh; /* 3 etapas * ~93vh cada */
  z-index: 2;
}
.ritual-journey__sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem clamp(1.5rem, 4vw, 4rem) 4rem;
  overflow: hidden;
}

.ritual-journey__head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 720px;
}
.ritual-journey__head .section__title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin: 0 auto 0.7rem;
}
.ritual-journey__head .section__sub {
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-top: 0;
}

/* Progress bar horizontal */
.ritual-journey__progress {
  position: relative;
  width: min(680px, 90%);
  margin: 0 auto 3rem;
}
.ritual-journey__progress-track {
  position: absolute;
  top: 28px;
  left: 30px; right: 30px;
  height: 2px;
  background: rgba(212, 175, 55, 0.18);
  border-radius: 99px;
  overflow: hidden;
  z-index: 0;
}
.ritual-journey__progress-fill {
  display: block;
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--ember) 100%);
  border-radius: 99px;
  box-shadow: 0 0 14px var(--gold-glow);
  will-change: width;
}
.ritual-journey__dots {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.ritual-journey__dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: none;
  transition: transform 0.3s ease;
}
.ritual-journey__dot-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--ink);
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  color: var(--bone-soft);
  letter-spacing: 0.05em;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease,
              transform 0.3s ease, box-shadow 0.4s ease;
}
.ritual-journey__dot-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-soft);
  transition: color 0.4s ease;
}
.ritual-journey__dot.is-active .ritual-journey__dot-num {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  border-color: var(--gold-bright);
  color: var(--ink);
  transform: scale(1.08);
  box-shadow: 0 0 22px var(--gold-glow), 0 0 40px var(--ember-glow);
}
.ritual-journey__dot.is-active .ritual-journey__dot-label {
  color: var(--gold-bright);
}
.ritual-journey__dot.is-completed .ritual-journey__dot-num {
  background: var(--gold-deep);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Stage com cards sobrepostos (apenas 1 visível) */
.ritual-journey__stage {
  position: relative;
  width: min(820px, 92%);
  min-height: 260px;
}
.ritual-journey__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(31, 24, 18, 0.6) 0%, rgba(10, 7, 8, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.3, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
  pointer-events: none;
  will-change: opacity, transform;
}
.ritual-journey__step.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}
.ritual-journey__step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  color: var(--ember);
  text-transform: uppercase;
}
.ritual-journey__step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
  line-height: 1;
}
.ritual-journey__step-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
  color: var(--bone-soft);
  max-width: 56ch;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */

.stats {
  position: relative; z-index: 2;
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(180deg, var(--ink) 0%, #1F1812 50%, var(--ink) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.stats__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow:
    0 0 30px var(--gold-glow);
  margin-bottom: 0.4rem;
}
.stat__label {
  font-family: var(--font-cond);
  font-size: 0.92rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

/* ═══════════════════════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════════════════════ */

.testimonials {
  position: relative; z-index: 2;
  padding: clamp(3rem, 7vh, 5rem) 0 clamp(3rem, 7vh, 5rem);
  overflow: hidden;
}
.testimonials .section__inner {
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.testimonials__viewport {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  margin-top: clamp(2rem, 4vh, 3rem);
}
.testimonials__track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: testimonialsScroll 60s linear infinite;
  will-change: transform;
}
.testimonials__track:hover {
  animation-play-state: paused;
}
@keyframes testimonialsScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.testimonial {
  position: relative;
  flex: 0 0 340px;
  padding: 1.6rem 1.5rem 1.4rem;
  background: rgba(212, 175, 55, 0.04);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.testimonial__stars {
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.testimonial__quote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--bone);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.testimonial__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--gold);
  margin-right: 0.3rem;
  vertical-align: -0.5em;
}
.testimonial__author {
  display: flex; align-items: center; gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink);
  font-size: 1.05rem;
}
.testimonial__name {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--bone);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.testimonial__meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

/* ═══════════════════════════════════════════════════════════════
   KITS (3 planos — schedule rows estilo Jordan)
   ═══════════════════════════════════════════════════════════════ */

.kits {
  position: relative; z-index: 2;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}
.kits__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(10rem, 30vw, 30rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.05);
  user-select: none; pointer-events: none;
  z-index: -1;
  white-space: nowrap;
}
.kits__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}
.kit {
  position: relative;
  display: flex; flex-direction: column;
  padding: 1.6rem 1.4rem 1.4rem;
  background: linear-gradient(180deg, rgba(31, 24, 18, 0.85) 0%, rgba(10, 7, 8, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
  overflow: hidden;
}
.kit__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 3;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
  color: #FFFFFF;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.32);
}
.kit:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.18);
}
.kit--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 107, 26, 0.18);
  background: linear-gradient(180deg, rgba(31, 24, 18, 0.95) 0%, rgba(20, 16, 12, 1) 100%);
}
.kit--featured::before {
  content: 'MAIS ESCOLHIDO';
  position: absolute;
  top: 1rem; right: -2.4rem;
  background: linear-gradient(90deg, var(--ember) 0%, var(--ember-deep) 100%);
  color: #FFFFFF;
  padding: 0.3rem 2.5rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  transform: rotate(35deg);
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.kit__visual {
  position: relative;
  aspect-ratio: 1.45 / 1;
  margin: -0.4rem 0 0.8rem;
  display: grid; place-items: center;
}
.kit__visual-glow {
  position: absolute;
  inset: 15%;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.kit__visual-stack {
  position: relative;
  width: 92%;
  height: 100%;
  display: grid; place-items: center;
}
.kit__visual-stack img {
  position: absolute;
  width: 65%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.6))
          drop-shadow(0 0 24px var(--gold-glow));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Kit 1x: 1 pote, levemente menor + tilt pra liberar o titulo */
.kit--inicial .kit__visual-stack img:first-child {
  width: 66%;
  transform: translateY(-4%) rotate(-10deg);
  z-index: 3;
}
.kit--inicial .kit__visual-stack img:nth-child(2),
.kit--inicial .kit__visual-stack img:nth-child(3) { display: none; }

/* Kit 2x: 2 potes lado a lado, sobrepostos */
.kit--turbo .kit__visual-stack img:first-child {
  width: 65%;
  transform: translateX(-22%) translateY(2%) rotate(-9deg);
  z-index: 2;
}
.kit--turbo .kit__visual-stack img:nth-child(2) {
  width: 70%;
  transform: translateX(20%) translateY(-2%) rotate(7deg);
  z-index: 3;
}
.kit--turbo .kit__visual-stack img:nth-child(3) { display: none; }

/* Kit 3x: pirâmide invertida */
.kit--premium .kit__visual-stack img:first-child {
  width: 56%;
  transform: translate(-30%, 8%) rotate(-12deg);
  z-index: 1;
}
.kit--premium .kit__visual-stack img:nth-child(2) {
  width: 62%;
  transform: translateY(-8%) rotate(0deg);
  z-index: 3;
}
.kit--premium .kit__visual-stack img:nth-child(3) {
  width: 56%;
  transform: translate(30%, 8%) rotate(12deg);
  z-index: 2;
}

.kit:hover .kit__visual-stack img {
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.7))
          drop-shadow(0 0 35px var(--ember-glow));
}

.kit__head {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  margin-bottom: 1rem;
}
.kit__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}
.kit__sub {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
}
.kit__features {
  display: flex; flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  flex: 1;
}
.kit__features li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--bone);
  line-height: 1.4;
}
.kit__features svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold-bright);
  margin-top: 3px;
}

.kit__price {
  display: flex; flex-direction: column; gap: 0.25rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.kit__price-old {
  font-size: 0.8rem;
  color: var(--bone-soft);
  text-decoration: line-through;
  text-decoration-color: var(--ember);
}
.kit__price-now {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
  text-shadow: 0 4px 20px var(--gold-glow);
}
.kit__price-now .currency {
  font-size: 1.3rem;
  vertical-align: top;
  margin-right: 0.2rem;
  color: var(--gold);
}
.kit__price-installment {
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--bone-soft);
  text-transform: uppercase;
}

.kit__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  width: 100%;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, var(--ember-bright) 0%, var(--ember-deep) 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 99px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.35);
  cursor: none;
}
.kit__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 26, 0.55), 0 0 40px var(--gold-glow);
}
.kit__cta svg { width: 16px; height: 12px; }

.kit__shipping {
  text-align: center;
  margin-top: 0.9rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   GARANTIA
   ═══════════════════════════════════════════════════════════════ */

.guarantee {
  position: relative; z-index: 2;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(180deg, var(--ink) 0%, #1F1812 50%, var(--ink) 100%);
}
.guarantee__inner {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.guarantee__seal {
  width: 220px; height: 220px;
  position: relative;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.guarantee__seal::before, .guarantee__seal::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
}
.guarantee__seal::before {
  border: 2px solid var(--gold);
  animation: ringRotate 22s linear infinite;
  background: radial-gradient(circle, transparent 60%, rgba(212, 175, 55, 0.1) 70%, transparent 80%);
}
.guarantee__seal::after {
  inset: 8%;
  border: 1px dashed var(--ember);
  animation: ringRotate 30s linear infinite reverse;
}
.guarantee__seal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  color: var(--gold-bright);
}
.guarantee__seal-num {
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px var(--gold-glow);
}
.guarantee__seal-label {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
}
.guarantee__copy h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.guarantee__copy h3 em {
  font-style: normal;
  color: var(--gold-bright);
}
.guarantee__copy p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bone-soft);
  max-width: 56ch;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */

.faq {
  position: relative; z-index: 2;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.5rem, 4vw, 4rem);
}
.faq__list {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  background: rgba(31, 24, 18, 0.5);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.is-open {
  border-color: var(--gold);
}
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bone);
  text-align: left;
  cursor: none;
  transition: color 0.3s ease;
  letter-spacing: 0.005em;
}
.faq-item.is-open .faq-item__q { color: var(--gold-bright); }
.faq-item__q:hover { color: var(--gold-bright); }
.faq-item__icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__a-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bone-soft);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 8vh, 5rem) clamp(1.5rem, 4vw, 4rem) 1.5rem;
  background: var(--ink);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img {
  height: 80px; width: auto; object-fit: contain;
  margin-bottom: 1.2rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--bone-soft);
  max-width: 40ch;
}
.footer__col h4 {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.footer__col ul {
  display: flex; flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--bone-soft);
}
.footer__col a:hover { color: var(--gold-bright); }

.footer__bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--bone-soft);
  text-transform: uppercase;
}
.footer__credit {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 1.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--bone-soft);
  text-transform: uppercase;
}
.footer__credit-link {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 209, 102, 0.55);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  font-weight: 600;
}
.footer__credit-link:hover {
  color: var(--ember-bright);
  text-decoration-color: var(--ember-bright);
}

.footer__bigword {
  position: absolute;
  bottom: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(212, 175, 55, 0.04);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: -1;
}

/* ═══════════════════════════════════════════════════════════════
   STICKY CTA (mobile)
   ═══════════════════════════════════════════════════════════════ */

.sticky-cta {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 90;
  display: none;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, var(--ember-bright) 0%, var(--ember-deep) 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 99px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 50px var(--ember-glow);
}
@media (max-width: 900px) {
  .sticky-cta { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    padding: 5.5rem 1.5rem 3rem;
    text-align: center;
  }
  .hero__title-wrap { align-items: center; text-align: center; }
  .hero__lede { text-align: center; border-top: 1px solid var(--gold); border-left: none; padding-top: 1rem; padding-left: 0; }
  .hero__actions, .hero__quick-stats { justify-content: center; }
  .hero__product { width: clamp(260px, 70vw, 440px); margin: 0 auto; }
  .hero__bg-text { font-size: clamp(5rem, 18vw, 10rem); }

  .product-showcase__inner { grid-template-columns: 1fr; }
  .product-bg-text { font-size: clamp(8rem, 32vw, 16rem); -webkit-text-stroke-width: 1.5px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .ritual__grid::before { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .guarantee__seal { margin: 0 auto; }
}

@media (max-width: 900px) {
  html { cursor: auto; }
  .cursor { display: none; }

  .nav {
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__cta { padding: 0.55rem 1rem; font-size: 0.65rem; letter-spacing: 0.18em; }
  .nav__logo img { height: 28px; }

  .hero__title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero__quick-stats strong { font-size: 1.2rem; }

  .manifesto { min-height: 70vh; padding: 3rem 1.5rem; }
  .manifesto__big { font-size: clamp(1.8rem, 8vw, 3.4rem); }
  .marquee__track span { font-size: 0.95rem; letter-spacing: 0.25em; }
  .section { padding: 2.5rem 1.2rem; }
  .section__title { font-size: clamp(1.8rem, 7.5vw, 2.6rem); }

  /* ────────── NETFLIX SCROLL nos cards mobile ────────── */
  .pain-grid,
  .formula__grid,
  .kits__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.2rem;
    gap: 0.9rem;
    padding: 0.5rem 1.2rem 1.5rem;
    margin: 0 -1.2rem;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pain-grid::-webkit-scrollbar,
  .formula__grid::-webkit-scrollbar,
  .kits__grid::-webkit-scrollbar { display: none; }

  .pain-card,
  .formula-card,
  .kit {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: start;
  }

  /* Ritual journey mobile: encolhe altura total e ajusta sticky padding */
  .ritual-journey { height: 240vh; }
  .ritual-journey__sticky { padding: 5rem 1.2rem 3rem; }
  .ritual-journey__head { margin-bottom: 1.5rem; }
  .ritual-journey__head .section__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .ritual-journey__progress { width: 92%; margin-bottom: 2rem; }
  .ritual-journey__progress-track { left: 22px; right: 22px; top: 22px; }
  .ritual-journey__dot-num { width: 44px; height: 44px; font-size: 0.85rem; }
  .ritual-journey__dot-label { font-size: 0.66rem; letter-spacing: 0.22em; }
  .ritual-journey__step { padding: 1.2rem 1rem; }
  .ritual-journey__step-title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .ritual-journey__step-text { font-size: 0.95rem; }

  /* Hero shrunken */
  .hero { padding: 5rem 1.2rem 2.5rem; row-gap: 1rem; }
  .hero__product { width: clamp(280px, 80vw, 420px); margin: 0 auto; }

  /* Testimonial card menor no mobile */
  .testimonial { flex: 0 0 280px; padding: 1.2rem 1.1rem 1rem; }
  .testimonial__quote { font-size: 0.92rem; }

  body { padding-bottom: 5rem; }

  /* footer big word menor */
  .footer__bigword { font-size: clamp(3rem, 14vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PERFORMANCE — content-visibility skip render offscreen
   ═══════════════════════════════════════════════════════════════ */

.product-showcase,
.formula,
.stats,
.testimonials,
.kits,
.guarantee,
.faq,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* GPU compositing nas camadas atmosfera (mantém animação fluida) */
.universe-bg,
.universe-noise,
.ember-cloud,
.sparks-layer,
.hero__product-glow,
.hero__product-ring {
  transform: translateZ(0);
  backface-visibility: hidden;
}
