
/* Goldplay font family */
@font-face { font-family: "Goldplay"; font-style: normal; font-weight: 100; font-display: swap; src: url("fonts/Goldplay-Thin.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: normal; font-weight: 300; font-display: swap; src: url("fonts/Goldplay-Light.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/Goldplay-Regular.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/Goldplay-Medium.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/Goldplay-SemiBold.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/Goldplay-Bold.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: normal; font-weight: 900; font-display: swap; src: url("fonts/Goldplay-Black.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: italic; font-weight: 100; font-display: swap; src: url("fonts/Goldplay-Alt-Thin.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: italic; font-weight: 300; font-display: swap; src: url("fonts/Goldplay-Alt-Light.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/Goldplay-Alt-Regular.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: italic; font-weight: 500; font-display: swap; src: url("fonts/Goldplay-Alt-Medium.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: italic; font-weight: 600; font-display: swap; src: url("fonts/Goldplay-Alt-SemiBold.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: italic; font-weight: 700; font-display: swap; src: url("fonts/Goldplay-Alt-Bold.otf") format("opentype"); }
@font-face { font-family: "Goldplay"; font-style: italic; font-weight: 900; font-display: swap; src: url("fonts/Goldplay-Alt-Black.otf") format("opentype"); }
/* ═════════════ REVEAL ON SCROLL ═════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity .9s cubic-bezier(.2,.7,.2,1),
      transform .9s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity .8s cubic-bezier(.2,.7,.2,1),
      transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger.in > *:nth-child(2) { transition-delay: 120ms; }
  .reveal-stagger.in > *:nth-child(3) { transition-delay: 240ms; }
  .reveal-stagger.in > *:nth-child(4) { transition-delay: 360ms; }
  .reveal-stagger.in > *:nth-child(5) { transition-delay: 480ms; }
  .reveal-stagger.in > *:nth-child(6) { transition-delay: 600ms; }
}

/* ═════════════ TOKENS ═════════════ */
:root {
  --cream:        #F5EFE6;
  --cream-alt:    #EBE3D2;
  --cream-soft:   #FAF6EE;
  --ink:          #0E0E0E;
  --ink-2:        #5A5350;
  --ink-3:        #8B847D;
  --gold:         #C9A658;
  --gold-dark:    #A68642;
  --green:        #2E5849;
  --green-dark:   #1E3D32;
  --red:          #C8392F;
  --rule:         #D9CCB2;
  --rule-dark:    #2A2724;
  --black:        #0E0E0E;
  --black-2:      #181818;

  --maxw: 1200px;
  --pad-x: 20px;
  --gap-section: 72px;

  --font-display: "Goldplay", "Helvetica Neue", sans-serif;
  --font-body: "Goldplay", "IBM Plex Sans", system-ui, -apple-system, sans-serif;
}
@media (min-width: 1025px) {
  :root { --pad-x: 32px; --gap-section: 112px; }
}

/* ═════════════ RESET ═════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ═════════════ LAYOUT ═════════════ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: var(--gap-section) 0; position: relative; }
section.alt { background: var(--cream-alt); }
section.dark { background: var(--black); color: var(--cream); }
section.dark p { color: rgba(245, 239, 230, 0.85); }

.divider { width: 56px; height: 1px; background: var(--rule); margin: 36px auto; border: 0; }
.divider.dark { background: var(--rule-dark); }
.divider.gold { background: var(--gold); width: 36px; height: 2px; }

.center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }

/* ═════════════ TYPE ═════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.h-display .strike {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
}
.h-display .strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; top: 52%;
  height: 3px;
  background: var(--red);
  transform: rotate(-3deg);
}
.h-display em { font-style: italic; color: var(--gold-dark); font-weight: 500; }

/* Hero rotator — negative <-> positive */
.hero-rotator {
  position: relative;
  display: block;
  min-height: 2.4em;
}
.hero-rotator .rot {
  display: block;
  transition: opacity .7s ease, transform .7s ease;
  opacity: 0;
  transform: translateY(8px);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-rotator .rot.is-on {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.hero-rotator .rot-b em.underline-green {
  font-style: italic;
  color: var(--green);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.hero-rotator .rot-b em.underline-green::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: -4px;
  height: 4px;
  background: var(--green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .7s cubic-bezier(.2,.7,.2,1) .25s;
}
.hero-rotator .rot-b.is-on em.underline-green::after { transform: scaleX(1); }

.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.h-section.on-dark { color: var(--cream); }
.h-section em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.h-section.on-dark em { color: var(--gold); }

.lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 560px;
}
.lede.on-dark { color: rgba(245, 239, 230, 0.78); }

.editorial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--gold-dark);
  line-height: 1.25;
  margin-top: 28px;
}
.editorial.on-dark { color: var(--gold); }

/* ═════════════ CTA ═════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 36px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 22px -8px rgba(46, 88, 73, 0.55);
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 10px 28px -10px rgba(46, 88, 73, 0.7); }
.btn:active { transform: translateY(0); }
.btn.full { display: flex; width: 100%; }
.btn.lg { padding: 24px 42px; font-size: 16px; }
.btn.gold-on-dark { background: var(--gold); color: var(--black); }
.btn.gold-on-dark:hover { background: #D8B568; }
.btn .arrow { transition: transform .2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.microcopy {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.microcopy.on-dark { color: rgba(245,239,230,0.55); }

.stars { color: var(--gold); letter-spacing: 0.06em; font-size: 14px; }

/* ═════════════ TOPBAR ═════════════ */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  height: 64px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--ink); }
.brand-name em { font-style: italic; color: var(--gold-dark); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar .ship-note {
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(46,88,73,0.08);
  border: 1px solid rgba(46,88,73,0.22);
  border-radius: 999px;
  font-weight: 500;
}
.topbar .ship-note strong { font-weight: 700; color: var(--green-dark); }
.ship-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46,88,73,0.6);
  animation: ship-pulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes ship-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,88,73,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(46,88,73,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,88,73,0); }
}
.topbar .btn { padding: 12px 22px; font-size: 12px; box-shadow: none; }
@media (max-width: 768px) {
  .topbar .ship-note { display: none; }
  .brand img { height: 36px; }
  .brand-name { font-size: 15px; }
  .topbar .btn { padding: 11px 20px; font-size: 11px; }
}

/* ═════════════ HERO ═════════════ */
.hero { padding: 40px 0 var(--gap-section); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text > .eyebrow { margin-bottom: 20px; }
.hero-text .h-display { margin-bottom: 22px; }
.hero-text .lede { margin-bottom: 30px; }
.hero-cta { margin-bottom: 18px; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.hero-meta .meta-item {
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-alt);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 75% center; }
.hero-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(14,14,14,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 12px 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  max-width: 260px;
  line-height: 1.35;
}

@media (min-width: 1025px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
  .hero-text { padding-right: 16px; }
}

/* ═════════════ SOCIAL STRIP ═════════════ */
.social-strip {
  background: var(--cream-soft);
  padding: 64px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.social-head { text-align: center; margin-bottom: 36px; }
.social-head .big-rating {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
}
.social-head .stars { font-size: 22px; }
.social-head .ratings-meta {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}
.tweets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 769px) { .tweets { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1025px) { .tweets { grid-template-columns: repeat(4, 1fr); } }
.tweet {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 22px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 12px;
}
.tweet-head { display: flex; align-items: center; gap: 12px; }
.tweet-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8D5B5 0%, #C9A658 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
}
.tweet-meta .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.tweet-meta .city { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.tweet-body { font-size: 15px; line-height: 1.55; color: var(--ink); }
.tweet-body strong { font-weight: 600; }
.tweet-stars { font-size: 13px; }

/* ═════════════ DOR / DARK ═════════════ */
.dor-figure {
  max-width: 760px;
  margin: 0 auto 64px;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
}
.dor-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* push the woman+mirror to the right, hide the "e ai" artifact */
  object-position: 80% center;
  filter: contrast(1.02) saturate(1.05);
}
.dor-figure-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(95deg,
    rgba(14,14,14,0.96) 0%,
    rgba(14,14,14,0.92) 38%,
    rgba(14,14,14,0.55) 52%,
    rgba(14,14,14,0) 68%);
  pointer-events: none;
}
.dor-figure-cap {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.25;
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .dor-figure { aspect-ratio: 4 / 5; }
  .dor-figure-cap { max-width: 70%; font-size: 19px; }
  .dor-figure-overlay {
    background: linear-gradient(180deg,
      rgba(14,14,14,0.78) 0%,
      rgba(14,14,14,0.35) 50%,
      rgba(14,14,14,0.65) 100%);
  }
}

.dor-section {
  background:
    radial-gradient(ellipse at top, rgba(200,57,47,0.06), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(201,166,88,0.04), transparent 60%),
    var(--black);
  padding: clamp(80px, 11vw, 144px) 0;
}
.red-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 57, 47, 0.08);
  border: 1px solid rgba(200, 57, 47, 0.4);
  color: var(--red);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.red-emph { color: #FF6B5C; font-weight: 700; }
.pain-prose { max-width: 760px; margin: 0 auto; }
.pain-prose p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
  margin-bottom: 1.4em;
  color: rgba(245,239,230,0.88);
}
.strikephrase { display: inline-block; position: relative; }
.strikephrase::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; top: 50%;
  height: 2px;
  background: var(--red);
  transform: rotate(-2deg);
}
.patterns-block {
  margin-top: 64px;
  max-width: 1080px;
  margin-left: auto; margin-right: auto;
}
.patterns-intro {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 36px;
  line-height: 1.35;
}
.patterns-intro em { color: var(--cream); font-style: italic; }
.patterns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 769px) {
  .patterns-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
.pattern-card {
  background: rgba(245,239,230,0.03);
  border: 1.5px solid var(--red);
  padding: 26px 28px;
  border-radius: 6px;
  transition: background .2s ease, transform .2s ease;
}
.pattern-card:hover { background: rgba(200,57,47,0.05); transform: translateY(-2px); }
.pattern-label {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.pattern-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--cream);
}
.pattern-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245,239,230,0.7);
  margin: 0;
}
.pattern-card p strong { color: var(--gold); font-weight: 600; }
.pain-conclusion { max-width: 760px; margin: 64px auto 0; }
.pain-conclusion .punch {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
  margin-top: 40px;
}
.pain-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 48px auto 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
}
.pain-arrow .caret {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--gold);
  animation: caret-blink 1s steps(2, end) infinite;
}
@keyframes caret-blink {
  to { visibility: hidden; }
}

