/* ============================================================
   SERGIO DUEÑAS — styles.css  |  Mujer Alfa Premium Site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #080808;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* ─── VARIABLES ───────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #0D0D0D;
  --bg-3:        #141414;
  --bg-card:     #161616;
  --red:         #E11D2E;
  --red-light:   #FF3344;
  --red-dark:    #7F1620;
  --burgundy:    #4A0C12;
  --white:       #FFFFFF;
  --muted:       #999999;
  --muted-2:     #666666;
  --border:      rgba(225, 29, 46, 0.18);
  --border-hov:  rgba(225, 29, 46, 0.45);
  --glow:        0 0 40px rgba(225, 29, 46, 0.2);
  --glow-strong: 0 8px 40px rgba(225, 29, 46, 0.35);
  --max-w:       1200px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ─── TIPOGRAFÍA ──────────────────────────────────────────── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
}
h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}
h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}
p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--muted);
  line-height: 1.75;
}
strong { color: var(--white); font-weight: 600; }

.red-text {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 30%, var(--red-light) 55%, var(--red) 75%, var(--red-dark) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 5s linear infinite;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s, transform 0.5s var(--ease), opacity 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Oculta la navbar mientras el usuario está en el hero-video */
.navbar.navbar--hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 48px;
  border-bottom-color: var(--border);
}
.navbar__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 44px;
}
.navbar__logo-img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.navbar__logo-fallback {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.navbar__logo-fallback span { color: var(--red); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a.active { color: var(--red); }

.navbar__cta {
  background: var(--red) !important;
  color: #000 !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s !important;
  white-space: nowrap;
}
.navbar__cta:hover {
  background: var(--red-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(225, 29, 46,0.4);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Mobile overlay nav ── */
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.25s;
}
.navbar__mobile a:hover { color: var(--red); }
.navbar__mobile .mobile-cta {
  margin-top: 8px;
  padding: 14px 36px;
  background: var(--red);
  color: #000;
  border-radius: 4px;
  font-size: 1rem !important;
}
.close-btn {
  position: absolute;
  top: 24px; right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  padding: 8px;
  line-height: 1;
  transition: color 0.25s;
}
.close-btn:hover { color: var(--red); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero--short {
  height: 75vh;
  min-height: 500px;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0a;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.45) 40%,
    rgba(8,8,8,0.88) 85%,
    rgba(8,8,8,1) 100%
  );
}

/* Fallback gradient when no video loads */
.hero__video-wrap.no-video {
  background: radial-gradient(ellipse at 50% 40%, #2a0a0e 0%, #150509 50%, #080808 100%);
}
.hero__video-wrap.no-video video { display: none; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 28px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 29, 46,0.1);
  border: 1px solid var(--border-hov);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: pulse-down 2.4s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(225, 29, 46,0.55), transparent);
}
@keyframes pulse-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ─── SCROLL-VIDEO HERO ────────────────────────────────────── */
/* El wrap define el rango de scroll durante el cual el video avanza.
   200vh = 1 viewport completo de "scroll-driven" antes de pasar la
   sección. */
.hero-scroll-wrap {
  position: relative;
  height: 200vh;
}
.hero-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #080808;
}
.hero-scroll-sticky video,
.hero-scroll-sticky .hero-scroll-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.88;
  pointer-events: none;
}
/* Variante con foto: el wrap deja de ser scroll-driven (no hay frames que recorrer) */
.hero-scroll-wrap--photo {
  height: 100vh;
}
.hero-scroll-sticky .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.15) 0%,
    rgba(8,8,8,0.35) 45%,
    rgba(8,8,8,0.92) 90%,
    rgba(8,8,8,1) 100%
  );
}
/* Indicador de scroll en el video hero */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: pulse-down 2.4s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(225,29,46,0.55), transparent);
}

/* ─── PHRASE SECTION ─────────────────────────────────────── */
.phrase-section {
  padding: 120px 28px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.phrase-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(225,29,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.phrase-section blockquote {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.phrase-section blockquote .red-text {
  font-style: normal;
}
.phrase-section__author {
  margin-top: 36px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
@media (max-width: 768px) {
  .phrase-section { padding: 80px 24px; }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #000;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: btn-glow-pulse 2.6s ease-in-out infinite;
  transition: background 0.25s, color 0.25s !important;
}
/* Inner shimmer sweep */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  animation: btn-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
/* Inner bright border highlight */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 12px rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: var(--red-light);
  animation-play-state: paused;
  box-shadow:
    0 0 0 1px var(--red-light),
    0 0 30px rgba(225,29,46,0.85),
    0 0 60px rgba(225,29,46,0.55),
    0 0 100px rgba(225,29,46,0.3),
    0 8px 30px rgba(225,29,46,0.5),
    inset 0 0 20px rgba(255,255,255,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(225,29,46,0.4);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 0 1px rgba(225,29,46,0.15), 0 0 20px rgba(225,29,46,0.18);
  animation: btn-outline-glow 3.4s ease-in-out infinite;
}
/* Sweep continuo en outline */
.btn-outline::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(225,29,46,0.35),
    transparent);
  transform: skewX(-18deg);
  animation: btn-shimmer 4.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  animation-play-state: paused;
}
@keyframes btn-outline-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(225,29,46,0.15),
      0 0 16px rgba(225,29,46,0.18),
      0 0 30px rgba(225,29,46,0.08);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(225,29,46,0.4),
      0 0 28px rgba(225,29,46,0.45),
      0 0 60px rgba(225,29,46,0.18);
  }
}
.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.82rem;
}

/* ─── SECTION LAYOUT ──────────────────────────────────────── */
.section {
  padding: 108px 28px;
}
.section--alt   { background: var(--bg-2); }
.section--dark  { background: var(--bg); }
.section--card  { background: var(--bg-3); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__head {
  text-align: center;
  margin-bottom: 72px;
}
.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section__title {
  color: var(--white);
  margin-bottom: 20px;
}
.section__sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 48px 56px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--border);
}
.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 120px;
  margin: 0 auto;
}

/* ─── ABOUT SPLIT ─────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 88px;
  align-items: center;
}
.about-split__img {
  position: relative;
}
.about-split__img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  display: block;
}
/* Variante FX: borde con resplandor rojo, sheen y glow pulsante
   + parallax: image más alta que el contenedor para tener margen */
.about-split__img--fx {
  position: relative;
  display: block;
  margin: 0;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(225,29,46,0.18),
    0 0 0 1px rgba(225,29,46,0.25);
}
.about-split__img--fx img {
  position: absolute;
  inset: -8% 0;       /* extiende 8% arriba y abajo: margen para parallax */
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
  will-change: transform;
}

/* Título overlay sobre la foto (sólo móvil) */
.quien-soy-title--overlay { display: none; }
.quien-soy-title--inline  { display: block; }

