/* =====================================================================
   custom.css — Clarity HOME (claritysite2)
   Reglas de estilo: tonos planos, sin gradientes, sin sombras,
   sin hover translateY. Radio 10px (los botones van tipo pill como p1).
   Fuente: Roboto Flex.
===================================================================== */

/* =========================
   Variables de marca (tomadas del proyecto1)
========================= */
:root {
  --c-dark: #0A0A0A;
  --c-line: #C3C3C3;

  --c-white: #ffffff;
  --radius: 10px;

  /* =========================
     PALETA MAESTRA v2 — 3 pares (base + soft)
     Cada par: color de fondo/superficie + su tono claro para el bloque interior
  ========================= */

  /* Par 1 — Navy (el mas oscuro) */
  --v2-navy: #202F69;
  --v2-navy-soft: #293C83;

  /* Par 2 — Blue (intermedio) */
  --v2-blue: #5197D6;
  --v2-blue-soft: #ADD0F7;

  /* Par 3 — Cyan (el mas vivo).
     --v2-cyan queda de reserva: alternativa a --v2-blue si el cliente lo pide */
  --v2-cyan: #01A2EB;
  --v2-cyan-soft: #DFF9FE;

  /* Neutro de fondo — azul palidisimo para secciones claras */
  --v2-ice: #F0F7FD;

  /* Linea del frame interior de las cards sobre fondo oscuro */
  --v2-frame: #6786FF;

  /* Fondo de seccion clara cuando las cards van en --v2-ice (necesita
     ser un punto mas oscuro que la card para que esta se despegue) */
  --v2-mist: #E7EFF5;
}

/* Reset base */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Flex", system-ui, Arial, sans-serif;
  color: var(--v2-navy);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Flex", system-ui, Arial, sans-serif;
  line-height: 1.15;
}

/* =========================
   Botones (pill, como proyecto1) — solo cambian color en hover
========================= */
.btn-rounded {
  border: 2px solid transparent;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  min-width: 180px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
/* Variante clara: fondo azul claro + texto navy */
.btn-bluelight {
  background: var(--v2-blue-soft);
  color: var(--v2-navy);
}
.btn-bluelight:hover,
.btn-bluelight:focus {
  background: var(--v2-navy);
  color: var(--v2-blue-soft);
  border-color: var(--v2-blue-soft);
}
/* Variante oscura: fondo navy + texto azul claro (inversa de la anterior) */
.btn-bluedark {
  background: var(--v2-navy);
  color: var(--v2-blue-soft);
}
.btn-bluedark:hover,
.btn-bluedark:focus {
  background: var(--v2-blue-soft);
  color: var(--v2-navy);
}
/* Variante navy (misma base que bluedark, hover mas sutil) */
.btn-navy {
  background: var(--v2-navy);
  color: var(--v2-blue-soft);
}
.btn-navy:hover,
.btn-navy:focus {
  background: var(--v2-navy-soft);
  color: var(--v2-blue-soft);
}

/* =========================
   HEADER — barra flotante con efecto glass
========================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  pointer-events: none;
}
.site-header .header-bar {
  pointer-events: auto;
  background: var(--v2-blue-soft); /* barra en azul claro */
  border-radius: 28px;           /* barra muy redondeada (como el diseno) */
  padding: 0px 8px 0px 26px;
}
.site-header .brand {
  display: inline-block;
  width: 142px;
  color: #000;                   /* logo negro: la barra ahora es clara */
    padding-top: 8px;
}
.site-header .brand svg {
  width: 100%;
  height: auto;
  display: block;
  fill: currentColor;
}
.main-nav {
  align-items: center;
  justify-content: center;   /* nav pegado al logo */
  gap: 22px;
  padding-left: 28px;
}
.main-nav .nav-link {
  color: var(--v2-navy);         /* links navy */
  font-size: 16px;
  font-weight: 700;              /* bold */
  text-decoration: none;
  padding: 20px 0;
  transition: color .2s ease;
}
.main-nav .nav-link:hover { color: var(--v2-blue); }
.header-cta {
  background: var(--v2-navy);    /* boton navy */
  color: var(--v2-blue-soft);    /* texto azul claro */
  font-weight: 700;
  font-size: 14px;
  padding: 18px 30px;
  border-radius: 999px;          /* pill */
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease;
}
.header-cta:hover { background: var(--v2-navy-soft); color: var(--v2-blue-soft); }

/* =========================
   HERO — video de fondo + H1 centrado
========================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--c-dark);
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}
.hero-copy {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
  padding: 0 24px;
}
.hero-title {
  color: #fff;
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
}
.hero-title span { display: block; }

/* Barra solida al pie del hero del home (separador con la seccion siguiente) */
.hero#hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8px;
  background: var(--v2-blue-soft);
  z-index: 4;
}

/* =========================
   EQUIPPING — texto + caja de video
========================= */
.equipping {
  background: var(--c-white);
  padding: 110px 0;
}

/* Titular de bloque de texto: lo comparten el home (seccion 2) y la
   seccion info de events, para que no diverjan */
.equipping-title,
.events-info__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--v2-navy);       /* linea 1: navy (el resto lo hereda) */
  margin: 0 0 10px;
}
/* Solo la segunda linea va en blue medio (sin !important para que gane esta) */
.equipping-title .line-blue,
.events-info__title .t-blue,
.events-info__title--blue { color: var(--v2-blue); }
.equipping-lead {
  font-weight: 700;
  font-size: 18px;
  color: #1D1D1D;
  margin-bottom: 16px;
}
.equipping p {
  font-size: 17px;
  line-height: 1.7;
  color: #1D1D1D;
}

