/* ═══════════════════════════════════════════════
   DESIGN TOKENS (Naranja/Ámbar Premium)
═══════════════════════════════════════════════ */
:root {
  /* --- Fondos: Del negro puro al Carbón/Grafito Profundo --- */
  --bg: #121212;
  /* Fondo principal: Negro carbón muy oscuro */
  --bg-card: #1C1C1E;
  /* Tarjetas y recuadros (Elevación 1) */
  --bg-alt: #18181B;
  /* Fondo secundario: Antracita sutil */
  --bg-lift: #27272A;
  /* Superficies/Tarjetas: Gris oscuro suave */
  --bg-light: #FAFAFA;
  /* Blanco roto / Marfil grisáceo */

  /* --- Textos: Del blanco puro al Blanco Cálido/Roto --- */
  --text: #F4F4F5;
  /* Texto principal: Off-white cálido */
  --text-2: #A1A1AA;
  /* Texto secundario: Gris humo sofisticado */
  --text-light: #18181B;
  /* Texto oscuro para fondos claros */

  /* --- Acento: Del amarillo chillón al Dorado/Ámbar Premium --- */
  --brand: #F5A623;
  /* Acento principal: Ámbar elegante */
  --brand-hover: #D98D14;
  /* Hover del acento: Tono tostado */
  --brand-glow: rgba(245, 166, 35, 0.15);

  --border: rgba(255, 255, 255, 0.08);
  /* Bordes ultra sutiles */
  --border-light: rgba(0, 0, 0, 0.05);

  --font: 'Inter', sans-serif;
  --display: 'Oswald', sans-serif;
  --r: 8px;
  --ease: 0.2s ease;
  --max: 1240px;
  color-scheme: dark; /* Ayuda a que los elementos del sistema (scroll, etc) sean oscuros */
}

/* ═══════════════════════════════════════════════
   RESET Y BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent; /* Quita el recuadro gris al tocar en iPhone */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--bg);
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text-light);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Reset para iOS / Safari */
input,
textarea,
button,
select {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ═══════════════════════════════════════════════
   CONTAINERS
═══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--sm {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--md {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════
   BOTÓN PRIMARIO
═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #18181B;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  min-height: 52px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), transform 0.15s ease, box-shadow 0.2s ease;
    max-width: 100%;
}

.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--brand-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  font-size: 1.15rem;
  padding: 18px 52px;
  min-height: 58px;
}

/* ═══════════════════════════════════════════════
   EYEBROW
═══════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════
   NAV Y BARRA URGENCIA
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   NAV Y BARRA URGENCIA
═══════════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, #121212 0%, #1e1e21 50%, #121212 100%);
  padding: 10px 16px;
  text-align: center;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  overflow-x: hidden;
}

.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text);
}

.urgency-bar-inner .urgency-text-desktop,
.urgency-bar-inner .urgency-text-mobile {
  font-weight: 400;
  color: var(--text-2); /* Gris humito sutil */
  letter-spacing: 0.02em;
}

.urgency-bar-inner strong {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px rgba(245, 166, 35, 0.2); /* brillecito dorado premium */
}

.urgency-dot-bar {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--brand);
  border-radius: 50%;
  margin-right: 8px;
  animation: live-pulse 2s infinite;
}