/* Gradiente oscuro en la base para legibilidad del overlay */
.about-split__img--fx::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(8,8,8,0.35) 45%,
    rgba(8,8,8,0.92) 100%);
  pointer-events: none;
  z-index: 2;
  opacity: 0; /* se activa en móvil */
  transition: opacity 0.4s;
}

/* Borde con resplandor que circula */
.about-split__img--fx::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(225,29,46,0.6) 0%,
    rgba(225,29,46,0.05) 35%,
    rgba(225,29,46,0.05) 65%,
    rgba(225,29,46,0.6) 100%);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: alfa-border 8s linear infinite;
  pointer-events: none;
  z-index: 3;
}
/* Sheen barriendo */
.about-split__shine {
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.0) 70%,
    transparent 100%);
  transform: skewX(-14deg);
  animation: alfa-shine 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}
/* Glow exterior pulsante */
.about-split__glow {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 0 30px rgba(225,29,46,0.25),
    0 0 80px rgba(225,29,46,0.12);
  animation: alfa-glow 3.6s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .about-split__img--fx { height: 540px; }
}
@media (max-width: 900px) {
  .about-split__img--fx { height: 500px; }
}

/* Móvil: full-width, título overlay, parallax */
@media (max-width: 768px) {
  /* La sección permite que la foto escape a viewport completo */
  #sergio.section { overflow: visible; }

  /* Foto a 100vw exactos — full bleed */
  .about-split__img--fx {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    height: 62vh;
    min-height: 420px;
    max-height: 580px;
  }
  /* Quitamos el borde con resplandor — queda mejor a pantalla completa */
  .about-split__img--fx::before { display: none; }
  .about-split__shine { display: none; }
  .about-split__glow { display: none; }
  /* Activamos el gradiente oscuro inferior para legibilidad */
  .about-split__img--fx::after { opacity: 1; }

  /* Título overlay: centrado horizontalmente, anclado abajo (debajo de la cara) */
  .quien-soy-title--overlay {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    z-index: 4;
    margin: 0;
    text-align: center;
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    text-shadow:
      0 4px 30px rgba(0,0,0,0.85),
      0 0 24px rgba(0,0,0,0.7);
  }
  .quien-soy-title--inline { display: none; }
  /* Gradiente que oscurece el centro/bajo de la foto para legibilidad */
  .about-split__img--fx::after {
    background: linear-gradient(180deg,
      transparent 0%,
      transparent 38%,
      rgba(8,8,8,0.55) 65%,
      rgba(8,8,8,0.92) 100%);
    height: 100%;
    inset: 0;
  }
}
@media (max-width: 600px) {
  .about-split__img--fx { height: 80vh; min-height: 460px; }
}
.about-split__img::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  pointer-events: none;
}
.about-split__text .section__tag { display: block; text-align: left; margin-bottom: 14px; }
.about-split__text h2 { margin-bottom: 22px; }
.about-split__text p { margin-bottom: 20px; }

/* ─── TOUR LIST ───────────────────────────────────────────── */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.tour-item {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 32px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.tour-item:hover {
  border-color: var(--red);
  background: #131313;
  transform: translateX(4px);
  box-shadow: 0 0 30px rgba(225,29,46,0.18);
}
.tour-item__flag {
  font-size: 2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #0a0506;
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(.2,.9,.2,1.2), border-color 0.3s, box-shadow 0.35s;
}
.tour-item:hover .tour-item__flag {
  transform: scale(1.12) rotate(-5deg);
  border-color: rgba(225,29,46,0.55);
  box-shadow: 0 0 24px rgba(225,29,46,0.45);
}
.tour-item__city h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2px;
  font-weight: 700;
}
.tour-item__city p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.04em;
}
.tour-item__arrow {
  color: var(--muted-2);
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform 0.3s, color 0.3s;
}
.tour-item:hover .tour-item__arrow {
  color: var(--red);
  transform: translateX(4px);
}
.tour-item__coming {
  font-size: 0.78rem;
  color: var(--muted-2);
  font-style: italic;
  padding: 10px 24px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 4px;
}

/* ─── MUJER ALFA PROMO (Home) ─────────────────────────────── */
.alfa-promo {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.award-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(225, 29, 46,0.07);
  border: 1px solid var(--border-hov);
  border-radius: 10px;
  padding: 18px 28px;
  margin-bottom: 44px;
  text-align: left;
}
.award-chip__icon { font-size: 2rem; flex-shrink: 0; }
.award-chip__text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.award-chip__text span { font-size: 0.8rem; color: var(--muted); }

.bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin: 36px auto;
  max-width: 560px;
}
.bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bullet__icon { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.bullet p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin: 0; }