/* Caja de video */
.video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.video-box__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Boton play centrado */
.video-box__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 86px; height: 86px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease;
}
.video-box__play:hover { background: rgba(255, 255, 255, 0.3); }
.video-box__play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
/* Boton cerrar (solo visible en fullscreen) */
.video-box__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: none;
  z-index: 2;
}
/* Modo pantalla completa: el JS fija las coordenadas y anima el tamano */
.video-box.is-fullscreen {
  position: fixed;
  z-index: 9999;
  border-radius: 0;
  aspect-ratio: auto;
  cursor: default;
}
.video-box.is-fullscreen .video-box__media { object-fit: contain; background: #000; }
.video-box.is-fullscreen .video-box__play { display: none; }
.video-box.is-fullscreen .video-box__close { display: flex; align-items: center; justify-content: center; }
/* Capa oscura detras del video en fullscreen */
.video-backdrop {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 9998;
  pointer-events: none;
}

/* =========================
   OUR THREE PILLARS — 3 cards
========================= */
.pillars {
  background: var(--v2-navy);
  padding: 110px 0;
}
/* Titulo de seccion que encabeza contenido: un solo color, bold 700
   (menos peso que el h1 del hero, que va en 800) */
.pillars-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 50px;
}
.pillar-card {
  position: relative;
  background: var(--v2-navy-soft);      /* navy claro del card */
  border-radius: 20px;
  padding: 15px;                        /* separacion entre el borde del card y el contenido */
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* Borde de linea azul claro embebido (frame), separado del borde del card */
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 6px;                          /* separacion entre el borde del card y la linea */
  border: 1.5px solid var(--v2-frame);  /* frame line en blue medio */
  border-radius: 17px;
  pointer-events: none;
}
.pillar-card__media {
  border-radius: 10px 10px 0 0;         /* radius solo arriba, abajo recto */
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 26px;
}
.pillar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pillar-card__body {
  padding: 0 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pillar-card__title {
  color: var(--v2-blue-soft);
  font-size: 38px;
  font-weight: 400;                     /* ligero, no bold */
  line-height: 1.1;
  margin: 0 0 18px;
}
.pillar-card__lead {
  color: #fff;
  font-weight: 700;                     /* bold */
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 18px;
}
.pillar-card__text {
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 40px;
}
.pillar-card .btn-rounded {
  margin-top: auto;
  align-self: flex-start;
  min-width: auto;
  padding: 14px 30px;
  font-size: 15px;
}

/* =========================
   SOUL CARE IS THE CORE — texto + slider vertical (marquee)
========================= */
.soulcare {
  background: var(--v2-blue);
  padding: 0px 0;
  overflow: hidden;
}
.soulcare-content { padding-right: 30px; }
.soulcare-title {
  color: var(--v2-cyan-soft);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  margin: 0 0 22px;
}
.soulcare-lead {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.soulcare p {
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}
/* Slider vertical (Swiper): 3 visibles, 1 centrado + 2 al 50% */
.soulcare-swiper {
  height: 80vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}
/* Ease para la animacion del avance (igual criterio que el horizontal) */
.soulcare-swiper .swiper-wrapper { transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1); }
.soulcare-swiper .swiper-slide {
  border-radius: var(--radius);
  overflow: hidden;
}
.soulcare-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   CLARITY ONE DAY — swiper con peek lateral
========================= */
.oneday {
  background: var(--v2-ice);
  padding: 110px 0;
  overflow: hidden;
}
.oneday-title {
  color: var(--v2-navy);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  margin: 0 0 50px;
}
.oneday-swiper {
  width: 100%;
  overflow: visible;
}
/* Ease suave para la animacion del avance (de 3 en 3) */
.oneday-swiper .swiper-wrapper { transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1); }
.oneday-swiper .swiper-slide {
  width: 31%;
  height: auto;
  opacity: 1;
}
@media (max-width: 1100px) { .oneday-swiper .swiper-slide { width: 46%; } }
@media (max-width: 700px)  { .oneday-swiper .swiper-slide { width: 84%; } }
.event-card {
  text-align: center;
}
.event-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 377 / 250;   /* ratio nativo de los assets de evento */
  margin-bottom: 22px;
}
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-card__city {
  color: var(--v2-blue);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}
