/* ============================================
   MAGNÉTICO — Landing Page Styles
   Palette: #080808 #C41E3A #B8923C
   Typography: Cormorant Garamond + DM Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
  --black: #080808;
  --black-light: #111111;
  --black-lighter: #1a1a1a;
  --red: #C41E3A;
  --red-dark: #9a162e;
  --red-glow: rgba(196, 30, 58, 0.4);
  --gold: #B8923C;
  --gold-dim: rgba(184, 146, 60, 0.3);
  --white: #f5f0eb;
  --white-dim: rgba(245, 240, 235, 0.7);
  --white-muted: rgba(245, 240, 235, 0.4);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(196, 30, 58, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

body:hover .cursor-dot {
  box-shadow: 0 0 12px var(--red-glow), 0 0 30px rgba(196, 30, 58, 0.15);
}

a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot,
.cursor-hover .cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
}

.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--gold-dim);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--red-dark);
  border-radius: 4px;
}

/* ── SELECTION ── */
::selection {
  background: var(--red);
  color: var(--white);
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px var(--red-glow), 0 0 60px rgba(196, 30, 58, 0.1);
  }
  50% {
    box-shadow: 0 0 30px var(--red-glow), 0 0 80px rgba(196, 30, 58, 0.2);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes verticalLineGrow {
  from { height: 0; }
  to { height: 80px; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(196, 30, 58, 0.1);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav__logo:hover::after {
  transform: scaleX(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--red);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 20px var(--red-glow);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) contrast(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.4) 0%,
    rgba(8, 8, 8, 0.6) 40%,
    rgba(8, 8, 8, 0.85) 80%,
    rgba(8, 8, 8, 1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 100px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease 0.2s both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: breathe 2s ease infinite;
}

.hero__badge-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.5;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--white-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 1s ease 1s both;
}

.hero__separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  width: 200px;
  margin-bottom: 20px;
  animation: fadeIn 1s ease 0.5s both;
}

.hero__separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-dark), transparent);
}

.hero__separator-diamond {
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  animation: pulseGlow 3s ease infinite;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.1) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow), 0 0 60px rgba(196, 30, 58, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid rgba(245, 240, 235, 0.15);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn__sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

/* ── PAIN SECTION ── */
.pain {
  padding: 120px 0 80px;
  position: relative;
}

.pain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--red-dark));
  animation: verticalLineGrow 1s ease both;
}

.pain__header {
  text-align: center;
  margin-bottom: 64px;
}

.pain__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.pain__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

.pain__subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-muted);
  margin-top: 16px;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.pain__card {
  position: relative;
  padding: 40px 32px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(245, 240, 235, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
}

.pain__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pain__card:hover::before {
  height: 100%;
}

.pain__card:hover {
  background: rgba(17, 17, 17, 0.9);
  border-color: rgba(196, 30, 58, 0.1);
}

.pain__card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196, 30, 58, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.pain__card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-dim);
}

/* ── TRUTH SECTION ── */
.truth {
  padding: 80px 0 120px;
  text-align: center;
}

.truth__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.truth__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
}

.truth__title em {
  font-style: italic;
  color: var(--red);
}

.truth__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 40px;
}

.truth__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.truth__body strong {
  color: var(--white);
  font-weight: 400;
}

.truth__highlight {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  padding: 24px 0;
  border-top: 1px solid rgba(184, 146, 60, 0.15);
  border-bottom: 1px solid rgba(184, 146, 60, 0.15);
  margin-top: 32px;
}

/* ── PROTOCOL SECTION ── */
.protocol {
  padding: 120px 0;
  position: relative;
}

.protocol__header {
  text-align: center;
  margin-bottom: 80px;
}

.protocol__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.protocol__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.protocol__subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-muted);
}

/* ── Protocol Card (M1/M2/M3) ── */
.protocol-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  background: var(--black-light);
}

.protocol-card--reverse {
  direction: rtl;
}

.protocol-card--reverse > * {
  direction: ltr;
}

.protocol-card__visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.protocol-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.protocol-card:hover .protocol-card__visual img {
  transform: scale(1.03);
}

.protocol-card__visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Overlay direction: right side fades to content */
.protocol-card__visual-overlay--right {
  background: linear-gradient(to right, rgba(8,8,8,0) 40%, rgba(17,17,17,1) 100%);
}

/* Overlay direction: left side fades to content */
.protocol-card__visual-overlay--left {
  background: linear-gradient(to left, rgba(8,8,8,0) 40%, rgba(17,17,17,1) 100%);
}