/* ─── MODULE CARDS (Mujer Alfa page) ─────────────────────── */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mod-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.mod-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
  opacity: 0;
  transition: opacity 0.35s;
}
.mod-card:hover {
  border-color: var(--border-hov);
  box-shadow: 0 20px 60px rgba(225, 29, 46,0.12);
}
.mod-card:hover::before { opacity: 1; }
.mod-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0.8;
}
.mod-card__title {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
}
.mod-card__text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── BIO (Sobre mí page) ─────────────────────────────────── */
.bio-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.bio-text p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.82;
  margin-bottom: 22px;
}
.bio-text p:last-child { margin-bottom: 0; }
.bio-highlight {
  background: rgba(225, 29, 46,0.06);
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin: 36px 0;
}
.bio-highlight p {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.bio-aside {
  position: sticky;
  top: 100px;
}
.bio-aside img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.bio-aside__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.bio-aside__card h4 { color: var(--red); margin-bottom: 16px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.bio-aside__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.bio-aside__stat:last-child { border-bottom: none; padding-bottom: 0; }
.bio-aside__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.bio-aside__stat-label { font-size: 0.82rem; color: var(--muted); }

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 110px 28px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(225, 29, 46, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(127, 22, 32, 0.25) 0%, transparent 45%),
    var(--bg-2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 16px; position: relative; }
.cta-band > p { margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; font-size: 1.05rem; position: relative; }
.cta-band .btn { position: relative; }

/* ─── BLOG PAGE ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover {
  border-color: var(--border-hov);
}
.blog-card__img {
  width: 100%;
  height: 200px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.blog-card__title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card__excerpt { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.blog-card__cta { font-size: 0.82rem; color: var(--red); font-weight: 600; transition: opacity 0.25s; }
.blog-card__cta:hover { opacity: 0.7; }

.blog-placeholder {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.blog-placeholder__icon { font-size: 3.5rem; margin-bottom: 20px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 28px 36px;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }

/* Footer minimal — sólo el logo */
.footer.footer--minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, transform 0.3s var(--ease);
}
.footer__logo:hover { opacity: 0.85; transform: scale(1.04); }
.footer__logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(225,29,46,0.25));
}
/* Si no hay logo.png, mostramos el texto Sergio Dueñas */
.footer__logo--text::before {
  content: 'Sergio ';
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.footer__logo--text::after {
  content: 'Dueñas';
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--red);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-anim="fade-up"]    { transform: translateY(44px); }
[data-anim="fade-down"]  { transform: translateY(-24px); }
[data-anim="fade-left"]  { transform: translateX(-44px); }
[data-anim="fade-right"] { transform: translateX(44px); }
[data-anim="scale-in"]   { transform: scale(0.88); }
[data-anim].anim-done    { opacity: 1; transform: none; }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .about-split__img img { height: 500px; }
  .bio-wrap { grid-template-columns: 1fr 320px; gap: 56px; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 16px; }
  .about-split__img img { height: 420px; max-width: 480px; }
  .bio-wrap { grid-template-columns: 1fr; }
  .bio-aside { position: static; }
  .tour-item { grid-template-columns: 48px 1fr 22px; gap: 16px; padding: 18px 20px; }
  .tour-item__flag { width: 48px; height: 48px; font-size: 1.6rem; }
  .stat { padding: 40px 36px; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .navbar__logo { height: 38px; }
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }

  .section { padding: 80px 20px; }
  .hero--short { height: 65vh; }
  .modules { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }

  .tour-item {
    grid-template-columns: 44px 1fr 18px;
    gap: 14px;
    padding: 16px 18px;
  }
  .tour-item__flag { width: 44px; height: 44px; font-size: 1.4rem; }
  .tour-item__city h3 { font-size: 1rem; }

  .stats-bar { flex-direction: row; flex-wrap: wrap; }
  .stat { flex: 1 1 50%; }
  .stat + .stat::before { display: none; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; max-width: 360px; }
}
@media (max-width: 480px) {
  .navbar__logo { font-size: 1.1rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .btn { padding: 13px 26px; }
  .btn-lg { padding: 16px 32px; }
  .award-chip { flex-direction: column; text-align: center; }
  .stat { flex: 1 1 100%; }
}

/* ============================================================
   ARTIFACTS — orbes flotantes con parallax
   ============================================================ */
.section, .hero, .cta-band, .stats-bar { position: relative; overflow: hidden; }
.section > .container,
.hero__content,
.cta-band > .container,
.stats-bar > .stat { position: relative; z-index: 2; }

.artifact-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
  animation: orb-float 14s ease-in-out infinite;
}
.artifact-orb--red      { background: radial-gradient(circle, rgba(225, 29, 46, 0.65) 0%, transparent 70%); }
.artifact-orb--burgundy { background: radial-gradient(circle, rgba(127, 22, 32, 0.75) 0%, transparent 70%); }
.artifact-orb--deep     { background: radial-gradient(circle, rgba(74, 12, 18, 0.95) 0%, transparent 70%); }

.artifact-orb--tl  { top: -140px;  left: -140px;  width: 460px; height: 460px; }
.artifact-orb--tr  { top: -120px;  right: -140px; width: 400px; height: 400px;
                     animation-duration: 18s; animation-delay: -3s; }
.artifact-orb--bl  { bottom: -160px; left: -120px; width: 520px; height: 520px;
                     animation-duration: 20s; animation-delay: -7s; }
.artifact-orb--br  { bottom: -140px; right: -120px; width: 440px; height: 440px;
                     animation-duration: 16s; animation-delay: -5s; }
.artifact-orb--c   { top: 50%; left: 50%; width: 640px; height: 640px;
                     transform: translate(-50%, -50%);
                     animation-duration: 22s; animation-delay: -2s; }

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(24px, -32px) scale(1.06); }
}
.artifact-orb--c { animation-name: orb-float-c; }
@keyframes orb-float-c {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(calc(-50% + 24px), calc(-50% - 24px)) scale(1.06); }
}

/* ============================================================
   TITLE WORD REVEAL
   ============================================================ */
.title-reveal { display: inline-block; }
.title-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: calc(var(--word-i, 0) * 70ms);
  will-change: transform, opacity;
}
.title-reveal.is-revealed .word { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .title-reveal .word { opacity: 1; transform: none; transition: none; }
  .artifact-orb { animation: none; }
  .red-text { animation: none; }
  .btn-primary, .btn-primary::after { animation: none; }
}

/* ============================================================
   PREMIUM LAYER — glow · grain · cursor · marquee · gallery
   ============================================================ */

/* ─── KEYFRAMES ───────────────────────────────────────────── */
@keyframes shimmer-text {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}
@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(225,29,46,0.4),
      0 0 14px rgba(225,29,46,0.45),
      0 0 28px rgba(225,29,46,0.3),
      0 4px 18px rgba(225,29,46,0.2),
      inset 0 0 12px rgba(255,255,255,0.08);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(255,80,90,0.5),
      0 0 26px rgba(225,29,46,0.7),
      0 0 50px rgba(225,29,46,0.5),
      0 0 80px rgba(225,29,46,0.25),
      0 6px 32px rgba(225,29,46,0.45),
      inset 0 0 18px rgba(255,255,255,0.18);
  }
}
@keyframes btn-shimmer {
  0%, 55%, 100% { left: -120%; opacity: 0; }
  60% { opacity: 1; }
  80% { left: 150%; opacity: 0; }
}
@keyframes grain {
  0%  { transform: translate(0, 0); }
  14% { transform: translate(-4%, -5%); }
  28% { transform: translate(5%, 3%); }
  42% { transform: translate(-3%, 7%); }
  57% { transform: translate(6%, -4%); }
  71% { transform: translate(-5%, 2%); }
  85% { transform: translate(3%, -7%); }
  100% { transform: translate(0, 0); }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── FILM GRAIN ──────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: -200%;
  width: 400%; height: 400%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  animation: grain 0.9s steps(1) infinite;
}

/* ─── CUSTOM CURSOR (desktop) ─────────────────────────────── */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s, opacity .3s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(225,29,46,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width .22s var(--ease), height .22s var(--ease),
              border-color .22s, opacity .3s;
  will-change: left, top;
}
.cursor-dot.is-hover  { width: 0; height: 0; }
.cursor-ring.is-hover { width: 56px; height: 56px; border-color: rgba(225,29,46,0.8); }

/* ─── MARQUEE TICKER ──────────────────────────────────────── */
.marquee-band {
  overflow: hidden;
  padding: 14px 0;
  background: var(--red);
  border-top: none;
  border-bottom: none;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  border-right: 1px solid rgba(0,0,0,0.18);
}
.marquee-sep {
  width: 3px; height: 3px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── CONFERENCE GALLERY ──────────────────────────────────── */
.section--gallery {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--bg-2);
  overflow: hidden;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  margin-top: 52px;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 520px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.gallery-item--large {
  height: 520px;
}
.gallery-col .gallery-item { flex: 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(12%) brightness(0.82) contrast(1.12);
  transition: transform 0.75s var(--ease), filter 0.6s var(--ease);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.94) contrast(1.06);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.12) 45%,
    transparent 100%
  );
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 20px;
}
.gallery-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 4px;
}
.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--white);
}
@media (max-width: 768px) {
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-item--large { height: 320px; }
  .gallery-col { height: auto; }
  .gallery-col .gallery-item { min-height: 190px; }
}