.event-card__date {
  color: var(--v2-navy);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.event-card__place {
  color: var(--v2-navy);
  font-size: 14px;
  margin-bottom: 18px;
}
.event-card .btn-rounded {
  min-width: auto;
  padding: 11px 30px;
  font-size: 14px;
}

/* =========================
   RENEWED -> SUBSCRIBE — pin GSAP (caja gris escala) + fade subscribe
========================= */
.renewed-pin {
  background: var(--v2-navy);
  position: relative;
}
.renewed-pin__stage {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Escena inicial */
.renewed-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.renewed-eyebrow {
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 30px;
}
.renewed-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  width: 100%;

}
.renewed-word {
  color: var(--v2-blue-soft);
  font-size: clamp(36px, 6vw, 86px);
  font-weight: 800;
  line-height: 1;
    min-width: 370px;
        display: inline-block;
}
.renewed-box {
  width: clamp(150px, 18vw, 350px);
  height: clamp(170px, 22vw, 350px);
  background: var(--v2-navy-soft);
  border-radius: 33px;
  flex: 0 0 auto;
  will-change: transform, width, height;
}
.renewed-arrows {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}
.renewed-arrows span {
  width: 16px; height: 16px;
  border-right: 3px solid var(--v2-blue-soft);
  border-bottom: 3px solid var(--v2-blue-soft);
  transform: rotate(45deg);
}
/* Contenido subscribe (oculto hasta que la caja llena la pantalla) */
.subscribe {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.subscribe-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  margin: 0 0 16px;
}
.subscribe-sub {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  margin-bottom: 36px;
}
.subscribe-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
  background: transparent;              /* solo contorno, sin relleno */
  border: 1px solid var(--v2-blue-soft);
  border-radius: 999px;
  padding: 7px 7px 7px 28px;
}
.subscribe-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 16px;
}
.subscribe-input::placeholder { color: #fff; }
.subscribe-form .btn-rounded {
  min-width: auto;
  padding: 12px 26px;
  font-size: 14px;
}

/* =========================
   FOOTER — grid con divisores (segun imagen)
========================= */
.site-footer {
  background: var(--v2-navy);                         /* navy */
  color: #fff;
}
/* Bloque superior: logo | links, con divisor central full-height */
.footer-grid { display: flex; align-items: stretch; }
.footer-logo-col {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  padding: 46px 40px 46px 60px;
}
.footer-logo img { height: 50px; width: auto; display: block; }
.footer-links-col {
  flex: 1;
  padding: 46px 0 46px 70px;
  border-left: 1px solid #fff;                       /* divisor central */
}
.footer-cols { display: flex; gap: 56px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col a {
  position: relative;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease;
}
/* Hover: subrayado azul claro que crece desde la izquierda */
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--v2-blue-soft);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.footer-col a:hover { color: #fff; }
.footer-col a:hover::after { transform: scaleX(1); }

/* Linea horizontal del sub-footer a todo el ancho (izq -> der 100%) */
.footer-rule { width: 100%; height: 1px; background: #fff; }

/* Bloque inferior: el divisor central continua */
.footer-bottom {
  display: flex;
}
.footer-bottom-left {
  flex: 0 0 42%;
  padding: 18px 40px 22px 60px;
  font-size: 14px;
  color: #fff;
}
.footer-bottom-right {
  flex: 1;
  padding: 18px 0 22px 70px;
  border-left: 1px solid #fff;                       /* divisor central continua */
  font-size: 14px;
  color: #fff;
}

/* =========================
   Animaciones reveal (igual criterio que proyecto1)
========================= */
.reveal-title { visibility: hidden; }
.reveal-title.is-ready { visibility: visible; }
.reveal-title .split-line { overflow: hidden; display: block; }
.wow { visibility: hidden; }
.animated.fadeInUp, .animated.fadeIn { visibility: visible; }

/* =========================
   Responsive
========================= */
@media (max-width: 991.98px) {
  .equipping, .pillars, .soulcare, .oneday { padding: 70px 0; }
  .main-nav { display: none !important; }
  .video-box { margin-top: 32px; }
  .soulcare-content { padding-right: 0; margin-bottom: 36px; }
  .soulcare-swiper { height: 60vh; min-height: 420px; }
  .renewed-row { gap: 18px; }
  /* Footer: stack y sin divisor central en mobile */
  .footer-grid, .footer-bottom { flex-direction: column; }
  .footer-logo-col, .footer-links-col,
  .footer-bottom-left, .footer-bottom-right {
    flex: 1 1 auto;
    border-left: 0;
    padding-left: 30px;
  }
  .footer-logo-col { padding-bottom: 0; }
  .footer-links-col { padding-top: 28px; }
  .footer-cols { gap: 40px; flex-wrap: wrap; }
  .footer-bottom-right { padding-top: 0; }
}

@media (max-width: 575.98px) {
  .renewed-word { font-size: 34px; }
  .renewed-box { width: 110px; height: 130px; }
  .subscribe-form { flex-direction: column; align-items: stretch; padding: 14px; border-radius: var(--radius); }
  .subscribe-form .btn-rounded { width: 100%; }
}

/* =====================================================================
   ABOUT PAGE — capsule de color por seccion + cards de personas
===================================================================== */
/* Capa de fondo full-viewport; su color lo anima GSAP por seccion */
.about-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--v2-navy);       /* color inicial (Our Story = dark) */
}
.about { position: relative; z-index: 1; }
.site-footer { position: relative; z-index: 1; }   /* footer sobre la capa about-bg */

.about-sec { position: relative; padding: 110px 0; color: #fff; }

/* Texto que acompana al capsule: cambia de color EN SYNC con el bg (clase en body) */
.about-h1, .about-lead, .about-sec p,
.about-section-title, .about-founder__title {
  transition: color .45s ease, border-color .45s ease;
}

/* --- Our Story --- */
.about-story__text { padding-right: 30px; }
.about-h1 { font-weight: 500; font-size: clamp(40px, 5vw, 45px); margin: 0 0 24px; color: var(--v2-blue-soft); }
.about-lead { font-weight: 400; font-size: 18px; line-height: 1.65; margin: 0 0 18px; color: #fff; }
.about-lead strong { font-weight: 700; }
.about-sec p { font-size: 18px; line-height: 1.7; margin: 0 0 16px; color: #fff; }
.about-vslider { height: 78vh; min-height: 560px; }

/* Tema claro -> texto oscuro (override sincronizado con el bg) */
body.about-light .about-sec { color: var(--v2-navy); }
body.about-light .about-h1 { color: var(--v2-navy); }
body.about-light .about-lead { color: #1D1D1D; }
body.about-light .about-sec p { color: #1D1D1D; }

/* --- Care for the Soul (la capsula) --- */
.about-capsule { padding: 130px 0; }
.about-capsule__title {
  color: #fff;                 /* blanco cuando el bg es dark/azul */
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  margin: 0;
  transition: color .45s ease;
}
/* Al llegar (bg claro) el titulo va navy */
body.about-light .about-capsule__title { color: var(--v2-navy); }

/* --- Titulo de seccion con linea --- */
.about-section-title {
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 45px);
  margin: 0 0 36px;
  padding-bottom: 18px;
  border-bottom: 2px solid;
  color: var(--v2-blue-soft);               /* azul claro en todos los temas oscuros */
  border-color: #fff;
}
/* Tema azul (navy-soft): mismo azul claro, estandarizado */
body.about-blue .about-section-title { color: var(--v2-blue-soft); border-color: #fff; }
/* Tema claro -> titulo y linea en royal oscuro (en sync con el bg) */
body.about-light .about-section-title { color: var(--v2-navy); border-color: var(--v2-navy); }

/* --- Person card (mismo lenguaje visual que pillar-card) ---
   El card y su frame line cambian de color segun el tema de la seccion,
   en sync con la capsula de fondo (clase en body que togglea el JS).
   Tema dark  (bg navy)      -> card navy-soft + linea blue-300
   Tema light (bg ice)       -> card blue-soft + linea cyan-soft
   Tema blue  (bg navy-soft) -> card navy      + linea navy-soft */
.person-card {
  position: relative;
  background: var(--v2-navy-soft);
  border-radius: 16px;
  padding: 9px 9px 16px;
  height: 100%;
  transition: background-color .45s ease;
}
.person-card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.5px solid var(--v2-frame);
  border-radius: 13px;
  pointer-events: none;
  transition: border-color .45s ease;
}
/* Tema claro: card azul claro + frame cyan claro */
body.about-light .person-card { background: var(--v2-blue-soft); }
body.about-light .person-card::before { border-color: var(--v2-cyan-soft); }
/* Tema blue (bg navy-soft): card navy + frame navy-soft */
body.about-blue .person-card { background: var(--v2-navy); }
body.about-blue .person-card::before { border-color: var(--v2-navy-soft); }
.person-card__photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-card__name {
  color: var(--v2-blue-soft);
  font-weight: 500;
  font-size: 22px;
  padding: 0 20px;
  margin-bottom: 3px;
  transition: color .45s ease;
}
.person-card__role {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  padding: 0 20px 30px;
  transition: color .45s ease;
}
/* Tema claro: el nombre pasa a navy para leerse sobre el card azul claro */
body.about-light .person-card__name { color: var(--v2-navy); }

/* --- Founder --- */
.about-founder__title { font-weight: 300; font-size: clamp(30px, 3.4vw, 45px); margin: 0 0 24px; color: var(--v2-navy); }
.about-founder__title span { color: var(--v2-blue); }
body.about-light .about-founder__title { color: var(--v2-navy); }
.about-founder-swiper { width: 100%; border-radius: var(--radius); overflow: hidden; }
.about-founder-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }

/* --- Video --- */
.about-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--v2-navy);
}
.about-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 991.98px) {
  .about-sec { padding: 70px 0; }
  .about-story__text { padding-right: 0; margin-bottom: 32px; }
  .about-vslider { height: 58vh; min-height: 420px; }
}

/* =====================================================================
   EVENTS PAGE — capsule dark -> light (reusa about-bg) + tiles + info
===================================================================== */
/* Hero corto: solo el titulo sobre la capa de color */
.events-hero { padding: 300px 0 230px; }
.events-hero__title {
  color: #fff;
  text-align: center;
  font-size: clamp(46px, 8.6vw, 124px);
  font-weight: 800;
  line-height: 1.04;
  margin: 0;
}

/* Bloque de año: titulo + hairline (cambian EN SYNC con el bg) */
.events-year { padding: 0 0 130px; }
.events-year__title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(30px, 2.6vw, 38px);
  margin: 0 0 16px;
  transition: color .45s ease;
}
.events-year__rule {
  height: 1px;
  background: var(--v2-blue-soft);
  margin-bottom: 44px;
  transition: background-color .45s ease;
}
/* Tema claro (bg ice): titulo y hairline en navy */
body.about-light .events-year__title { color: var(--v2-navy); }
body.about-light .events-year__rule { background: var(--v2-navy); }