/* ═════════════ HISTÓRIA SPLIT ═════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-soft);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.split-img--wide { aspect-ratio: 3 / 2; background: #fff; }
.split-img--wide img { object-fit: contain; object-position: center center; }
@media (min-width: 1025px) {
  .split-img--wide { aspect-ratio: auto; height: 100%; }
}
.split-img--contain { background: #fff; padding: 16px; }
.split-img--contain img { object-fit: contain; object-position: center center; }
.split-text strong { font-weight: 600; }
@media (min-width: 1025px) {
  .split { grid-template-columns: 1fr 1fr; gap: 96px; }
  .split.reverse > :first-child { order: 2; }
}

/* ═════════════ MECANISMO 3 CARDS ═════════════ */
.mech-section {
  background:
    radial-gradient(ellipse at top, rgba(46,88,73,0.06), transparent 55%),
    var(--cream-alt);
  position: relative;
}
.mech-intro { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.mech-intro .eyebrow { color: var(--green); }
.mech-intro .h-section em { color: var(--green); }
.mech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 769px) { .mech-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.mech-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 40px 30px 36px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mech-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
  transform: scaleY(0.4);
  transform-origin: top;
  transition: transform .35s ease;
}
.mech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(46,88,73,0.25);
  border-color: rgba(46,88,73,0.3);
}
.mech-card:hover::before { transform: scaleY(1); }
.mech-num {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.mech-num .n {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--green);
}
.mech-num .label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
}
.mech-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 14px;
  line-height: 1.2;
  color: var(--green-dark);
}
.mech-card p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin: 0; }
.mech-card p strong { color: var(--green); font-weight: 600; }
.mech-card .leaf {
  position: absolute;
  top: 22px; right: 22px;
  width: 22px; height: 22px;
  opacity: 0.18;
}
.mech-close {
  text-align: center;
  margin-top: 64px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--green);
  line-height: 1.25;
}
.mech-close::before, .mech-close::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin: 0 16px;
  opacity: 0.5;
}
.mech-card {
  border: 1px solid var(--rule);
  background: var(--cream-soft);
  padding: 36px 28px;
}
.mech-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
}
.mech-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 14px;
  line-height: 1.2;
}
.mech-card p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin: 0; }
.mech-card p strong { color: var(--ink); font-weight: 600; }
.mech-close { text-align: center; margin-top: 56px; }