/* ─── MODULE PILLS ─────────────────────────────────────────── */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mod-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  background: rgba(225,29,46,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.mod-pill:hover {
  background: rgba(225,29,46,0.09);
  border-color: var(--border-hov);
  transform: translateX(6px);
}
.mod-pill__num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  min-width: 24px;
}
.mod-pill__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}

/* ─── SVG ICON BOX ────────────────────────────────────────── */
.icon-box {
  width: 54px; height: 54px;
  background: rgba(225,29,46,0.07);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, box-shadow .3s;
  margin: 0 auto 18px;
}
.benefit-card:hover .icon-box {
  background: rgba(225,29,46,0.13);
  border-color: var(--border-hov);
  box-shadow: 0 0 20px rgba(225,29,46,0.18);
}
.bullet .icon-box {
  width: 34px; height: 34px;
  border-radius: 8px;
  margin: 0;
  flex-shrink: 0;
}
.bullet__icon { display: flex; align-items: center; margin-top: 0; }

/* ─── ENHANCED HOVER STATES ───────────────────────────────── */
.mod-card:hover {
  box-shadow: 0 20px 60px rgba(225,29,46,0.16), inset 0 0 0 1px var(--border-hov);
}
.tour-item:hover {
  box-shadow: inset 3px 0 0 var(--red), 0 6px 32px rgba(225,29,46,0.1);
}
.blog-card:hover {
  box-shadow: 0 8px 40px rgba(225,29,46,0.1);
}
.about-split__img::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--border-hov), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* ─── SECTION DECORATIVE LINES ────────────────────────────── */
.section__tag::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.7;
}
.section__tag::after {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-left: 10px;
  opacity: 0.7;
}

/* ─── HERO BADGE PULSE ────────────────────────────────────── */
.hero__badge {
  position: relative;
}
.hero__badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: transparent;
  border: 1px solid var(--red);
  animation: badge-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.015); }
}

/* ─── STATS BAR ENHANCED ──────────────────────────────────── */
.stat__num {
  letter-spacing: -0.03em;
}

/* ─── NAVBAR CTA GLOW ─────────────────────────────────────── */
.navbar__cta {
  animation: btn-glow-pulse 3s ease-in-out infinite;
}
.navbar__cta:hover {
  animation-play-state: paused;
}

/* ============================================================
   PRO ANIMATIONS LAYER — tilt · spotlight · ripple · KB · progress
   ============================================================ */

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: rgba(225,29,46,0.08);
  z-index: 10000;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light), var(--red));
  background-size: 200% auto;
  box-shadow:
    0 0 10px var(--red),
    0 0 22px rgba(225,29,46,0.55),
    0 0 40px rgba(225,29,46,0.35);
  animation: shimmer-text 2.5s linear infinite;
  transition: width 0.08s linear;
}

/* ─── BUTTONS — magnetic + ripple host ────────────────────── */
.btn {
  transform-origin: center;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.35s var(--ease) !important;
  will-change: transform;
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  pointer-events: none;
  transform: scale(0);
  animation: ripple-out 0.7s ease-out forwards;
  z-index: 3;
  mix-blend-mode: overlay;
}
@keyframes ripple-out {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

/* Outline button glow on hover */
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow:
    0 0 0 1px var(--red),
    0 0 22px rgba(225,29,46,0.45),
    0 0 50px rgba(225,29,46,0.18);
  text-shadow: 0 0 10px rgba(225,29,46,0.5);
}

/* Small button glow */
.btn-sm.btn-primary {
  animation-duration: 2.4s;
}

/* ─── 3D TILT + SPOTLIGHT CARDS ───────────────────────────── */
.mod-card,
.blog-card,
.benefit-card,
.tour-card {
  --mx: 50%;
  --my: 50%;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.45s var(--ease),
    border-color 0.35s,
    box-shadow 0.45s var(--ease) !important;
}
.mod-card::after,
.blog-card::after,
.benefit-card::after,
.tour-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(225,29,46,0.22),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  border-radius: inherit;
  mix-blend-mode: screen;
  z-index: 1;
}
.mod-card:hover::after,
.blog-card:hover::after,
.benefit-card:hover::after,
.tour-card:hover::after {
  opacity: 1;
}
.mod-card > *,
.blog-card > *,
.benefit-card > *,
.tour-card > * {
  position: relative;
  z-index: 2;
}

/* Override existing translateY hover so JS tilt works */
.mod-card.is-tilting,
.blog-card.is-tilting,
.benefit-card.is-tilting,
.tour-card.is-tilting {
  transition: transform 0.05s linear, box-shadow 0.45s var(--ease) !important;
}

/* ─── KEN BURNS ON GALLERY ────────────────────────────────── */
.gallery-item img {
  animation: ken-burns 22s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.1) translate3d(-1.5%, -1.5%, 0); }
}
.gallery-item:hover img {
  animation: none;
  transform: scale(1.06);
}

/* ─── NAV LINK ANIMATED UNDERLINE ─────────────────────────── */
.navbar__links a:not(.navbar__cta) {
  position: relative;
  padding: 4px 0;
}
.navbar__links a:not(.navbar__cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  transition: width 0.3s var(--ease);
}
.navbar__links a:not(.navbar__cta):hover::after,
.navbar__links a.active:not(.navbar__cta)::after {
  width: 100%;
}

/* ─── ENHANCED CARD GLOW (when not tilting) ───────────────── */
.mod-card:hover {
  box-shadow:
    0 24px 70px rgba(225,29,46,0.22),
    0 0 0 1px var(--border-hov),
    0 0 40px rgba(225,29,46,0.12);
}
.blog-card:hover {
  box-shadow:
    0 18px 50px rgba(225,29,46,0.18),
    0 0 0 1px var(--border-hov);
}
.benefit-card:hover {
  box-shadow:
    0 18px 55px rgba(225,29,46,0.2),
    0 0 0 1px var(--border-hov);
}
.tour-card:hover {
  box-shadow:
    0 22px 60px rgba(225,29,46,0.2),
    0 0 0 1px var(--border-hov);
}