/* El diseno es muy aireado entre filas de tiles */
.events-year .row { row-gap: 80px; }

/* Tile de evento (mismo lenguaje visual que person-card; cambia con el tema)
   Tema dark  (bg navy) -> tile navy-soft + frame line blue-300
   Tema light (bg ice)  -> tile blue-soft + frame line cyan-soft */
.event-tile {
  position: relative;
  background: var(--v2-navy-soft);
  border-radius: 16px;
  padding: 20px 20px 30px;
  height: 100%;
  transition: background-color .45s ease;
}
.event-tile::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--v2-blue-soft);
  border-radius: 13px;
  pointer-events: none;
  transition: border-color .45s ease;
}
.event-tile__media {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 377 / 250;   /* ratio nativo de los assets */
  margin-bottom: 30px;
}
.event-tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-tile .event-card__city { color: var(--v2-blue-soft); transition: color .45s ease; }
.event-tile .event-card__date { color: #fff; transition: color .45s ease; }
.event-tile .event-card__place { color: #fff; transition: color .45s ease; }
.event-tile .btn-rounded { background: var(--v2-navy); color: var(--v2-blue-soft); }
.event-tile .btn-rounded:hover,
.event-tile .btn-rounded:focus { background: var(--v2-blue-soft); color: var(--v2-navy); }
/* Tema claro (bg ice): el tile pasa a azul claro para despegarse del fondo
   palido y los textos van oscuros (mismo criterio que .person-card en about) */
body.about-light .event-tile { background: var(--v2-ice); }
body.about-light .event-tile::before { border-color: var(--v2-blue-soft); }
body.about-light .event-tile .event-card__city { color: var(--v2-navy); }
body.about-light .event-tile .event-card__date { color: #333; }
body.about-light .event-tile .event-card__place { color: #333; }

/* Seccion blanca (sin transicion): 3 bloques texto + media */
.events-info { padding: 130px 0; }
.events-info__row + .events-info__row { margin-top: 130px; }
/* Hereda tipografia y color de .equipping-title (ver seccion EQUIPPING).
   Aqui solo el aire extra bajo el titulo, que en events es mayor.
   El color de .t-blue / --blue tambien se define alla, en clase explicita
   para que los spans que genera SplitText no matcheen. */
.events-info__title { margin-bottom: 28px; }

/* Placeholder de media (cajas del diseno, a la espera de fotos finales) */
.media-ph { width: 100%; background: #433C3C; border-radius: 16px; }
.media-ph--wide { aspect-ratio: 1.56; }
.media-ph--tall { aspect-ratio: 1.24; }
.media-ph--square { aspect-ratio: 1.03; }

/* Renewed reutilizado dentro de events/soul: bg navy + flechas coral (segun diseno) */
.events .renewed-pin,
.soul .renewed-pin { background: var(--v2-navy); }
.events .renewed-arrows span,
.soul .renewed-arrows span {
  border-right-color: #F7ADAD;
  border-bottom-color: #F7ADAD;
}

@media (max-width: 991.98px) {
  .events-hero { padding: 180px 0 110px; }
  .events-year { padding: 0 0 80px; }
  .events-year .row { row-gap: 40px; }
  .events-info { padding: 70px 0; }
  .events-info__row + .events-info__row { margin-top: 70px; }
  .events-info .media-ph { margin-top: 32px; }
}

/* =====================================================================
   SOUL CARE PAGE
===================================================================== */
/* El hero reusa .hero; regla extra para hero con imagen en vez de video */
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Efecto "fill reveal" (patron primrose): texto base apagado +
       capa clip que se rellena de arriba a abajo ligada al scroll --- */
.fill-line { position: relative; display: block; }
.fill-base { display: block; color: var(--fill-base); }
.fill-clip {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  display: block;
  color: var(--fill-on);
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

/* --- Soul Core: intro con fill reveal sobre azul palido --- */
.soul-core {
  background: var(--v2-ice);
  padding: 150px 0;
  --fill-base: var(--v2-blue-soft);
  --fill-on: var(--v2-navy);
}
.soul-core__text {
  font-size: clamp(26px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.22;
  margin: 0;
}
.soul-core__text .fill-line--bold { font-weight: 800; }

/* --- Why It Matters: el JS interpola bg y colores (claro -> azul) --- */
.soul-why { background: var(--v2-ice); padding: 130px 0 240px; }
.soul-why__title {
  color: var(--v2-navy);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 44px);
  margin: 0 0 60px;
}
.soul-card {
  position: relative;
  background: var(--v2-blue);
  color: var(--v2-blue-soft);     /* icono y titulo heredan via currentColor */
  border-radius: 16px;
  padding: 40px 34px;
  height: 100%;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
/* Frame line embebido (mismo lenguaje que person-card); currentColor lo
   hace cambiar de color junto con el card en la interpolacion GSAP */
.soul-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid currentColor;
  border-radius: 13px;
  opacity: 0.5;
  pointer-events: none;
}
.soul-card__icon { width: 110px; height: 110px; }
.soul-card__icon svg { width: 100%; height: 100%; display: block; }
.soul-card__title {
  margin: auto 0 14px;            /* titulo y texto anclados abajo */
  font-size: 26px;
  font-weight: 500;
}
.soul-card p {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* --- Quote (Mark Neal): fill reveal claro sobre video/bg oscuro --- */
.soul-quote {
  position: relative;
  background: var(--v2-navy-soft);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  /* El blanco translucido es el estado "apagado" del fill reveal, no un
     color de texto: sin la transparencia el efecto no se veria */
  --fill-base: rgba(255, 255, 255, 0.22);
  --fill-on: #ffffff;
}
/* Contenedor del video de fondo (se agrega cuando el cliente lo suba) */
.soul-quote__media { position: absolute; inset: 0; }
.soul-quote__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}
.soul-quote .container { position: relative; z-index: 2; }
.soul-quote__text {
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 44px;
}
.soul-quote__author {
  color: #fff;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
}

/* --- Bento: tiles con imagen parallax + gradiente negro -> transparente --- */
.soul-bento { background: var(--c-white); padding: 120px 0; }
.soul-bento__row { display: flex; gap: 24px; }
.soul-bento__main { flex: 0 0 55.5%; aspect-ratio: 4 / 5; }
.soul-bento__side { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.soul-bento__side .soul-tile { flex: 1; }
.soul-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}
.soul-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);        /* el parallax lo lleva a 1 con scrub */
  will-change: transform;
}
/* Capa de lectura: gradiente negro -> transparente */
.soul-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0) 60%);
}
.soul-tile__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 34px;
  width: 100%;
}
.soul-tile__title {
  color: var(--v2-blue-soft);
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 14px;
}
.soul-tile__content p {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 520px;
}
.soul-tile__content p + p { margin-top: 14px; }
/* Boton circular "+" */
.soul-tile__plus {
  position: absolute;
  right: 28px; bottom: 28px;
  z-index: 3;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--v2-blue-soft);
  color: var(--v2-blue);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
}
.soul-tile__plus:hover { background: #fff; color: var(--v2-blue); }
/* Caja panoramica de video youtube (iframe en modo cover) */
.soul-bento__video {
  margin-top: 24px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2.6;
  background: var(--v2-navy);
}
.soul-bento__video iframe {
  position: absolute;
  left: 0; top: 50%;
  width: 100%;
  height: 146.3%;                /* cubre la caja 2.6:1 con video 16:9 */
  transform: translateY(-50%);
  border: 0;
}

/* --- Testimonios: la capa about-bg interpola royal -> azul -> royal --- */
.soul-testimonial {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Prefijo .about-sec para ganarle a la regla generica ".about-sec p" */
.about-sec .soul-testimonial__quote {
  color: #fff;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 44px;
  transition: color .45s ease;
}
body.about-blue .about-sec .soul-testimonial__quote { color: var(--v2-blue-soft); }
.soul-testimonial__author {
  color: #fff;
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 36px);
  margin: 0 0 8px;
}
.soul-testimonial__from { color: var(--v2-blue-soft); font-size: 18px; }

/* --- CTA final: video 100vh con titulo y botones --- */
.soul-cta {
  position: relative;
  background: var(--v2-navy-soft);
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
}
/* Contenedor del video de fondo (se agrega cuando el cliente lo suba) */
.soul-cta__media { position: absolute; inset: 0; }
.soul-cta__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}
.soul-cta .container { position: relative; z-index: 2; }
.soul-cta__kicker {
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  margin: 0 0 18px;
}
.soul-cta__title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.12;
  margin: 0 0 44px;
}
.soul-cta__actions { display: flex; gap: 14px; justify-content: center; }
.soul-cta .btn-rounded { min-width: auto; padding: 13px 34px; font-size: 15px; }