/* ═════════════ CLINICAL STRIP ═════════════ */
.clinical-strip {
  margin-top: 64px;
  padding: 48px clamp(24px, 4vw, 56px);
  background: linear-gradient(180deg, #fff 0%, var(--cream-soft) 100%);
  border: 1px solid rgba(46,88,73,0.18);
  position: relative;
}
.clinical-strip::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
}
.clinical-head { text-align: center; margin-bottom: 32px; }
.clinical-sub {
  margin: 12px auto 0;
  max-width: 620px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}
.clinical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
@media (min-width: 769px) { .clinical-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.clinical-stat { text-align: left; }
.c-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  color: var(--green);
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.c-pct { font-size: 0.55em; font-weight: 500; margin-left: 2px; color: var(--gold-dark); }
.c-lbl {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
}
.c-lbl strong { color: var(--ink); font-weight: 600; }
.clinical-foot {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(46,88,73,0.12);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* ═════════════ ALLAMANDA ═════════════ */
.allamanda-section {
  background:
    radial-gradient(ellipse at top right, rgba(201,166,88,0.06), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(46,88,73,0.05), transparent 60%),
    var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.allamanda-section::before {
  content: "";
  position: absolute;
  top: 8%; left: -120px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(233,177,78,0.12), transparent 70%);
  pointer-events: none;
}
.allamanda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1025px) {
  .allamanda-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}
.allamanda-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #fff;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 30px 60px -30px rgba(46,88,73,0.18);
}
.allamanda-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.allamanda-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--green);
  border-left: 3px solid var(--green);
}
.allamanda-content { max-width: 560px; }
.allamanda-content .h-section em { color: var(--green); }
.allamanda-lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 32px;
}
.highlight-green {
  background: linear-gradient(180deg, transparent 62%, rgba(46,88,73,0.22) 62%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--green-dark);
}
.allamanda-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(46,88,73,0.18);
  border-bottom: 1px solid rgba(46,88,73,0.18);
}
@media (max-width: 480px) {
  .allamanda-stats { grid-template-columns: 1fr; gap: 18px; padding: 20px 0; }
}
.a-stat { display: flex; flex-direction: column; gap: 6px; }
.a-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--green);
  display: inline-flex;
  align-items: baseline;
}
.a-plus, .a-pct {
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 2px;
  color: var(--gold-dark);
}
.a-lbl {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.45;
  font-weight: 600;
}
.allamanda-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ═════════════ ANTES/DEPOIS ═════════════ */
.ba-section { padding: 0; background: var(--black); }
.ba-content { padding: var(--gap-section) 0; text-align: center; color: var(--cream); }
.ba-img {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: block;
  height: auto;
}
.ba-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gold);
  margin-top: 24px;
}
.ba-note {
  font-size: 12px;
  color: rgba(245,239,230,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ═════════════ MANIFESTO ═════════════ */
.manifesto-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1025px) {
  .manifesto-split { grid-template-columns: 1fr 0.85fr; gap: 80px; }
}
.manifesto-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.manifesto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.manifesto-content { text-align: left; max-width: 580px; }
.manifesto-content .h-section {
  font-style: italic;
  text-align: left;
  margin-bottom: 32px;
  line-height: 1.02;
}
.manifesto-content p {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  margin-bottom: 1.2em;
  color: var(--ink);
}
.manifesto-content p strong { font-weight: 600; color: var(--ink); }
.manifesto-content .opener {
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}
.manifesto-content .opener::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.6em;
  line-height: 0.82;
  float: left;
  margin: 6px 14px 0 0;
  color: var(--gold-dark);
  font-style: italic;
}
.manifesto-content .highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(201,166,88,0.28) 60%);
  padding: 0 2px;
  font-weight: 500;
}
.manifesto-content .pull {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-style: italic;
}
.manifesto-content .pull strong {
  color: var(--ink);
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-body);
  display: block;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 10px;
}
.manifesto-content .closing {
  text-align: left;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--gold-dark);
  line-height: 1.3;
  margin-top: 32px;
}