/* ─── EXTRA REVEAL ANIMATIONS ─────────────────────────────── */
[data-anim="mask-right"] {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease);
}
[data-anim="mask-right"].anim-done {
  clip-path: inset(0 0 0 0);
}
[data-anim="mask-up"] {
  opacity: 1;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s var(--ease);
}
[data-anim="mask-up"].anim-done {
  clip-path: inset(0 0 0 0);
}
[data-anim="zoom-in"] {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-anim="zoom-in"].anim-done {
  opacity: 1;
  transform: none;
}
[data-anim="rotate-in"] {
  opacity: 0;
  transform: rotate(-3deg) translateY(40px) scale(0.96);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
[data-anim="rotate-in"].anim-done {
  opacity: 1;
  transform: none;
}

/* Stagger children automatically */
.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.stagger.anim-done > * {
  opacity: 1;
  transform: none;
}
.stagger.anim-done > *:nth-child(1) { transition-delay: 0s; }
.stagger.anim-done > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.anim-done > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.anim-done > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.anim-done > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.anim-done > *:nth-child(6) { transition-delay: 0.4s; }

/* ─── HERO TITLE GLOW ─────────────────────────────────────── */
.hero__title.title-reveal.is-revealed {
  animation: hero-title-glow 4s ease-in-out 1.5s infinite;
}
@keyframes hero-title-glow {
  0%, 100% { text-shadow: 0 2px 40px rgba(0,0,0,0.6); }
  50%      { text-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 0 60px rgba(225,29,46,0.25); }
}

/* ─── SECTION TITLE WITH GLOWING ACCENT ───────────────────── */
.section__title {
  position: relative;
}

/* ─── STATS NUMBER GLOW ───────────────────────────────────── */
.stat__num {
  text-shadow: 0 0 28px rgba(225,29,46,0.35);
  transition: text-shadow 0.4s;
}
.stat:hover .stat__num {
  text-shadow:
    0 0 30px rgba(225,29,46,0.65),
    0 0 60px rgba(225,29,46,0.35);
}

/* ─── HERO SCROLL INDICATOR ENHANCED ──────────────────────── */
.hero__scroll {
  text-shadow: 0 0 12px rgba(225,29,46,0.5);
}

/* ─── AWARD CHIP HOVER ────────────────────────────────────── */
.award-chip {
  transition: border-color 0.3s, box-shadow 0.4s, transform 0.3s;
  cursor: default;
}
.award-chip:hover {
  border-color: var(--red);
  box-shadow:
    0 0 30px rgba(225,29,46,0.35),
    0 0 60px rgba(225,29,46,0.18),
    inset 0 0 20px rgba(225,29,46,0.05);
  transform: translateY(-2px);
}

/* ─── BIO HIGHLIGHT GLOW ──────────────────────────────────── */
.bio-highlight {
  position: relative;
  overflow: hidden;
}
.bio-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225,29,46,0.08), transparent);
  animation: bio-shimmer 6s ease-in-out infinite;
}
@keyframes bio-shimmer {
  0%, 60%, 100% { left: -100%; }
  80% { left: 200%; }
}

/* ─── ICON-BOX ROTATING BORDER ON HOVER ───────────────────── */
.benefit-card:hover .icon-box {
  animation: icon-shake 0.6s ease-in-out;
}
@keyframes icon-shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}
.bullet:hover .icon-box {
  animation: icon-shake 0.5s ease-in-out;
  background: rgba(225,29,46,0.15);
  border-color: var(--border-hov);
}
.bullet {
  transition: border-color 0.3s, background 0.3s;
}

/* ─── TOUR FEATURE — Sergio en escenario ──────────────────── */
.tour-feature {
  position: relative;
  width: 100%;
  height: 64vh;
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 72px;
  border: 1px solid var(--border-hov);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(225,29,46,0.18),
    0 0 0 1px rgba(225,29,46,0.25);
  isolation: isolate;
}
.tour-feature img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.08) saturate(1.08) brightness(0.95);
  animation: ken-burns 26s ease-in-out infinite alternate;
  z-index: 0;
}
.tour-feature__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0) 0%,
      rgba(8,8,8,0.05) 35%,
      rgba(8,8,8,0.7) 80%,
      rgba(8,8,8,0.95) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(225,29,46,0.22), transparent 70%),
    radial-gradient(ellipse at 0% 0%, rgba(127,22,32,0.25), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.tour-feature__shine {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  animation: feature-shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes feature-shine {
  0%, 65%, 100% { left: -100%; }
  85% { left: 200%; }
}
.tour-feature__content {
  position: absolute;
  inset: auto 0 0 0;
  text-align: center;
  padding: 0 28px 56px;
  z-index: 3;
}
.tour-feature__content .section__tag {
  display: inline-block;
  margin-bottom: 16px;
  background: rgba(225,29,46,0.15);
  border: 1px solid var(--border-hov);
  border-radius: 100px;
  padding: 8px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tour-feature__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6.8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow:
    0 4px 32px rgba(0,0,0,0.85),
    0 0 80px rgba(225,29,46,0.4);
  margin-bottom: 18px;
  line-height: 1.02;
}
.tour-feature__content p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.tour-feature__meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 28px;
  background: rgba(8,8,8,0.55);
  border: 1px solid var(--border-hov);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.tour-feature__meta strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red-light);
  margin-right: 4px;
}
.tour-feature__dot {
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--red);
}
@media (max-width: 768px) {
  .tour-feature {
    height: 56vh;
    min-height: 420px;
    margin-bottom: 56px;
  }
  .tour-feature__content { padding: 0 20px 40px; }
  .tour-feature__meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
  }
}

/* ─── TOUR SCENE ──────────────────────────────────────────── */
.tour-scene {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 360px;
  max-height: 600px;
  overflow: hidden;
  border-radius: 14px;
  margin-top: 72px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 50px rgba(225,29,46,0.14);
  isolation: isolate;
}
.tour-scene img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: ken-burns 22s ease-in-out infinite alternate;
}
.tour-scene__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.3) 40%,
    rgba(8,8,8,0.1) 100%
  );
  z-index: 1;
}
.tour-scene__caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.tour-scene__caption span {
  color: var(--red-light);
  font-weight: 600;
}
@media (max-width: 768px) {
  .tour-scene { height: 40vh; min-height: 260px; margin-top: 52px; }
  .tour-scene__caption { white-space: normal; text-align: center; width: 90%; bottom: 20px; }
}

/* ─── REDUCED MOTION OVERRIDE ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .gallery-item img { animation: none; }
  .btn-primary, .btn-primary::after, .btn-primary::before { animation: none !important; }
  .navbar__cta { animation: none; }
  .hero__title.title-reveal.is-revealed { animation: none; }
  .scroll-progress__bar { animation: none; }
  .marquee-track { animation: none; }
  .grain-overlay { animation: none; }
  .bio-highlight::before { animation: none; }
}

/* ============================================================
   NEW HOME LAYER — logo hero · typewriter · tour mega · alfa cta
   ============================================================ */