/* -- NAV -- */
.nav {
  position: fixed;
  top: 38px;
  /* Deja el espacio exacto para la barrita amarilla inicial */
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.logo {
  max-width: 90px;
  height: auto;
}

/* Cuando el usuario scrollea, el JS le agrega esta clase */
.nav.scrolled {
  top: 0;
  /* Sube y se pega al techo ocultando el espacio de la barrita */
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav.scrolled .nav-inner {
  padding: 8px 20px;
}

.nav.scrolled .logo {
  max-width: 60px;
  padding: 2px 0;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.logo {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo span {
  color: var(--brand);
}

.nav-cta {
  font-size: 0.82rem;
  padding: 10px 22px;
  min-height: 40px;
}

/* ═══════════════════════════════════════════════
   HERO (100vh Centrado)
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;

  /* 1. Apilamos el gradiente (arriba) y la foto (abajo) */
  background-image: linear-gradient(to right, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.85) 45%, rgba(18, 18, 18, 0.30) 60%), url(img/bg.webp);

  /* 2. El tamaño aplica para ambas capas */
  background-size: cover;

  /* 3. CLAVE: El gradiente anclado a la izq, la foto a tus 360px */
  background-position: left center, 390px center;

  /*  background-repeat: no-repeat;*/
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  box-shadow: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 24px;
}

.hero-pill strong {
  color: var(--text);
  font-weight: 600;
}

.pill-avatars {
  display: flex;
  align-items: center;
}

.pill-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}

.pill-avatars img:first-child {
  margin-left: 0;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-accent {
  color: var(--brand);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.10rem);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
      color: white !important;

}

.hero-micros {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-micros li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  font-size: 1.05rem;
    color: var(--text-2);

  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.3);
}

.hero-check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--bg);
}

.hero-btn {
  margin-bottom: 16px;
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand);
  animation: blink 1.4s ease infinite;
}