/* ═════════════ BENEFÍCIOS ═════════════ */
.benefits-section { position: relative; overflow: hidden; }
.benefits-head { text-align: center; max-width: 720px; margin: 0 auto 24px; }

/* Healing timeline above the cards */
.healing-bar {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 8px;
}
.healing-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: var(--cream-alt);
  overflow: hidden;
}
.healing-track::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg,
    #C8392F 0%,      /* red - dia 1, inflamada */
    #E66A3C 22%,     /* orange - dia 7 */
    #E9B14E 45%,     /* amber */
    #D8C36F 65%,     /* yellow */
    #C9A658 82%,     /* gold */
    #2E5849 100%     /* green - barreira recuperada */
  );
  border-radius: 999px;
  animation: healing-fill 4.5s cubic-bezier(.55,.05,.25,1) forwards;
  animation-play-state: paused;
}
.benefits-section.in-view .healing-track::before { animation-play-state: running; }
@keyframes healing-fill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* Day labels above the track */
.healing-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 14px;
}
.healing-days .d {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: left;
}
.healing-days .d-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0;
  text-transform: none;
}
.healing-days .d:nth-child(1) .d-num { color: #C8392F; }
.healing-days .d:nth-child(2) .d-num { color: #E66A3C; }
.healing-days .d:nth-child(3) .d-num { color: #C9A658; }
.healing-days .d:nth-child(4) .d-num { color: #2E5849; }

/* Tick marks below the track aligned with the cards */
.healing-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -4px;
  padding: 0 4px;
}
.healing-ticks .t {
  width: 2px; height: 14px;
  background: var(--rule);
  margin: 0 auto;
}
@media (max-width: 600px) {
  .healing-days { grid-template-columns: 1fr 1fr; gap: 16px 24px; }
  .healing-ticks { display: none; }
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 8px;
}
@media (min-width: 600px) { .benefits { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; } }
@media (min-width: 1025px) { .benefits { grid-template-columns: repeat(4, 1fr); gap: 28px 24px; } }
.benefit {
  position: relative;
  padding-top: 28px;
}
.benefit-mark {
  width: 36px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--gold);
  border-radius: 999px;
  transition: background .35s ease, width .35s ease;
}
.benefit:nth-child(1) .benefit-mark { background: #C8392F; }
.benefit:nth-child(2) .benefit-mark { background: #E66A3C; }
.benefit:nth-child(3) .benefit-mark { background: #C9A658; }
.benefit:nth-child(4) .benefit-mark { background: #2E5849; }

.benefit .stage-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
}
.benefit:nth-child(1) .stage-label { background: rgba(200, 57, 47, 0.10); color: #C8392F; }
.benefit:nth-child(2) .stage-label { background: rgba(230, 106, 60, 0.12); color: #C45827; }
.benefit:nth-child(3) .stage-label { background: rgba(201, 166, 88, 0.18); color: var(--gold-dark); }
.benefit:nth-child(4) .stage-label { background: rgba(46, 88, 73, 0.10); color: var(--green); }

.benefit h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
}
.benefit p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin: 0; }

/* ═════════════ FOR / NOT FOR ═════════════ */
.for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 769px) { .for-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.for-card {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--rule);
}
.for-card.is-for { border-top: 4px solid var(--green); }
.for-card.not-for { border-top: 4px solid var(--red); opacity: 0.95; }
.for-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.for-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.is-for .for-icon { background: var(--green); color: #fff; }
.not-for .for-icon { background: var(--red); color: #fff; }
.for-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}
.for-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.for-card li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.is-for li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.not-for li { color: var(--ink-2); }
.not-for li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; font-size: 13px; }

/* ═════════════ COMPARAÇÃO ═════════════ */
.compare {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  background: var(--cream-soft);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--rule);
}
.compare-row:last-child { border-bottom: 0; }
@media (min-width: 769px) {
  .compare-row { grid-template-columns: 200px 1fr 1fr; }
}
.compare-cell {
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.55;
  border-right: 1px solid var(--rule);
}
.compare-cell:last-child { border-right: 0; }
@media (max-width: 768px) {
  .compare-cell { border-right: 0; border-bottom: 1px solid var(--rule); padding: 16px 20px; }
  .compare-cell:last-child { border-bottom: 0; }
  .compare-row:last-child .compare-cell:last-child { border-bottom: 0; }
}
.compare-cell.label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  background: var(--cream-alt);
}
@media (min-width: 769px) { .compare-cell.label { display: flex; align-items: center; } }
.compare-cell.ours { background: #F5F8F4; color: var(--ink); }
.compare-cell.ours strong { color: var(--green); font-weight: 700; }
.compare-cell.theirs { color: var(--ink-2); font-style: italic; }
.compare-head .compare-cell {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  padding: 24px;
}
.compare-head .compare-cell.label { background: var(--ink); color: var(--cream); }
.compare-head .compare-cell.ours { background: var(--green); color: #fff; }
.compare-head .compare-cell.theirs { background: var(--ink); color: rgba(245,239,230,0.6); font-style: normal; }

/* ═════════════ OFERTA ═════════════ */
.two-sizes {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  position: relative;
  display: inline-block;
  padding: 0 6px;
  background: linear-gradient(180deg, transparent 62%, rgba(46,88,73,0.18) 62%);
  animation: two-sizes-pulse 2.6s ease-in-out infinite;
}
.two-sizes::after {
  content: "60 / 150";
  position: absolute;
  top: -14px;
  right: -32px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 3px 8px;
  transform: rotate(4deg);
  white-space: nowrap;
}
@keyframes two-sizes-pulse {
  0%, 100% { background: linear-gradient(180deg, transparent 62%, rgba(46,88,73,0.18) 62%); }
  50%      { background: linear-gradient(180deg, transparent 62%, rgba(46,88,73,0.34) 62%); }
}
@media (max-width: 600px) {
  .two-sizes::after { right: -28px; top: -10px; font-size: 8px; }
}
.offer-section { background: var(--cream-soft); }
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1025px) {
  .offer-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.offer-img {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.offer-img--photo { padding: 0; background: var(--cream-alt); }
.offer-img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.offer-img--product {
  padding: 32px;
  background: linear-gradient(180deg, #FAF6EE 0%, #EFE6D5 100%);
}
.offer-img--product img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(60, 50, 20, 0.18));
  transition: opacity .25s ease;
}
/* Product tube — white + gold, matching real Emulsicalm packaging */
.tube-pair {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 100%;
  padding: 20px 12px;
}
.tube {
  position: relative;
  background: linear-gradient(168deg, #FFFFFF 0%, #F8F2E7 60%, #EFE4CE 100%);
  border-radius: 6px 6px 30px 30px / 6px 6px 14px 14px;
  box-shadow:
    inset 0 6px 12px rgba(255,255,255,0.9),
    inset 0 -10px 24px rgba(166, 134, 66, 0.12),
    0 22px 50px -20px rgba(60, 50, 20, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 14px 30px;
  text-align: center;
}
.tube::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 14px;
  background: #C9A658;
  border-radius: 4px 4px 0 0;
}
.tube .t-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #C9A658;
  margin-bottom: -4px;
}
.tube .t-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: #C9A658;
  margin-bottom: 14px;
}
.tube .t-bar {
  width: 70%;
  height: 1px;
  background: #2E5849;
  margin-bottom: 8px;
}
.tube .t-cat {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2E5849;
  margin-bottom: 4px;
}
.tube .t-sub {
  font-family: var(--font-body);
  font-size: 7.5px;
  letter-spacing: 0.06em;
  color: #5A5350;
  margin-bottom: 14px;
}
.tube .t-seal {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #FFFDF6;
  border: 1px solid #C9A658;
  display: flex; align-items: center; justify-content: center;
  color: #C9A658;
  font-size: 12px;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 14px;
}
.tube .t-feat {
  list-style: none; padding: 0; margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 7px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: #2E5849;
  font-weight: 500;
}
.tube .t-size {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A68642;
}
.tube.small { width: 30%; height: 72%; }
.tube.large { width: 38%; height: 94%; }

.offer-body .h-section { margin-bottom: 14px; }
.offer-sub {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 480px;
}
.size-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}
@media (min-width: 480px) { .size-selector { grid-template-columns: 1fr 1fr; } }
.size-card {
  text-align: left;
  border: 1.5px solid var(--rule);
  background: #fff;
  padding: 24px 22px;
  cursor: pointer;
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  position: relative;
}
.size-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px -12px rgba(0,0,0,0.12); }
.size-card[aria-pressed="true"] {
  border-color: var(--green);
  background: #F5F8F4;
  box-shadow: 0 0 0 4px rgba(46,88,73,0.08);
}
.size-card[aria-pressed="true"]::after {
  content: "✓";
  position: absolute;
  top: 14px; right: 16px;
  width: 26px; height: 26px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.size-card.best { padding-top: 36px; }
.save-badge {
  position: absolute;
  top: -12px; left: 14px;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(200, 57, 47, 0.4);
}
.price-was {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink-3);
  text-decoration: line-through;
  margin-left: 8px;
  vertical-align: middle;
}
.save-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.size-card .s-best {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px;
}
.size-card .s-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 6px;
}
.size-card .s-price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 14px;
}
.size-card .s-price em { font-style: italic; color: var(--gold-dark); font-weight: 500; font-size: 16px; margin-right: 6px; }
.size-card ul { list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.size-card li { padding: 3px 0; }

.feature-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
@media (min-width: 480px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-grid li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.feature-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 2px;
  background: var(--gold);
}

/* ═════════════ CTA BANNER DARK ═════════════ */
.cta-banner {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,166,88,0.08), transparent 60%);
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-banner .eyebrow { margin-bottom: 22px; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 24px;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner .sub {
  color: rgba(245,239,230,0.7);
  font-size: clamp(16px, 1.5vw, 19px);
  margin: 0 auto 36px;
  max-width: 540px;
}

/* ═════════════ URGÊNCIA ═════════════ */
.urgency-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .urgency-split { grid-template-columns: 0.85fr 1fr; gap: 80px; }
}
.urgency-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-soft);
}
.urgency-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(0.92);
  transform-origin: center top;
}
.urgency-content { max-width: 540px; text-align: left; }
.urgency-content .h-section { text-align: left; }
.urgency-content p {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.2em;
}
.urgency-content p strong { font-weight: 600; color: var(--ink); }
.urgency-content .highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(201,166,88,0.28) 60%);
  padding: 0 2px;
  font-weight: 500;
}
.urgency-content .pull {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.3;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-style: italic;
}
.urgency-content .closing {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--green);
  line-height: 1.3;
  margin-top: 28px;
}