/* ─── HERO LOGO (sobre el video) — scroll-driven brutal ───── */
.hero-logo {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 4;
  width: min(420px, 62vw);
  height: auto;
  pointer-events: none;
  /* CSS variables actualizadas por JS según el scroll */
  --p: 0;        /* progreso 0..1 a través del hero */
  --tx: -50%;
  --ty: -50%;
  transform:
    translate(var(--tx), calc(var(--ty) - calc(var(--p) * 14%)))
    scale(calc(1 + var(--p) * 0.85))
    rotate(calc(var(--p) * -2.5deg));
  opacity: calc(1 - var(--p) * 1.6);
  filter:
    blur(calc(var(--p) * 7px))
    drop-shadow(0 8px 40px rgba(0,0,0,0.65))
    drop-shadow(0 0 calc(60px + var(--p) * 100px) rgba(225,29,46, calc(0.35 + var(--p) * 0.55)));
  animation: hero-logo-in 1.4s var(--ease) 0.2s both;
  transition: filter 0.15s linear;
  will-change: transform, opacity, filter;
}
@keyframes hero-logo-in {
  from { opacity: 0; transform: translate(-50%, -42%) scale(0.92); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@media (max-width: 768px) {
  .hero-logo {
    width: min(320px, 70vw);
    top: 44%;
  }
}

/* ─── TYPEWRITER ON SCROLL ────────────────────────────────── */
[data-typewriter] {
  --tw-progress: 0;
  --tw-total: 1;
}
[data-typewriter] .tw-char {
  opacity: 0;
  transition: opacity 0.04s linear;
  will-change: opacity;
}
[data-typewriter] .tw-char.tw-on { opacity: 1; }

/* Cuando los chars/words están dentro de .red-text, replican el degradado
   (si no, pierden el text-fill: transparent del padre y se ven vacíos).
   Aplica a typewriter (.tw-char) y a title-reveal (.word). */
.red-text .tw-char,
.red-text .word {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 30%, var(--red-light) 55%, var(--red) 75%, var(--red-dark) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer-text 5s linear infinite;
}

/* Caret tras el último char visible */
[data-typewriter] .tw-caret {
  display: inline-block;
  width: 2px;
  height: 0.95em;
  vertical-align: text-bottom;
  margin-left: 2px;
  background: var(--red);
  animation: tw-blink 0.9s steps(2) infinite;
  opacity: 0;
  transition: opacity 0.2s;
}
[data-typewriter].tw-active .tw-caret { opacity: 1; }
[data-typewriter].tw-done    .tw-caret { opacity: 0; }
@keyframes tw-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ─── PHRASE SECTION — un poco más arriba ─────────────────── */
.phrase-section {
  padding-top: 64px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .phrase-section { padding: 48px 22px 72px; }
  .phrase-section blockquote {
    font-size: clamp(1.35rem, 5.4vw, 1.85rem);
    line-height: 1.4;
  }
}

/* ─── HERO PHRASE — frase superpuesta sobre el video ───────── */
.hero-phrase {
  position: absolute;
  left: 50%;
  bottom: 26vh;
  transform: translateX(-50%);
  z-index: 5;
  width: min(900px, 90%);
  text-align: center;
  pointer-events: none;
}
.hero-phrase blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--white);
  text-shadow:
    0 2px 18px rgba(0,0,0,0.85),
    0 0 40px rgba(0,0,0,0.6);
  margin: 0 auto;
}
.hero-phrase blockquote .red-text {
  font-style: normal;
}
.hero-phrase__author {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .hero-phrase {
    bottom: 22vh;
    width: min(560px, 92%);
  }
  .hero-phrase blockquote {
    font-size: clamp(1rem, 4.2vw, 1.4rem);
    line-height: 1.42;
  }
}
/* Cuando la frase encima del video sale por arriba, el hint
   "Scroll" puede quedar tapado: lo bajamos a la izquierda */
.hero-scroll-hint {
  bottom: 20px;
}

/* ─── QUIEN SOY — Apple-style premium ─────────────────────── */
.quien-soy-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  color: var(--white);
}

/* Lead — frase grande, peso ligero, color blanco con gradiente sutil */
.bio-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 1.85vw, 1.7rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: rgba(255,255,255,0.96);
  margin-bottom: 36px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bio-lead strong {
  font-weight: 600;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}
.bio-lead em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divisor — línea roja con resplandor */
.bio-divider {
  position: relative;
  width: 56px;
  height: 2px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(225,29,46,0.55);
  overflow: hidden;
}
.bio-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: bio-divider-shine 3.5s ease-in-out infinite;
}
@keyframes bio-divider-shine {
  0%, 60%, 100% { left: -100%; }
  80% { left: 200%; }
}

/* Métricas — cards centradas con count-up */
.bio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 auto 36px;
  max-width: 480px;
  width: 100%;
}
.bio-stat {
  position: relative;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(225,29,46,0.10), transparent 55%),
    linear-gradient(180deg, rgba(20,8,10,0.85) 0%, rgba(8,8,8,0.6) 100%);
  border: 1px solid rgba(225,29,46,0.25);
  border-radius: 14px;
  padding: 26px 18px 22px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.bio-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 50%,
    transparent 100%);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.bio-stat:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow:
    0 16px 40px rgba(225,29,46,0.22),
    0 0 0 1px var(--red);
}
.bio-stat:hover::before { opacity: 1; }
.bio-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 28px rgba(225,29,46,0.35);
}
.bio-stat__label {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

/* Texto descriptivo — limpio, espaciado generoso */
.bio-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 560px;
}
.bio-text strong {
  color: var(--white);
  font-weight: 500;
}

.bio-cta {
  margin-top: 0;
}

@media (max-width: 768px) {
  .quien-soy-title { margin-bottom: 24px; }
  .bio-lead { font-size: 1.15rem; margin-bottom: 24px; text-align: center; }
  .bio-divider { margin: 0 auto 22px; }
  .bio-stats { gap: 10px; margin-bottom: 26px; max-width: 100%; }
  .bio-stat { padding: 22px 14px 18px; }
  .bio-stat__num { font-size: clamp(2rem, 9vw, 2.6rem); }
  .bio-stat__label { font-size: 0.7rem; }
  .bio-text { font-size: 0.98rem; line-height: 1.78; margin-bottom: 28px; text-align: center; }
  .about-split__text { text-align: center; padding: 0 4px; }
}

/* ─── TOUR MEGA ───────────────────────────────────────────── */
.tour-mega {
  position: relative;
  background: var(--bg-2);
  padding: 140px 20px 120px;
  overflow: hidden;
}
.tour-mega__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 72px;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
}
.tour-mega__word {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(5rem, 22vw, 18rem);
  letter-spacing: -0.04em;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
  will-change: transform;
  white-space: nowrap;
  transform: translate3d(0,0,0);
}
.tour-mega__word--year {
  margin-top: -0.18em;
  font-style: italic;
}
.tour-mega__word.red-text {
  text-shadow: 0 0 80px rgba(225,29,46,0.45);
}
@media (max-width: 768px) {
  .tour-mega { padding: 80px 16px 80px; }
  .tour-mega__title { margin-bottom: 48px; }
  .tour-mega__word { font-size: clamp(4rem, 26vw, 8rem); }
}