.hero-right {
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-foto-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #161616;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-foto-ph span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   SECCIÓN VIDEO (RESTORATION)
═══════════════════════════════════════════════ */
.seccion-video {
  background: #FAFAFA;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 100px 0;
  border-bottom: 1px solid #eaeaea;
}

.video-header-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.video-eyebrow {
  color: var(--brand);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.video-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.video-title .title-l1 {
  display: block;
  color: #1C1C1E;
}

.video-title .title-l2 {
  display: block;
  color: var(--brand);
}

.video-subtitle {
  color: #3F3F46;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* -- Video Player Ampliado -- */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1), 0 0 100px rgba(255, 173, 0, 0.15);
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.overlay-content {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s;
}

.video-overlay:hover .overlay-content {
  transform: scale(1.05);
}

.overlay-l1 {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.overlay-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.overlay-l2 {
color: #ffc76b;
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
}

/* CTA Secundario debajo del video */
.video-cta-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btn-video-sec {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  background: #fdfdfc;
  /* Marfil muy sutil */
  border: 1px solid rgba(0, 0, 0, 0.18);
  /* Un poco más de presencia */
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-video-sec:hover {
  border-color: #111;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-video-sec svg {
  color: var(--brand);
  /* Detalle con acento amarillo */
  transition: transform 0.3s ease;
}

.btn-video-sec:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   SECCIÓN 3: PARA QUIÉN ES (V4 Refined)
═══════════════════════════════════════════════ */
.seccion-para-quien {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* BLOQUE 1 — ENCABEZADO CENTRADO */
.pq-header {
  text-align: center;
  margin-bottom: 40px;
}

.para-quien-h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  text-transform: uppercase;
}

/* NUEVO LAYOUT SPLIT */
.pq-split {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative; /* Anchor para sticky children */
}

.pq-col-img {
  position: relative;
  align-self: stretch; /* Se estira para crear el carril de scroll */
}

.pq-imagen {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  z-index: 5;
}

.pq-col-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .pq-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pq-col-img {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }
}

.pq-subtitulo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.25);
}

/* Bloque 2: Dolores */
.pq-dolores-wrap {
  margin-bottom: 56px;
}

.pq-lista-dolores {
  display: flex;
  flex-direction: column;
}

.pq-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pq-item:last-child {
  border-bottom: none;
}

.pq-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.pq-item-text {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.pq-item-sub {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-top: 3px;
  font-weight: 400;
  margin-bottom: 0;
}

/* Bloque 3: Perfiles */
.pq-perfiles-wrap {
  margin-bottom: 56px;
}

.pq-perfiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pq-perfil {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.2s ease;
}

.pq-perfil--top {
  border-top: 2px solid var(--brand);
}

.pq-perfil-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pq-perfil-titulo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.pq-perfil-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pq-perfil-list li {
  font-size: 0.9rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.pq-perfil-list li::before {
  content: "";
  width: 6px;
  height: 1px;
  background: var(--brand);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Bloque 4: Remate */
.pq-remate {
  background: var(--bg-card);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin-top: 0;
}

.pq-remate-l1 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.pq-remate-l2 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.pq-remate-p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-top: 10px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Bloque 5: CTA */
.pq-cta-final {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.pq-micro-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-2);
}

/* Responsive V4 */
@media (min-width: 768px) {
  .pq-perfiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .seccion-para-quien {
    padding: 72px 0;
  }

  .pq-item-text {
    font-size: 1rem;
  }

  .pq-perfil {
    padding: 22px 20px;
  }

  .pq-remate {
    padding: 24px 20px;
  }
}

@media (max-width: 899px) {
  .hero-right {
    display: none;
  }

  /* Oculta foto grande en mobile */
  .urgency-bar-inner {
    flex-direction: row;
    text-align: center;
    gap: 8px;
  }

  .urgency-sep {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE BLINDAJE MOBILE (≤768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Paddings de secciones reducidos */
  .seccion-para-quien,
  .seccion-programa,
  .seccion-autoridad,
  .seccion-testimonios,
  .seccion-faq,
  .seccion-cierre,
  .seccion-llevas,
  .seccion-video-light {
    padding: 60px 20px;
  }

  /* Hero: evitar desborde y centrar */
  .hero {
    padding: 80px 0 48px;
    background-position: center center;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.8) 40%, rgba(18, 18, 18, 0) 70%, rgba(18, 18, 18, 0) 100%), url(img/bg.webp);
  }

  .hero-left {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .hero-h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
  }

  .hero-micros {
    align-items: center;
    width: 100%;
  }

  .hero-micros li {
    text-align: left;
    width: fit-content;
  }

  /* Grilla Bento: Cirugía de márgenes y columnas */
  .bento-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .bento-card {
    margin: 0 !important;
    width: 100%;
    padding: 24px;
    text-align: center;
    align-items: center;
  }

  .card-bonus {
    grid-column: span 1 !important;
    flex-direction: column !important;
  }

  .card-clases {
    grid-column: span 1 !important;
    flex-direction: column !important;
  }

  .clases-text {
    padding: 24px;
  }

  .programa-grid {
    flex-direction: column;
    gap: 12px;
  }

  .test-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Precio más compacto en mobile */
  .precio-card-main {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }

  .precio-number {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .precio-checkout {
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  /* Párrafos descriptivos: ancho de lectura controlado */
  p {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   BLOQUE 4: QUÉ TE LLEVÁS (Light Mode - Bento)
═══════════════════════════════════════════════ */
.seccion-llevas {
  background: #FAFAFA;
  padding: 120px 0;
}

.eyebrow-dark {
  color: #1C1C1E;
}

.eyebrow-dark::before {
  background: #1C1C1E;
}

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

.llevas-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #1C1C1E;
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 16px;
  letter-spacing: -0.01em;
}

/* Grilla Bento */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Tarjeta Base */
.bento-card {
  background: var(--bg-card);
  /* Integrar con el fondo oscuro o mantener claro? El usuario dijo "Secciones claras" */
  /* Si la seccion es clara, la tarjeta debe contrastar o ser blanca. */
  /* Mantengamos el gris ultra clarito pero #F4F4F5 para coherencia */
  background: #F4F4F5;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: #dcdcdc;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: rgb(245 166 35 / 61%);;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dk);
  margin-bottom: 8px;
}

.bento-num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.bento-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1C1C1E;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.bento-desc {
  font-size: 1.05rem;
  color: #4A4A52;
  line-height: 1.6;
}

/* Tarjeta Clases (Imagen + Texto) */
.card-clases {
  padding: 0;
  flex-direction: column;
  overflow: hidden;
}

.clases-img {
  width: 100%;
  min-height: 240px;
  background: #eef0f2;
  background: url(img/clase.webp);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e9ecef;
}

.ph-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0a0a0;
  text-align: center;
  line-height: 1.6;
}

.clases-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tarjeta Bonus (Oscura) */
.card-bonus {
  background: var(--bg);
  /* Contraste fuerte */
  color: #ffffff;
  border: 1px solid #1a1a1a;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card-bonus:hover {
  box-shadow: 0 16px 40px rgba(255, 173, 0, 0.15);
  border-color: rgba(255, 173, 0, 0.3);
}

.card-bonus .bento-title {
  color: #ffffff;
}

.card-bonus .bento-desc {
  color: var(--text-2);
}

.bonus-tag {
  display: inline-flex;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--brand);
  padding: 6px 16px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 16px;
}

.bonus-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.bonus-icon-bg {
  position: absolute;
  right: -10px;
  bottom: -20px;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

/* Responsive Desktop */
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-bonus {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Clases ocupa 2 columnas y se vuelve horizontal */
  .card-clases {
    grid-column: span 2;
    flex-direction: row;
  }

  .clases-img {
    border-bottom: none;
    border-right: 1px solid #e9ecef;
    flex: 1;
  }

  .clases-text {
    flex: 1;
  }

  /* Bonus ocupa las 3 columnas y se vuelve horizontal */
  .card-bonus {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px 64px;
  }

  .bonus-content {
    max-width: 700px;
  }

  .bonus-icon-bg {
    position: relative;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    transform: scale(1.5);
    margin-right: 40px;
  }
}

/* ═══════════════════════════════════════════════
   BLOQUE 5: EL PROGRAMA (Dark Mode)
═══════════════════════════════════════════════ */
.seccion-programa {
  background: var(--bg-alt);
  /* Un tono apenas distinto para separar secciones */
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

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

.programa-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  margin-top: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.programa-intro {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Grilla de Módulos */
.programa-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.mod-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mod-card:hover,
.test-card:hover,
.precio-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 173, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 173, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #dcdcdc;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mod-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  opacity: 0.9;
  flex-shrink: 0;
  width: 50px;
  /* Mantiene todos los textos alineados */
}

.mod-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mod-title {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  /*    color: #f5a623;*/
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mod-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Estilo especial para el módulo Bonus */
.mod-bonus-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(255, 173, 0, 0.05));
  border-color: rgba(255, 173, 0, 0.2);
}

.num-bonus {
  font-size: 2.5rem;
  margin-top: -8px;
}

.bonus-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #050505;
  background: var(--brand);
  padding: 4px 12px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 4px;
}

.text-brand {
  color: var(--brand);
    display: block;
}

.programa-cta-wrap {
  text-align: center;
}

/* ═══════════════════════════════════════════════
   BLOQUE 6: AUTORIDAD (Light Mode)
═══════════════════════════════════════════════ */
.seccion-autoridad {
  background: #FAFAFA;
  padding: 120px 0;
  border-top: 1px solid #eaeaea;
}

.aut-split {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* -- Foto izquierda -- */
.aut-foto-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #eef0f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #a0a0a0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  /* Sombra elegante */
  border: 1px solid #e9ecef;
  overflow: hidden;
  background: url(img/sobre-mi.webp);
  background-position: center;
  background-size: cover;
}

/* -- Contenido derecha -- */
.aut-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aut-nombre {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #1C1C1E;
  /* Negro suave UX */
  line-height: 1.1;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* -- Stats -- */
.aut-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}

.aut-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aut-stat-item strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  /* El ámbar destaca el dato duro */
  line-height: 1;
}

.aut-stat-item span {
  font-size: 1.05rem;
  color: #3F3F46;
  /* Gris medio legible */
  font-weight: 500;
}

/* -- Bio -- */
.aut-bio {
  font-size: 1.15rem;
  color: #3F3F46;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* -- Social / Extra -- */
.aut-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717A;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 0.95rem;
  color: #1C1C1E;
  font-weight: 600;
  transition: background 0.2s ease;
  cursor: pointer;
}

.social-pill:hover {
  background: #e4e4e7;
}

.social-pill svg {
  color: var(--brand-dk);
  /* Íconos con un toque del color de marca */
}

/* -- Responsive -- */
@media (min-width: 900px) {
  .aut-split {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .aut-media {
    flex: 0 0 40%;
    /* La foto ocupa el 40% a la izquierda */
  }

  .aut-content {
    flex: 1;
  }

  .aut-stats {
    flex-direction: row;
    /* Las stats se ponen en una sola línea */
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════════════
   BLOQUE 7: TESTIMONIOS (Dark Mode)
═══════════════════════════════════════════════ */
.seccion-testimonios {
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

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

.test-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.mod-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mod-list li {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mod-list li::before {
  content: "—";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Ajuste adicional para cards */
.mod-card {
  padding: 32px 28px;
  min-height: 240px;
  /* Asegurar consistencia */
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 173, 0, 0.2);
}

.test-quote-icon {
  margin-bottom: 24px;
  opacity: 0.8;
}

.test-text {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 32px;
}

.test-autor {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.test-avatar-ph {
  width: 48px;
  height: 48px;
  background: var(--bg-lift);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand);
  font-family: var(--display);
  border: 1px solid var(--border);
}

.test-info {
  display: flex;
  flex-direction: column;
}

.test-info strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.test-info span {
  color: #71717A;
  font-size: 0.85rem;
}

/* -- Responsive Desktop -- */
@media (min-width: 900px) {
  .test-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════
   SECCIÓN 9: INVERSIÓN (V5 Pro Layout)
═══════════════════════════════════════════════ */
.seccion-precio {
  background: #1c1c1e;
  background: radial-gradient(circle at center, #27272a 0%, #1c1c1e 100%);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.pricing-pro-box {
  background: #1C1C1E;
  border: 1px solid rgb(245 166 35 / 25%);

  /* Borde sutil premium */
  border-radius: 8px;
  /* Un poco más de radio */
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  margin-top: 0px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
    flex-direction: column-reverse!important;
}

.pricing-pro-content {
  padding: 64px;
  background: #ffffff0f;
  border-right: 1px solid rgb(245 166 35 / 25%);
}

.pricing-pro-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
}

.pricing-pro-p {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.pricing-pro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.p-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* Estilo especial para features de urgencia (clases en vivo) */
.p-feat-urgent {
  gap: 12px;
  align-items: center;
  color: var(--brand);
  font-weight: 600;
}

.p-feat-urgent svg {
  flex-shrink: 0;
  color: var(--brand);
}

.p-feat-urgent > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.p-feat-urgent strong {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
}

.p-feat-urgent-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.pricing-pro-card {
  background: #000000;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
}

.p-tag-high-contrast {
  background: transparent;
  color: var(--brand);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: 100%;
  text-align: center;
}

.p-price-block {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-price-old {
  color: #A1A1AA;
  font-size: 0.95rem;
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 500;
}

.p-price-now {
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: #FFF;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.p-currency {
  font-size: 1.5rem;
  font-family: var(--font);
  color: var(--brand);
  margin-top: 10px;
  margin-right: 8px;
  font-weight: 700;
}

.p-amount {
  letter-spacing: -0.02em;
}

.p-urgency-block {
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
    align-items: baseline;
}

.p-urgency-icon {
  width: 10px;
  height: 10px;
  background-color: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand);
  animation: pulse-amber 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-amber {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

.p-urgency-text {
  color: #FFF;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.4;
}

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

.p-btn-buy {
  width: 100%;
  margin-bottom: 32px;
  padding: 20px 24px;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.2);
}

.p-guarantee-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-icon {
  flex-shrink: 0;
}

.p-guarantee-text {
  font-size: 0.85rem;
  color: #A1A1AA;
  text-align: left;
  line-height: 1.4;
}

.p-guarantee-text strong {
  color: #FFF;
}

.p-trust-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.pt-micro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.pt-micro strong {
  color: #fff;
  font-weight: 500;
}

.pt-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #A1A1AA;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pt-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .pricing-pro-box {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .pricing-pro-card {
    order: -1;
    padding: 48px 24px;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .pricing-pro-content {
    order: 0;
    padding: 40px 24px;
  }

  .pricing-pro-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-pro-h2 {
    font-size: 2.2rem;
    padding: 20px 16px;
  }

  .p-card-price {
    font-size: 4rem;
  }
}

/* Header de sección (Inversión) */
.pricing-pro-header {
  text-align: center;
  margin-bottom: 24px;
}

.precio-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.pricing-pro-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  margin-top: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   BLOQUE 10: FAQ (Light) Y CIERRE (Dark)
═══════════════════════════════════════════════ */
.seccion-faq {
  background: #FAFAFA;
  padding: 100px 0;
}

/* -- FAQ -- */
.faq-wrap {
  margin-bottom: 80px;
  text-align: center;
}

.faq-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: #1C1C1E;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 8px;
  margin-bottom: 48px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eaeaea;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
  overflow: hidden;
  /* Para que el slide funcione */
}

/* Ocultar el triangulito feo por defecto del navegador */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C1C1E;
  cursor: pointer;
  list-style: none;
  /* Para Firefox */
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--brand);
}

.faq-q:hover .faq-icon {
  color: var(--brand);
  transform: rotate(45deg);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-2);
  transition: transform 0.3s ease;
}

/* Cuando el acordeón está abierto */
.faq-item[open] .faq-q {
  color: var(--brand);
  padding-bottom: 12px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-a {
  display: block;
  /* Asegurar bloque */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  padding-bottom: 0;
  /* Reset para animar */
  font-size: 1.05rem;
  color: #3F3F46;
  line-height: 1.6;
}

.faq-item[open] .faq-a {
  max-height: 400px;
  /* Suficiente para el texto */
  opacity: 1;
  padding-bottom: 24px;
}

.faq-item.closing .faq-a {
  max-height: 0;
  opacity: 0;
}

/* -- Cierre Final (Dark Mode) -- */
.seccion-cierre {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.cierre-final {
  text-align: center;
}

.cierre-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

/* -- Footer Minimalista -- */
.footer {
  background: #000;
  /* Negro puro para marcar el final absoluto */
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-inner p {
  color: #52525B;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════
   MEJORAS TESTIMONIOS
═══════════════════════════════════════════════ */
.test-stars {
  color: var(--brand);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.test-resultado {
  display: inline-flex;
  gap: 8px;
  background: var(--brand-glow);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.02em;
  margin-top: 4px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   CTA INTERMEDIO (post-testimonios)
═══════════════════════════════════════════════ */
.cta-intermedio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: 64px;
  padding: 56px 32px;
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 20px;
}

.cta-int-copy {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
  max-width: 480px;
  line-height: 1.5;
  margin: 0;
}

.cta-int-micro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════
   SISTEMA DE ANIMACIONES (UX Premium)
═══════════════════════════════════════════════ */

/* Clase base para elementos ocultos que se van a animar */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  /* Slide Up muy sutil de 20px */
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  /* Optimización de rendimiento */
}

/* Clase que gatilla la animación (agregada por JS) */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Micro-interacciones suaves en hovers globales */
.btn-primary,
.mod-card,
.test-card,
.bento-card,
.precio-card {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 173, 0, 0.15);
}

@keyframes sutilPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 173, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 173, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 173, 0, 0);
  }
}

.btn-primary.cta-main {
  animation: sutilPulse 3s infinite;
}

/* Staggered delays (revelación secuencial rápido para grillas) */
.stagger-1 {
  transition-delay: 0.1s !important;
}

.stagger-2 {
  transition-delay: 0.2s !important;
}

.stagger-3 {
  transition-delay: 0.3s !important;
}

.stagger-4 {
  transition-delay: 0.4s !important;
}

.stagger-5 {
  transition-delay: 0.5s !important;
}

.stagger-6 {
  transition-delay: 0.6s !important;
}

@media (max-width: 1350px) {
  /*
    .hero{
        background-image: linear-gradient(to right, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.30) 35%, rgba(18, 18, 18, 0.10) 60%), url(img/bg.webp);
        background-position: 340px -40px;        
    }
*/
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes live-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
  }
}

/* ═══════════════════════════════════════════════
   CONTACT FORM & TOAST STYLES
   ═══════════════════════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(245, 166, 35, 0.05);
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Honeypot */
.hidden-field {
  display: none !important;
}

/* Toast Notification */
#toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--brand);
  color: var(--text);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--brand);
  font-size: 1.2rem;
}

.toast-message {
  font-size: 0.95rem;
  font-weight: 500;
}