@media (max-width: 991.98px) {
  .soul-core { padding: 90px 0; }
  .soul-why { padding: 80px 0 140px; }
  .soul-card { min-height: 360px; margin-bottom: 20px; }
  .soul-bento { padding: 70px 0; }
  .soul-bento__row { flex-direction: column; }
  .soul-bento__main { flex: 1 1 auto; aspect-ratio: 4 / 3; }
  .soul-bento__side .soul-tile { aspect-ratio: 16 / 10; }
  .soul-bento__video { aspect-ratio: 16 / 9; }
  .soul-bento__video iframe { height: 100%; top: 0; transform: none; }
  .soul-testimonial { min-height: 70vh; }
}

/* =====================================================================
   BLOG & MEDIA — mismo contenido que markneal, identidad Clarity
===================================================================== */
/* Hero corto de pagina interior (sin capsule) */
.page-hero { background: var(--v2-navy); padding: 220px 0 110px; }

/* Tile de post/video: reusa el lenguaje del soul-tile */
a.soul-tile { text-decoration: none; }
.post-tile { aspect-ratio: 4 / 3; width: 100%; cursor: pointer; }
.post-tile .soul-tile__img { transform: none; }        /* sin parallax en grids */
.post-tile .soul-tile__content { padding: 26px; }
.post-tile__date {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.post-tile .soul-tile__title { font-size: 22px; line-height: 1.25; margin: 0; transition: color .25s ease; }
.post-tile:hover .soul-tile__title { color: #fff; }
/* Play glass centrado (mismo lenguaje que el video-box del home) */
.post-tile .video-box__play {
  z-index: 3;
  width: 64px; height: 64px;
}
.post-tile .video-box__play-icon {
  border-width: 10px 0 10px 16px;
  margin-left: 4px;
}

/* Seccion de grid sobre blanco */
.posts-grid { background: var(--c-white); padding: 90px 0 120px; }
.posts-grid .row { row-gap: 24px; }

/* --- MEDIA: hero full con el mensaje destacado --- */
.media-hero { cursor: pointer; }
/* Velo del hero de Media: navy v2 (#202F69) con la misma opacidad */
.hero-veil { position: absolute; inset: 0; background: rgba(32, 47, 105, 0.5); }
.media-hero .hero-copy { z-index: 3; }
.media-hero__kicker {
  color: var(--v2-blue-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}
.media-hero__title {
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 34px;
}
/* Titulo de seccion sobre blanco (More Messages / Blog relacionado) */
.posts-grid__title {
  color: var(--v2-navy);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 45px);
  margin: 0 0 44px;
}

/* --- BLOG SHOW: articulo --- */
.blog-post { background: var(--c-white); padding: 200px 0 60px; }
.blog-post__head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.blog-post__date { color: var(--v2-navy); font-size: 14px; font-weight: 600; display: block; margin-bottom: 14px; }
.blog-post__title {
  color: var(--v2-navy);
  font-weight: 800;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.12;
  margin: 0 0 22px;
}
.blog-post__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #1D1D1D;
  font-size: 15px;
  margin-bottom: 22px;
}
.blog-post__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.blog-post__share { display: flex; justify-content: center; gap: 10px; }
.blog-post__share a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  color: var(--v2-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.blog-post__share a:hover { background: var(--v2-navy); border-color: var(--v2-navy); color: #fff; }
.blog-post__share svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.blog-post__cover {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 60px;
}
.blog-post__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post__body p { font-size: 18px; line-height: 1.8; color: #1D1D1D; margin: 0 0 22px; }
/* Aside sticky: tarjeta para ver el mensaje en video */
.blog-post__aside {
  position: sticky;
  top: 120px;
  background: var(--v2-ice);
  border-radius: 16px;
  padding: 14px 14px 22px;
  display: block;
  cursor: pointer;
}
.blog-post__aside-cover { position: relative; display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 9; margin-bottom: 16px; }
.blog-post__aside-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post__aside-cover .video-box__play { width: 56px; height: 56px; }
.blog-post__aside-cover .video-box__play-icon {
  border-width: 9px 0 9px 14px;
  margin-left: 3px;
}
.blog-post__aside-label {
  display: block;
  color: var(--v2-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 8px;
  margin-bottom: 6px;
}
.blog-post__aside-t { display: block; color: var(--v2-navy); font-size: 19px; font-weight: 700; line-height: 1.3; padding: 0 8px; }
/* Relacionados al pie */
.blog-related { background: var(--v2-ice); padding: 90px 0 110px; }

/* --- Reproductor de youtube que se abre expandiendose (patron video-box
       del home): nace en el elemento clickeado y crece a pantalla completa --- */
.yt-player {
  position: fixed;
  z-index: 9999;
  background: #000;
  overflow: hidden;
}
.yt-player__frame { position: absolute; inset: 0; background: #000; }
.yt-player__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* X redonda igual a la del video-box (el JS la muestra al terminar de expandir) */
.yt-player__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .page-hero { padding: 160px 0 70px; }
  .posts-grid { padding: 60px 0 80px; }
  .blog-post { padding: 150px 0 40px; }
  .blog-post__aside { position: static; margin-top: 10px; }
}

/* =====================================================================
   EVENT DETAIL — hero de 3 capas, info + countdown, schedule,
   slider de speakers y more events
===================================================================== */

/* Texto solo para lectores de pantalla (el titulo visible es imagen) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- 1) HERO: las 3 capas se apilan y el JS las separa con el scroll --- */
.ev-hero {
  position: relative;
  background: var(--v2-navy);
  overflow: hidden;
}
/* La escena nunca supera la altura de pantalla: el efecto se aprecia entero
   sin que el usuario tenga que scrollear para ver el titulo */
.ev-hero__stage {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
}
.ev-hero__layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.ev-hero__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Encuadre alto: prioriza la franja donde viven el titulo y los speakers */
  object-position: center 32%;
  display: block;
}
/* El fondo se sobredimensiona para que el parallax no descubra los bordes */
.ev-hero__layer--back { inset: -8% -4%; }
/* Los speakers suben con el scroll: los extiendo hacia abajo para que al
   subir no dejen un hueco al pie de la escena */
.ev-hero__layer--speakers { bottom: -12%; }
/* Los speakers van por delante del titulo, como en el diseno */
.ev-hero__layer--title    { z-index: 2; }
.ev-hero__layer--speakers { z-index: 3; }

/* --- 2) INFO: bloque navy con hairlines que lo dividen --- */
.ev-info {
  background: var(--v2-navy);
  color: #fff;
  padding: 70px 0 0;
}
.ev-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
/* Divisor vertical central (mismo lenguaje que el footer) */
.ev-info__main  { padding: 0 60px 60px 0; }
.ev-info__aside { padding: 0 0 60px 60px; border-left: 2px solid var(--v2-navy-soft); }
.ev-info__city {
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 10px;
}
.ev-info__powered {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 22px;
}
.ev-info__intro {
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
  max-width: 46ch;
}
.ev-info__date {
  color: var(--v2-blue-soft);
  font-size: clamp(26px, 2.6vw, 35px);
  font-weight: 400;
  margin-bottom: 14px;
}
.ev-info__venue { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.ev-info__address { font-style: normal; font-size: 17px; line-height: 1.6; margin: 0; }

/* Hairline horizontal a todo el ancho, separa datos de contador */
.ev-info__rule { width: 100%; height: 2px; background: var(--v2-navy-soft); }

.ev-info__grid--foot { align-items: center; padding: 26px 0 34px; }
.ev-countdown { display: flex; gap: 42px; }
.ev-countdown__unit { display: flex; align-items: baseline; gap: 9px; }
.ev-countdown__num {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  font-variant-numeric: tabular-nums;   /* evita que el ancho baile cada segundo */
}
.ev-countdown__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--v2-blue-soft);
}
.ev-info__cta { display: flex; justify-content: flex-end; }
.ev-info__cta .btn-rounded { min-width: auto; padding: 11px 34px; font-size: 15px; }

/* --- 3) SCHEDULE --- */
.ev-schedule { background: var(--v2-ice); padding: 110px 0; }
.ev-schedule__title {
  color: var(--v2-navy);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 60px);
  margin: 0 0 44px;
}
.ev-sched-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 34px 10px;
  height: 100%;
}
.ev-sched-card__head {
  color: var(--v2-navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.ev-sched-card__list { margin: 0; }
.ev-sched-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--v2-navy);
}
.ev-sched-row:last-child { border-bottom: 0; }
.ev-sched-row dt { color: var(--v2-navy); font-weight: 700; font-size: 17px; }
.ev-sched-row dd { color: var(--v2-navy); font-weight: 400; font-size: 17px; margin: 0; }

/* --- 4) SPEAKERS: slider con barra de progreso --- */
.ev-speakers { background: var(--v2-navy); padding: 110px 0; }
.ev-speakers__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 60px);
  text-align: center;
  margin: 0 0 54px;
}
/* El slider define anchos por CSS (slidesPerView:'auto' en el JS) para poder
   animar el ancho de un slide al abrirlo. La ALTURA es fija: al desplegar la
   bio la card crece a lo ancho y empuja a las vecinas, nunca hacia abajo. */