/* visually hidden helper para SEO */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── ALFA CTA SECTION ────────────────────────────────────── */
.alfa-cta-section {
  position: relative;
  background: var(--bg);
  padding: 130px 0 130px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
/* Sistema de título mega — reutilizable en todas las secciones.
   .alfa-cta__title es alias para compatibilidad. */
.title-mega,
.alfa-cta__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 auto;
  padding: 0 16px 0.18em;        /* padding inferior para descendentes (y, ?) */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  text-align: center;
}
.title-mega__top,
.title-mega__bottom,
.alfa-cta__line {
  display: inline-block;
  font-size: clamp(2.6rem, 9vw, 7.2rem);
  white-space: nowrap;
  will-change: transform, filter;
  transition: filter 0.4s var(--ease), text-shadow 0.4s var(--ease);
}
.title-mega__top,
.alfa-cta__line--top {
  font-style: italic;
  font-weight: 700;
}
.title-mega__bottom,
.alfa-cta__line--bottom {
  font-size: clamp(3.4rem, 14vw, 10rem);
  letter-spacing: -0.035em;
  margin-top: -0.05em;
}
/* Glow on scroll para el sistema mega */
.title-mega__top.is-scrolling,
.title-mega__bottom.is-scrolling,
.alfa-cta__line.is-scrolling {
  filter: brightness(1.25);
  text-shadow:
    0 0 30px rgba(225,29,46,0.6),
    0 0 80px rgba(225,29,46,0.4);
}
.title-mega__top.is-scrolling,
.alfa-cta__line--top.is-scrolling {
  text-shadow:
    0 0 28px rgba(255,255,255,0.45),
    0 0 60px rgba(255,255,255,0.25);
}
@media (max-width: 768px) {
  .title-mega,
  .alfa-cta__title { padding: 0 8px; }
  .title-mega__top,
  .title-mega__bottom,
  .alfa-cta__line { font-size: clamp(2rem, 10vw, 4.4rem); }
  .title-mega__bottom,
  .alfa-cta__line--bottom { font-size: clamp(2.4rem, 12vw, 6rem); }
}
@media (max-width: 420px) {
  .title-mega__bottom,
  .alfa-cta__line--bottom { font-size: clamp(2.1rem, 11vw, 3.6rem); letter-spacing: -0.03em; }
}
/* Brillo cuando se está haciendo scroll */
.alfa-cta__line.is-scrolling {
  filter: brightness(1.25);
  text-shadow:
    0 0 30px rgba(225,29,46,0.6),
    0 0 80px rgba(225,29,46,0.4);
}
.alfa-cta__line--top.is-scrolling {
  text-shadow:
    0 0 28px rgba(255,255,255,0.45),
    0 0 60px rgba(255,255,255,0.25);
}

/* Botones — boost de brillo mientras scrollea */
.btn.is-scrolling {
  filter: brightness(1.12);
}
.btn-primary.is-scrolling {
  box-shadow:
    0 0 0 2px rgba(255,80,90,0.55),
    0 0 32px rgba(225,29,46,0.85),
    0 0 60px rgba(225,29,46,0.55),
    0 0 100px rgba(225,29,46,0.3),
    0 6px 30px rgba(225,29,46,0.5),
    inset 0 0 18px rgba(255,255,255,0.22);
}
.btn-outline.is-scrolling {
  border-color: var(--red);
  box-shadow:
    0 0 0 1px var(--red),
    0 0 26px rgba(225,29,46,0.55),
    0 0 60px rgba(225,29,46,0.28);
}
@media (max-width: 768px) {
  .alfa-cta__title { padding: 0 8px; }
  .alfa-cta__line { font-size: clamp(2rem, 10vw, 4.4rem); }
  .alfa-cta__line--bottom { font-size: clamp(2.4rem, 12vw, 6rem); }
}

/* Imagen — contenedor con bordes redondeados, glow y shine animado */
.alfa-cta__media {
  position: relative;
  display: block;
  width: min(680px, 92%);
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(225,29,46,0.18),
    0 0 0 1px rgba(225,29,46,0.25);
  isolation: isolate;
  transform: translateZ(0);
}
.alfa-cta__media::before {
  /* Borde con resplandor que se anima */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(225,29,46,0.6) 0%,
    rgba(225,29,46,0.05) 35%,
    rgba(225,29,46,0.05) 65%,
    rgba(225,29,46,0.6) 100%);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: alfa-border 8s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes alfa-border {
  0% { background-position: 0% 0%; }
  100% { background-position: 220% 220%; }
}
.alfa-cta__logo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}
.alfa-cta__media:hover .alfa-cta__logo { transform: scale(1.03); }

/* Sheen barriendo de izquierda a derecha */
.alfa-cta__shine {
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.0) 70%,
    transparent 100%);
  transform: skewX(-14deg);
  animation: alfa-shine 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}
@keyframes alfa-shine {
  0%, 55%, 100% { left: -120%; }
  78% { left: 170%; }
}

/* Resplandor exterior pulsante */
.alfa-cta__glow {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 0 30px rgba(225,29,46,0.25),
    0 0 80px rgba(225,29,46,0.12);
  animation: alfa-glow 3.6s ease-in-out infinite;
}
@keyframes alfa-glow {
  0%, 100% {
    box-shadow:
      0 0 30px rgba(225,29,46,0.25),
      0 0 80px rgba(225,29,46,0.12);
  }
  50% {
    box-shadow:
      0 0 50px rgba(225,29,46,0.5),
      0 0 120px rgba(225,29,46,0.25);
  }
}
.alfa-cta__btn { margin-top: 8px; }

/* ─── ALFA BENEFITS — 5 ventajas brutales ──────────────── */
.alfa-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: min(1100px, 100% - 48px);
  margin: 16px auto 0;
}
.alfa-benefit {
  position: relative;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(225,29,46,0.12), transparent 55%),
    linear-gradient(180deg, rgba(20,8,10,0.85) 0%, rgba(8,8,8,0.92) 100%);
  border: 1px solid rgba(225,29,46,0.25);
  border-radius: 14px;
  padding: 32px 30px 30px;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s var(--ease);
}
/* Línea superior con gradiente rojo */
.alfa-benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 20%,
    var(--red-light) 50%,
    var(--red) 80%,
    transparent 100%);
  opacity: 0.7;
  transition: opacity 0.4s, height 0.4s;
}
/* Glow interno en el corner */
.alfa-benefit::after {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(225,29,46,0.18) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 0;
}
.alfa-benefit:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow:
    0 24px 60px rgba(225,29,46,0.22),
    0 0 0 1px var(--red),
    0 0 40px rgba(225,29,46,0.18);
}
.alfa-benefit:hover::before { opacity: 1; height: 3px; }
.alfa-benefit:hover::after  { opacity: 1; }