.protocol-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--black-light);
}

.protocol-card__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.protocol-card__state {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.protocol-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.protocol-card__lead {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--gold-dim);
}

.protocol-card__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 32px;
}

.protocol-card__whisper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

.protocol-card__whisper::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--red-dark);
}

/* Protocol CTA */
.protocol__cta {
  text-align: center;
  padding: 80px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ── SHADOW SECTION (não-assumidos) ── */
.shadow-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.shadow-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shadow-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25);
}

.shadow-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,1) 0%,
    rgba(8,8,8,0.7) 30%,
    rgba(8,8,8,0.7) 70%,
    rgba(8,8,8,1) 100%
  );
}

.shadow-section__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.shadow-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 32px;
}

.shadow-section__title em {
  font-style: italic;
  color: var(--gold);
}

.shadow-section__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.shadow-section__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  padding: 32px 0;
  border-top: 1px solid rgba(184, 146, 60, 0.1);
  border-bottom: 1px solid rgba(184, 146, 60, 0.1);
  margin-top: 16px;
}

/* ── MODULES SECTION ── */
.modules {
  padding: 120px 0;
  background: var(--black-light);
}

.modules__header {
  text-align: center;
  margin-bottom: 64px;
}

.modules__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.modules__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.modules__subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-muted);
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.module-card {
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(245, 240, 235, 0.04);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-card:hover::after {
  width: 100%;
}

.module-card:hover {
  background: rgba(17, 17, 17, 0.9);
  border-color: rgba(196, 30, 58, 0.08);
  transform: translateY(-4px);
}

.module-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 8px;
}

.module-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.module-card__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 24px;
}

.module-card__list {
  list-style: none;
}

.module-card__list li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white-dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 240, 235, 0.04);
  padding-left: 16px;
  position: relative;
}

.module-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--red-dark);
  border-radius: 50%;
  transform: translateY(-50%);
}

.module-card__list li:last-child {
  border-bottom: none;
}

/* ── BONUS SECTION ── */
.bonus {
  padding: 120px 0;
  position: relative;
}

.bonus__header {
  text-align: center;
  margin-bottom: 64px;
}

.bonus__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.bonus__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.bonus__subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-muted);
}

.bonus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-card {
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(245, 240, 235, 0.04);
  padding: 40px 36px;
  transition: all 0.4s ease;
  position: relative;
}

.bonus-card:hover {
  border-color: rgba(184, 146, 60, 0.15);
  background: rgba(17, 17, 17, 0.8);
}

.bonus-card__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

.bonus-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.bonus-card__body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.bonus-card__tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}

.bonus-card__value {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-muted);
  text-decoration: line-through;
  text-decoration-color: var(--red-dark);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--black-light);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(245, 240, 235, 0.04);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(184, 146, 60, 0.1);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--white-muted);
}

/* Testimonials — Image Grid */
.testimonials__grid--images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.relato-card {
  margin: 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.relato-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── OFFER / PRICING ── */
.offer {
  padding: 120px 0;
  position: relative;
}

.offer__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.offer__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.offer__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.offer__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 48px;
}

.offer__title em {
  font-style: italic;
  color: var(--red);
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.countdown__block {
  text-align: center;
}

.countdown__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  min-width: 80px;
  display: block;
}

.countdown__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 8px;
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 200;
  color: rgba(196, 30, 58, 0.3);
  align-self: flex-start;
  line-height: 1;
  animation: breathe 2s ease infinite;
}

/* Price */
.offer__price-block {
  margin-bottom: 40px;
}

.offer__price-from {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white-muted);
  text-decoration: line-through;
  text-decoration-color: var(--red-dark);
  margin-bottom: 8px;
}

.offer__price {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.offer__price-currency {
  font-size: 2rem;
  color: var(--gold);
  vertical-align: super;
  margin-right: 4px;
}

.offer__price-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-top: 8px;
}

/* Checklist */
.offer__checklist {
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 40px;
  padding: 32px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(245, 240, 235, 0.04);
}

.offer__checklist li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-dim);
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid rgba(245, 240, 235, 0.04);
}

.offer__checklist li:last-child {
  border-bottom: none;
}

.offer__checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 500;
}

.offer__security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 16px;
}

/* ── GUARANTEE ── */
.guarantee {
  padding: 80px 0;
  background: var(--black-light);
}

.guarantee__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  border: 1px solid rgba(184, 146, 60, 0.1);
  position: relative;
}