/* ═════════════ BÔNUS ═════════════ */
.bonuses-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.bonus-list { max-width: 820px; margin: 0 auto; }
.bonus {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.bonus:last-child { border-bottom: 1px solid var(--rule); }
.bonus-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
}
.bonus-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.bonus-body p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.bonus-value {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.bonus-total {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
}
.bonus-total .label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}
.bonus-total .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--ink);
}
.bonus-total .value em { font-style: italic; color: var(--gold-dark); font-weight: 500; }
.bonus-total .you-pay { margin-top: 12px; font-size: 14px; color: var(--ink-2); }
.bonus-total .you-pay strong { color: var(--green); font-weight: 700; }

/* ═════════════ GARANTIA ═════════════ */
.guarantee-section { background: var(--cream-alt); }
.guarantee-box {
  max-width: 760px;
  margin: 0 auto;
  border: 2px solid var(--gold);
  padding: clamp(36px, 6vw, 64px);
  background: var(--cream-soft);
  text-align: center;
}
.seal {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-dark);
  background: #fff;
}
.seal .num { font-size: 30px; line-height: 1; font-style: italic; }
.seal .lbl {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 4px;
  color: var(--ink-2);
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-body);
}
.guarantee-box .h-section { margin-bottom: 24px; }
.guarantee-box p {
  color: var(--ink);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  text-align: left;
}
@media (min-width: 769px) { .guarantee-box p { text-align: center; } }
.guarantee-box .closing {
  margin-top: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold-dark);
  text-align: center;
}
.guarantee-terms {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-3);
  text-align: center;
  font-style: normal;
  letter-spacing: 0.01em;
}
.guarantee-terms sup { color: var(--gold-dark); font-weight: 600; margin-right: 2px; }
.guarantee-terms a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.guarantee-terms a:hover { color: var(--green); }