.alfa-benefit__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg,
    var(--red-dark) 0%,
    var(--red) 30%,
    var(--red-light) 55%,
    var(--red) 75%,
    var(--red-dark) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 18px;
  animation: shimmer-text 5s linear infinite;
  position: relative;
  z-index: 2;
}
.alfa-benefit__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.alfa-benefit__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
  position: relative;
  z-index: 2;
}
.alfa-benefit__text strong {
  color: var(--white);
  font-weight: 600;
}
.alfa-benefit__text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Card destacada (la #5) ocupa toda la fila */
.alfa-benefit--wide { grid-column: 1 / -1; }
.alfa-benefit--wide {
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(225,29,46,0.18), transparent 60%),
    linear-gradient(135deg, rgba(30,10,12,0.9) 0%, rgba(8,8,8,0.95) 100%);
  border-color: rgba(225,29,46,0.4);
}

@media (max-width: 768px) {
  .alfa-benefits {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 14px;
  }
  .alfa-benefit { padding: 26px 22px 24px; }
  .alfa-benefit__num { font-size: 3rem; margin-bottom: 14px; }
  .alfa-benefit__title { font-size: 1.05rem; }
}

/* Texto del galardón — debajo de la imagen */
.alfa-cta__award {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  text-align: center;
}
.alfa-cta__award strong {
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 768px) {
  .alfa-cta__award {
    padding: 0 22px;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* Prueba Skool — captura del ranking */
.skool-proof {
  max-width: 540px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.skool-proof img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(225,29,46,0.22);
  box-shadow:
    0 0 0 1px rgba(225,29,46,0.08),
    0 0 40px rgba(225,29,46,0.18),
    0 18px 48px rgba(0,0,0,0.55);
}
.skool-proof figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 768px) {
  .skool-proof { padding: 0 22px; margin-top: 24px; }
  .skool-proof figcaption { font-size: 0.74rem; }
}

@media (max-width: 768px) {
  .alfa-cta-section { padding: 90px 0; gap: 28px; }
  .alfa-cta__title { padding: 0 22px; }
  .alfa-cta__media {
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .alfa-cta__btn {
    width: calc(100% - 44px);
    max-width: 360px;
    justify-content: center;
  }
}

/* ─── MOBILE — hero ajustes ──────────────────────────────── */
@media (max-width: 768px) {
  .hero-scroll-wrap   { height: 170vh; }
  .hero-scroll-sticky { height: 100vh; }
  .hero-scroll-sticky video { opacity: 0.72; }
}

/* ============================================================
   EDITORIAL LAYER — chapters, drop caps, pull-quote, mod numerals
   Aplica a sobre-mi.html y mujer-alfa.html
   ============================================================ */

/* Bio en columna única — sin aside */
.bio-wrap--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

/* ─── CHAPTERS (sobre-mi) ─────────────────────────────────── */
.chapter { position: relative; }
.chapter__mark {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.chapter__mark::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(225,29,46,0.7);
}
.chapter__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 28px;
}

/* Drop cap en el primer párrafo de cada capítulo */
.chapter > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 4.6em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.12em 0 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.04em;
  shape-outside: margin-box;
}
@media (max-width: 600px) {
  .chapter > p:first-of-type::first-letter {
    font-size: 3.6em;
    padding: 0.05em 0.1em 0 0;
  }
}

/* Pull quote rediseñado con comilla decorativa enorme */
.bio-highlight {
  position: relative;
  background: linear-gradient(180deg, rgba(225,29,46,0.08) 0%, rgba(225,29,46,0.02) 100%);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 36px 36px 32px 56px;
  margin: 40px 0;
  overflow: hidden;
}
.bio-highlight::before {
  content: '\201C';
  position: absolute;
  top: -28px;
  left: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(225,29,46,0.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.bio-highlight p {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
@media (max-width: 768px) {
  .bio-highlight { padding: 30px 24px 26px 32px; margin: 32px 0; }
  .bio-highlight::before { font-size: 6rem; top: -16px; left: 6px; }
}

/* CTA band — refuerzo dramático */
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ─── MUJER-ALFA — módulos con numeral gigante en fondo ── */
.section #modulos .modules .mod-card,
#modulos .mod-card {
  position: relative;
  overflow: hidden;
  padding: 36px 30px 32px;
  isolation: isolate;
}
#modulos .mod-card .mod-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
#modulos .mod-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -32px;
  right: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: rgba(225,29,46,0.07);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
  z-index: 0;
}
#modulos .mod-card:hover::after {
  color: rgba(225,29,46,0.18);
  transform: translate(-4px, -4px);
}
#modulos .mod-card .mod-card__title,
#modulos .mod-card .mod-card__text {
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  #modulos .mod-card::after { font-size: 6.5rem; bottom: -22px; }
}

/* ─── MUJER-ALFA — testimonios con comilla decorativa ──── */
.alfa-testimonials .testimonial {
  position: relative;
  overflow: hidden;
}
.alfa-testimonials .testimonial::before {
  content: '\201C';
  position: absolute;
  top: -34px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 11rem;
  font-weight: 900;
  color: rgba(225,29,46,0.10);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
}
.alfa-testimonials .testimonial:hover::before {
  color: rgba(225,29,46,0.22);
  transform: translateY(4px);
}

/* ─── MUJER-ALFA — fit cards (yes/no) refuerzo de contraste ─ */
.fit-card--yes {
  position: relative;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(225,29,46,0.16), transparent 55%),
    linear-gradient(180deg, rgba(20,8,10,0.85) 0%, rgba(8,8,8,0.9) 100%);
  border: 1px solid rgba(225,29,46,0.45);
  box-shadow:
    0 18px 50px rgba(225,29,46,0.18),
    0 0 0 1px rgba(225,29,46,0.2),
    inset 0 0 24px rgba(225,29,46,0.04);
}
.fit-card--yes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 30%,
    var(--red-light) 50%,
    var(--red) 70%,
    transparent 100%);
}
.fit-card--no {
  background: rgba(20,20,20,0.4);
  border: 1px dashed rgba(255,255,255,0.12);
  opacity: 0.92;
}

/* ─── MUJER-ALFA — FAQ animación más pulida ────────────── */
.faq-item {
  transition: border-color 0.3s, box-shadow 0.4s, transform 0.3s;
}
.faq-item:hover {
  transform: translateX(2px);
  box-shadow: 0 10px 30px rgba(225,29,46,0.08);
}
.faq-item[open] {
  box-shadow: 0 0 0 1px var(--border-hov), 0 12px 40px rgba(225,29,46,0.12);
}
.faq-item summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(225,29,46,0.08);
  border: 1px solid rgba(225,29,46,0.3);
  font-weight: 300;
  line-height: 1;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.faq-item:hover summary::after {
  background: rgba(225,29,46,0.18);
  border-color: var(--red);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background: var(--red);
  color: #000;
}

/* ─── MUJER-ALFA — award-chip refinado ─────────────────── */
.award-chip {
  position: relative;
}
.award-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #000;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow:
    0 4px 16px rgba(225,29,46,0.5),
    inset 0 0 12px rgba(255,255,255,0.18);
  flex-shrink: 0;
}