.guarantee__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--black-light);
  border: 1px solid rgba(184, 146, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.guarantee__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.guarantee__closing {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.final-cta__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.final-cta__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--red);
  margin-bottom: 32px;
}

.final-cta__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--white-dim);
  margin-bottom: 12px;
}

.final-cta__emphasis {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 48px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(245, 240, 235, 0.04);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--white);
}

button.footer__link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(245, 240, 235, 0.3);
}

/* ── TOUCH DEVICES ── */
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring { display: none !important; }
  body { cursor: auto; }
}

/* ── FOCUS VISIBLE ── */
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .protocol-card {
    grid-template-columns: 1fr;
  }

  .protocol-card--reverse {
    direction: ltr;
  }

  .protocol-card__visual {
    min-height: 350px;
  }

  .modules__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid--images {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .pain__grid {
    grid-template-columns: 1fr;
  }

  .modules__grid {
    grid-template-columns: 1fr;
  }

  .bonus__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .protocol-card__content {
    padding: 40px 24px;
  }

  .countdown {
    gap: 12px;
  }

  .countdown__num {
    font-size: 2.5rem;
    min-width: 60px;
  }

  .offer__price {
    font-size: 4rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }

  /* Protocol cards: always image on top, text below */
  .protocol-card,
  .protocol-card--reverse {
    display: flex;
    flex-direction: column;
  }
  .protocol-card__visual,
  .protocol-card--reverse .protocol-card__visual {
    order: 1;
  }
  .protocol-card__content,
  .protocol-card--reverse .protocol-card__content {
    order: 2;
  }
  .protocol-card--reverse {
    direction: ltr;
  }
  .protocol-card__visual-overlay {
    display: none;
  }

  /* Hero text wrapping */
  .hero__body br,
  .hero__title br { display: none; }
  .hero__body, .hero__title { text-wrap: balance; }

  /* Offer title br control */
  .offer__title br { display: none; }

  /* Additional section <br> tags hidden on mobile */
  .pain__title br,
  .truth__title br,
  .protocol__title br,
  .final-cta__title br,
  .final-cta__body br { display: none; }

  .pain__title,
  .truth__title,
  .protocol__title,
  .final-cta__title { text-wrap: balance; }

  /* Buttons full-width on mobile */
  .btn--primary {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
  }

  /* Minimum side padding for all sections */
  .protocol-card__content,
  .truth__container,
  .shadow-section__content,
  .offer__container,
  .final-cta__container { padding-left: 20px; padding-right: 20px; }

  /* Testimonials single column */
  .testimonials__grid--images {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .relato-card {
    aspect-ratio: 3 / 4;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .protocol-card__visual {
    min-height: 280px;
  }

  .offer__checklist {
    padding: 20px;
  }
}

/* ── EXIT OVERLAY ─────────────────────────────────── */
#exitOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#exitOverlay.exit-overlay--visible {
  display: flex;
}

.exit-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.exit-overlay__box {
  position: relative;
  background: var(--black-lighter);
  border: 1px solid rgba(184, 146, 60, 0.2);
  border-radius: 4px;
  padding: 48px 40px;
  max-width: 480px;
  width: calc(100% - 48px);
  text-align: center;
  z-index: 1;
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.exit-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  line-height: 1;
}

.exit-overlay__close:hover {
  color: var(--white);
}

.exit-overlay__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.exit-overlay__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.exit-overlay__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 32px;
}

.exit-overlay__cta {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  text-decoration: none;
}

.exit-overlay__refuse {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--white-muted);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 0;
}

.exit-overlay__refuse:hover {
  color: var(--white-dim);
}

/* ── MOBILE EXIT BOTTOM SHEET ────────────────────────────────────────────── */
#mobileExitSheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
}

#mobileExitSheet.mes--visible {
  display: flex;
}

.mes__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(3px);
}

.mes__box {
  position: relative;
  background: #111;
  border: 1px solid rgba(201, 165, 103, 0.2);
  border-radius: 16px 16px 0 0;
  padding: 32px 24px 40px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  z-index: 1;
  animation: mesSlideUp 0.3s ease;
}

@keyframes mesSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.mes__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(244, 235, 216, 0.3);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.mes__close:hover {
  color: var(--white-dim);
}

.mes__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.mes__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.mes__title strong {
  color: var(--gold);
}

.mes__body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(244, 235, 216, 0.6);
  margin-bottom: 24px;
}

.mes__cta {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  text-decoration: none;
}

.mes__refuse {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(244, 235, 216, 0.3);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 0;
}

.mes__refuse:hover {
  color: var(--white-muted);
}