/* ═════════════ FAQ ═════════════ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink);
  text-align: left;
  line-height: 1.3;
  gap: 18px;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gold-dark);
  transition: transform .25s ease, background .2s ease;
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: #fff;
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
  opacity: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  padding-right: 50px;
}
.faq-item.open .faq-a { max-height: 600px; opacity: 1; padding-top: 18px; }

/* ═════════════ CTA FINAL ═════════════ */
.cta-final {
  background: var(--black);
  color: var(--cream);
  padding: clamp(80px, 12vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,166,88,0.12), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(46,88,73,0.10), transparent 55%);
  pointer-events: none;
}
.cta-final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1025px) { .cta-final-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  margin: 0 0 28px;
  color: var(--cream);
}
.cta-final h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
.cta-final .sub {
  color: rgba(245,239,230,0.75);
  font-size: clamp(17px, 1.6vw, 20px);
  margin: 0 0 40px;
  max-width: 540px;
  line-height: 1.55;
}
.cta-final .btn { background: var(--gold); color: var(--black); }
.cta-final .btn:hover { background: #D8B568; }
.cta-final-img { aspect-ratio: 4 / 5; overflow: hidden; background: rgba(245,239,230,0.05); }
.cta-final-img img { width: 100%; height: 100%; object-fit: cover; }

/* ═════════════ FOOTER ═════════════ */
footer.site {
  background: var(--black-2);
  color: rgba(245,239,230,0.7);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 769px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; } }