.ev-speakers__swiper { width: 100%; overflow: hidden; padding-bottom: 4px; }
.ev-speakers__swiper .swiper-slide {
  width: calc((100% - 48px) / 3);
  height: 430px;
  transition: width .55s cubic-bezier(.65, 0, .35, 1);
}
/* Abierto = el doble de su ancho normal (no el ancho completo) */
.ev-speakers__swiper .swiper-slide.is-open { width: calc(((100% - 48px) / 3) * 2); }

.speaker-card {
  position: relative;
  background: var(--v2-navy-soft);
  border-radius: 16px;
  padding: 9px 9px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.speaker-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--v2-frame);
  border-radius: 13px;
  pointer-events: none;
}
/* Altura fija: asi el alto del card no depende del contenido */
.speaker-card__media {
  border-radius: 10px;
  overflow: hidden;
  height: 209px;
  flex: 0 0 209px;
  margin-bottom: 18px;
}
.speaker-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.speaker-card__body { padding: 0 18px; flex: 1; min-height: 0; }
.speaker-card__name {
  color: var(--v2-blue-soft);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
}
.speaker-card__role {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  padding-right: 54px;   /* deja hueco al boton + */
}
/* La bio arranca oculta; aparece cuando el card se ensancha */
.speaker-card__bio {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.speaker-card__bio p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding-right: 54px;
}
/* Card abierto: el cuerpo se reparte en dos columnas para aprovechar el ancho */
.speaker-card.is-open .speaker-card__body {
  display: grid;
  grid-template-columns: minmax(220px, 26%) 1fr;
  gap: 0 40px;
  align-content: start;
}
.speaker-card.is-open .speaker-card__role { padding-right: 0; }
.speaker-card.is-open .speaker-card__bio {
  grid-column: 2;
  grid-row: 1 / span 2;
  opacity: 1;
  visibility: visible;
  transition-delay: .2s;   /* entra cuando el ancho ya casi termino */
}
/* Boton + circular, abajo a la derecha */
.speaker-card__toggle {
  position: absolute;
  right: 20px; bottom: 20px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--v2-blue-soft);
  color: var(--v2-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease;
  z-index: 2;
}
.speaker-card__toggle:hover { background: #fff; }
/* El icono es un + hecho con dos barras: al abrir gira y queda en x */
.speaker-card__toggle-icon {
  position: relative;
  width: 16px; height: 16px;
  display: block;
  transition: transform .3s ease;
}
.speaker-card__toggle-icon::before,
.speaker-card__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  margin-top: -1px;
  background: currentColor;
  border-radius: 1px;
}
.speaker-card__toggle-icon::after { transform: rotate(90deg); }
.speaker-card.is-open .speaker-card__toggle-icon { transform: rotate(45deg); }

/* Controles: pista de progreso a la izquierda, flechas a la derecha */
.ev-speakers__controls {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.ev-speakers__track {
  position: relative;
  flex: 1;
  height: 1px;
  background: var(--v2-navy-soft);
}
.ev-speakers__thumb {
  position: absolute;
  top: -1px; left: 0;
  height: 3px;
  background: var(--v2-blue-soft);
  border-radius: 2px;
  transition: width .45s ease;
}
.ev-speakers__nav { display: flex; gap: 12px; }
.ev-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--v2-navy-soft);
  background: transparent;
  color: var(--v2-blue-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}
.ev-arrow svg { width: 22px; height: 22px; display: block; }
.ev-arrow:hover { background: var(--v2-blue-soft); color: var(--v2-navy); border-color: var(--v2-blue-soft); }
.ev-arrow:disabled { opacity: .35; cursor: default; }
.ev-arrow:disabled:hover { background: transparent; color: var(--v2-blue-soft); border-color: var(--v2-navy-soft); }

/* --- 5) MORE EVENTS --- */
.ev-more { background: var(--v2-ice); padding: 110px 0; }
.ev-more__title {
  color: var(--v2-navy);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 60px);
  text-align: center;
  margin: 0 0 54px;
}
/* Aqui los tiles van sobre fondo claro y sin la capsula de events */
.ev-more .event-tile { background: transparent; padding: 0 0 30px; }
.ev-more .event-tile::before { display: none; }
.ev-more .event-card__city  { color: var(--v2-blue); }
.ev-more .event-card__date,
.ev-more .event-card__place { color: var(--v2-navy); }

@media (max-width: 991.98px) {
  .ev-info { padding-top: 46px; }
  .ev-info__grid { grid-template-columns: 1fr; }
  .ev-info__main  { padding: 0 0 34px; }
  .ev-info__aside { padding: 0 0 34px; border-left: 0; }
  .ev-info__grid--foot { gap: 24px; }
  .ev-countdown { gap: 22px; flex-wrap: wrap; }
  .ev-info__cta { justify-content: flex-start; }
  .ev-schedule, .ev-speakers, .ev-more { padding: 70px 0; }
  .ev-sched-row { grid-template-columns: 92px 1fr; gap: 10px; }
  .ev-speakers__controls { gap: 18px; }
}