.foot-grid h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.45);
  margin: 0 0 16px;
  font-weight: 600;
}
.foot-grid p, .foot-grid li, .foot-grid a {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245,239,230,0.7);
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { padding: 4px 0; }
.foot-grid a:hover { color: var(--gold); }
.foot-brand .brand-name { color: var(--cream); font-size: 20px; }
.foot-brand img { filter: brightness(0) invert(1); opacity: 0.95; }
.foot-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,230,0.08);
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,239,230,0.4);
  text-transform: uppercase;
}
.foot-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.foot-bottom-left a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.foot-bottom-left a:hover { color: #fff; }
.pay-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-chip {
  border: 1px solid rgba(245,239,230,0.18);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* ═════════════ STICKY MOBILE ═════════════ */
.sticky-mobile {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: #fff;
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,0.18);
  border-top: 1px solid var(--rule);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-mobile.show { transform: translateY(0); }
.sticky-mobile .info { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.sticky-mobile .info .name { font-family: var(--font-display); font-size: 15px; color: var(--ink); font-weight: 600; }
.sticky-mobile .info .price { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.sticky-mobile .btn { padding: 14px 20px; font-size: 12px; }
@media (min-width: 769px) { .sticky-mobile { display: none; } }
body.sticky-on { padding-bottom: 78px; }
@media (min-width: 769px) { body.sticky-on { padding-bottom: 0; } }

/* ═════════════ FLOATING DESKTOP CTA ═════════════ */
.float-cta {
  position: fixed;
  right: 28px;
  bottom: 32px;
  z-index: 65;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 18px 40px -14px rgba(46,88,73,0.5), 0 0 0 6px rgba(46,88,73,0.08);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, opacity .25s ease;
  opacity: 0;
  transform: translateY(12px);
}
.float-cta.show {
  opacity: 1;
  transform: translateY(0);
}
.float-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -14px rgba(46,88,73,0.6), 0 0 0 6px rgba(46,88,73,0.1);
}
.float-cta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,166,88,0.8);
  animation: float-pulse 1.8s ease-out infinite;
}
@keyframes float-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,166,88,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(201,166,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,166,88,0); }
}
@media (min-width: 769px) { .float-cta { display: inline-flex; } }

@media print {
  .topbar, .sticky-mobile, .btn { display: none !important; }
}
