/* ===================================================================
   Fuente de Verdad · Virtual
   Sistema visual basado en fuentedeverdad.org (tema fountain-2021)
   Poppins · blanco/negro · azul #31C4F3 · hero fotográfico oscuro
   =================================================================== */

:root {
  --blue: #31C4F3;
  --blue-600: #1aa9d8;
  --blue-700: #1690ba;
  --ink: #111111;
  --ink-soft: #4a4f55;
  --muted: #6b7178;
  --line: #e7eaee;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-dark: #0b1620;
  --bg-dark-2: #0f2230;

  --maxw: 1140px;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(17, 22, 28, 0.06);
  --shadow-md: 0 18px 50px rgba(17, 22, 28, 0.10);

  --font: "Poppins", system-ui, -apple-system, sans-serif;

  --icon-book: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { margin: 0 0 1em; }

::selection { background: var(--blue); color: #fff; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.7em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(49, 196, 243, 0.32);
}
.btn--blue:hover { background: var(--blue-600); box-shadow: 0 14px 30px rgba(49, 196, 243, 0.42); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn--small {
  padding: 0.6em 1.25em;
  font-size: 0.88rem;
}

.btn--full { width: 100%; }

.btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  text-align: center;
}
.btn--wa:hover { background: #1ebe5b; }

.btn--red {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.35);
}
.btn--red:hover {
  background: #e60000;
  box-shadow: 0 14px 30px rgba(255, 0, 0, 0.45);
}

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 48px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
/* Estado inicial sobre el hero oscuro */
.nav.is-top { background: transparent; }
/* Estado al hacer scroll */
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.brand__logo {
  height: 38px;
  width: auto;
  transition: filter 0.3s ease;
}
/* El logo oficial trae texto blanco — al pasar a nav claro lo oscurecemos */
.nav.is-scrolled .brand__logo {
  filter: brightness(0) saturate(100%) invert(13%);
}
.brand__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.25s ease,
    box-shadow 0.25s ease, background-color 0.25s ease;
}
.nav.is-scrolled .brand__tag { color: var(--blue); border-color: var(--blue); }

/* Hover: leve realce con glow azul */
.brand:hover .brand__tag {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 0 0 3px rgba(49, 197, 244, 0.18);
}

/* Pulso al tocar/click sobre "Virtual" */
@keyframes tagPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(49, 197, 244, 0.6);
    background-color: rgba(49, 197, 244, 0.18);
  }
  45% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 16px rgba(49, 197, 244, 0);
    background-color: rgba(49, 197, 244, 0);
  }
}
.brand__tag.is-tapped {
  animation: tagPulse 0.6s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .brand:hover .brand__tag { transform: none; }
  .brand__tag.is-tapped { animation: none; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav__links a:not(.btn) {
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav.is-scrolled .nav__links a:not(.btn) { color: var(--ink); }
.nav.is-scrolled .nav__links a:not(.btn):hover { color: var(--blue); }
.nav__links a.nav-link--live { color: var(--blue); font-weight: 600; }
.nav.is-scrolled .nav__links a.nav-link--live { color: var(--blue-600); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* Menú móvil abierto: mantener logo y botón visibles sobre el panel blanco */
.nav.menu-open .brand,
.nav.menu-open .nav__toggle { position: relative; z-index: 2; }
.nav.menu-open .brand__logo { filter: brightness(0) saturate(100%) invert(13%); }
.nav.menu-open .brand__tag { color: var(--blue); border-color: var(--blue); }
.nav.menu-open .nav__toggle span { background: var(--ink); }
/* Hamburguesa → X */
.nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(20px, 5vw, 48px) 80px;
  background-color: var(--bg-dark);
  isolation: isolate;
  overflow: hidden;
}

body.store-page {
  background: var(--bg-alt);
}
.store-page .nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.store-page .brand__logo {
  filter: brightness(0) saturate(100%) invert(13%);
}
.store-page .brand__tag {
  color: var(--blue);
  border-color: var(--blue);
}
.store-page .nav__links a:not(.btn) {
  color: var(--ink);
}
.store-page .nav__toggle span {
  background: var(--ink);
}
.store-hero {
  min-height: 78svh;
  padding: 130px clamp(20px, 5vw, 48px) 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.store-hero__copy .eyebrow {
  color: var(--blue-700);
}
.store-hero__event-logo {
  width: min(340px, 78vw);
  height: auto;
  display: block;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--bg-dark);
  filter: drop-shadow(0 14px 28px rgba(11, 22, 32, 0.14));
}
.store-hero__copy .eyebrow::after {
  left: 0;
  transform: none;
}
.store-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 22px;
}
.store-hero p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 300;
}
.store-hero__media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #efe3cf;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.store-hero__media picture {
  display: block;
}
.store-hero__media img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.store-footer {
  padding-top: 0;
}
/* Capa de foto difuminada — blur estático, se renderiza una sola vez */
.hero::before {
  content: "";
  position: absolute;
  inset: -24px; /* margen extra para que el blur no deje bordes transparentes */
  z-index: -2;
  background-image: url("hero-banner.png");
  background-size: cover;
  background-position: center center;
  filter: blur(5px);
  transform: scale(1.03);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* viñeteado: oscurece bordes y esquinas para centrar la mirada */
    radial-gradient(120% 100% at 50% 38%, rgba(7, 14, 20, 0) 42%, rgba(7, 14, 20, 0.55) 100%),
    /* degradado vertical para legibilidad del texto */
    linear-gradient(180deg, rgba(7, 14, 20, 0.55) 0%, rgba(7, 14, 20, 0.42) 45%, rgba(7, 14, 20, 0.82) 100%);
}
/* Grano de cine fijo — textura sutil, sin animación */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  padding-bottom: 14px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  border-radius: 3px;
  background: var(--blue);
}
.hero__title {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 660px;
  margin: 0 auto 34px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--zoom {
  border: 1px solid #2D8CFF;
  background: #2D8CFF;
  color: #fff;
}
.btn--zoom:hover { background: #1a7be0; border-color: #1a7be0; }
.hero__lema {
  margin-top: 40px;
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}

/* Chip "próximo evento" en el hero */
.hero__next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  max-width: 100%;
}
.hero__next:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero__next-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.28);
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.28); }
  50%       { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.10); }
}
.hero__next-arrow {
  color: var(--blue);
  font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
  .hero__next-dot { animation: none; }
}

/* Acento azul para palabras destacadas */
.grad { color: var(--blue); }
.hero__title .grad { font-weight: 500; }

/* ===================================================================
   PROCLAMACIÓN (franja)
   =================================================================== */
.proclama {
  background: var(--bg-alt);
  text-align: center;
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 48px);
}
.proclama p {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ===================================================================
   SECCIONES — base
   =================================================================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 48px);
}
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  padding-bottom: 14px;
  position: relative;
}
.kicker::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 48px; height: 3px;
  border-radius: 3px;
  background: var(--blue);
}
.section__head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 600;
}
.section__lead {
  margin: 20px auto 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 300;
}

/* ===================================================================
   NOSOTROS — texto + imagen
   =================================================================== */
.nosotros {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.nosotros__text p { color: var(--ink-soft); }
.nosotros__text strong { color: var(--ink); font-weight: 600; }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.badge {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: rgba(49, 196, 243, 0.1);
  color: var(--blue-700);
  border: 1px solid rgba(49, 196, 243, 0.25);
}
.nosotros__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.nosotros__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.4;
}

/* Tarjeta de testimonio (alternativa a la imagen) */
.testimonio {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(34px, 4.5vw, 52px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark);
  background-image: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.testimonio::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  left: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.16;
  pointer-events: none;
}
.testimonio__quote {
  position: relative;
  margin: 0;
  font-size: clamp(1.15rem, 1.9vw, 1.42rem);
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}
.testimonio__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonio__avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(49, 196, 243, 0.32);
}
.testimonio__who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.testimonio__who strong { color: #fff; font-weight: 600; }
.testimonio__who em {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================================================================
   VISIÓN — bloque centrado fuerte
   =================================================================== */
.vision {
  background: var(--bg-dark);
  background-image: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  text-align: center;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 48px);
  color: #fff;
}
.vision__kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.vision__statement {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #fff;
}
.vision__statement .grad { color: var(--blue); font-weight: 500; }
.vision__body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.06rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

/* ===================================================================
   GRIDS / CARDS
   =================================================================== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(49, 196, 243, 0.1);
  color: var(--blue-700);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.card__icon svg { width: 30px; height: 30px; }
.card:hover .card__icon {
  background: rgba(49, 196, 243, 0.18);
  transform: scale(1.06);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ===================================================================
   STEPS (cómo funciona / senda)
   =================================================================== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative;
  padding: 34px 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  text-align: center;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(49, 196, 243, 0.32);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ===================================================================
   VALORES
   =================================================================== */
.valores {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.valor {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.valor:hover { transform: translateY(-5px); background: #fff; box-shadow: var(--shadow-md); }
.valor__n {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.valor h3 { font-size: 1rem; margin-bottom: 4px; }
.valor p { font-size: 0.86rem; color: var(--muted); margin: 0; }

/* ===================================================================
   EVENTOS
   =================================================================== */
.evento {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.evento:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.evento__img {
  width: 130px;
  object-fit: cover;
  flex-shrink: 0;
}
.evento__date {
  flex-shrink: 0;
  width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  padding: 18px 8px;
  text-align: center;
}
.evento__date span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.evento__date strong { font-size: 1.5rem; font-weight: 700; line-height: 1.1; }
.evento__date em { font-size: 0.78rem; font-style: normal; opacity: 0.85; }
.evento__date--alt { background: var(--bg-dark); }
.evento__body { padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; }
.evento__body h3 { font-size: 1.18rem; margin-bottom: 4px; }
.evento__body p { color: var(--muted); font-size: 0.94rem; margin: 0 0 12px; }
.evento__tag {
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(49, 196, 243, 0.12);
  color: var(--blue-700);
}

.evento--link { text-decoration: none; color: inherit; cursor: pointer; }
.evento--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.evento__cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue);
}
.eventos-proximamente {
  max-width: 620px;
  margin: 0 auto;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
  text-align: center;
}
.eventos-proximamente__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(49, 196, 243, 0.14);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.eventos-proximamente p {
  margin: 14px 0 0;
  color: var(--muted);
}

/* ===================================================================
   PUENTE virtual ↔ presencial
   =================================================================== */
.section--bridge { background: var(--bg-alt); max-width: none; }
.section--bridge .section__head,
.section--bridge .bridge { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}
.bridge__col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.bridge__col--phys { border-color: rgba(49, 196, 243, 0.4); box-shadow: 0 0 0 3px rgba(49, 196, 243, 0.08); }
.bridge__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.bridge__arrow { font-size: 2rem; color: var(--blue); font-weight: 300; text-align: center; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(49, 196, 243, 0.14);
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
}
.ticks li strong { color: var(--ink); font-weight: 600; }
.bridge__note {
  margin-top: 18px;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--muted);
}

/* ===================================================================
   CTA / FORMULARIO
   =================================================================== */
.section--cta { max-width: none; }
.cta-card {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-card__intro {
  background: var(--bg-dark);
  background-image: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #fff;
  padding: clamp(38px, 5vw, 56px);
}
.cta-card__intro .kicker { color: var(--blue); }
.cta-card__intro h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px; }
.cta-card__lead { color: rgba(255, 255, 255, 0.75); font-weight: 300; margin-bottom: 20px; }

/* Schedule mini-table inside CTA intro */
.cta-schedule {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 4px 0;
  margin: 0 0 28px;
}
.cta-schedule__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  gap: 12px;
}
.cta-schedule__row + .cta-schedule__row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-schedule__name {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.cta-schedule__when {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-align: right;
}
.cta-schedule__tz {
  padding: 6px 18px 10px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2px;
}
.cta-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}
.cta-perks li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(49, 196, 243, 0.25);
  flex-shrink: 0;
}

.form__heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 4px;
}
.form {
  background: #fff;
  padding: clamp(38px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
}
.field label span { color: var(--muted); font-weight: 400; }
.field input,
.field textarea {
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-alt);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa0a6; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49, 196, 243, 0.14);
}
.field textarea { resize: vertical; min-height: 80px; }
.form__status {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  min-height: 1.2em;
}
.form__status.ok { color: var(--blue-700); font-weight: 500; }
.form__legal { margin: 0; font-size: 0.8rem; color: #9aa0a6; }

/* ===================================================================
   DONACIONES
   =================================================================== */
/* ===================================================================
   CONSEJERÍA ESPIRITUAL — Calendly embed
   =================================================================== */
.section--consejeria { max-width: none; background: var(--bg-alt); }
.section--consejeria .section__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.section--consejeria .kicker { color: var(--blue); }
.section--consejeria h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 12px; }
.section--consejeria .section__lead {
  margin: 0 auto 36px;
  max-width: 580px;
}
.section--consejeria .calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
}

.section--donar {
  max-width: none;
  background: var(--blue-700);
  color: #fff;
}
.donar {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.donar .kicker { color: #fff; }
.donar .kicker::after { background: #fff; }
.donar h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 18px;
}
.donar__verse {
  font-style: italic;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
}
.donar__verse a {
  color: #fff;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.donar__verse a:hover { color: #fff; border-color: #fff; }
.donation-button {
  width: min(100%, 390px);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(5, 45, 62, 0.28);
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.donation-button:hover {
  background: #edfaff;
  box-shadow: 0 20px 40px rgba(5, 45, 62, 0.38);
  transform: translateY(-2px);
}
.donation-button:active { transform: translateY(0) scale(0.98); }
.donation-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.donation-button__copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.donation-button__copy strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.donation-button__copy span {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
}
.donation-button__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.donation-button:hover .donation-button__arrow { transform: translateX(3px); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(56px, 7vw, 80px) clamp(20px, 5vw, 48px) 0;
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.footer__logo { height: 42px; width: auto; }
.footer__tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid rgba(59, 198, 241, 0.78);
  border-radius: var(--radius-pill);
  color: #3BC6F1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__brand p { margin: 0 0 8px; font-size: 0.94rem; }
.footer__brand strong { color: #fff; }
.footer__invite {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  max-width: 38ch;
  margin: 0 0 18px;
}
.footer__lema { font-style: italic; color: rgba(255, 255, 255, 0.6); }
.footer__col h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col li { font-size: 0.94rem; }
.footer__col a { transition: color 0.2s ease; }
.footer__col a:hover { color: var(--blue); }
.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
}
.footer__base p { margin: 0; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); }
.footer__base a { color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color 0.2s ease; }
.footer__base a:hover { color: var(--blue); }
.footer__credit { margin-left: 6px; }
.credit-x { font-weight: 700; font-style: normal; }

/* ===================================================================
   QUÉ CREEMOS
   =================================================================== */
.section--creemos { background: var(--bg-alt); max-width: none; }
.section--creemos .section__head,
.section--creemos .creencias {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.creencias {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.creencia {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.creencia:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.creencia__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(49, 196, 243, 0.1);
  color: var(--blue-700);
  margin-bottom: 18px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.creencia__icon svg { width: 26px; height: 26px; }
.creencia:hover .creencia__icon {
  background: rgba(49, 196, 243, 0.18);
  transform: scale(1.06);
}
.creencia h3 { font-size: 1.22rem; margin-bottom: 10px; }
.creencia p { color: var(--ink-soft); font-size: 0.97rem; margin: 0 0 16px; }
.creencia__refs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.creencia__ref {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue-700);
  background: rgba(49, 196, 243, 0.1);
  border: 1px solid rgba(49, 196, 243, 0.25);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
a.creencia__ref::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: none;
  background-color: currentColor;
  -webkit-mask: var(--icon-book) center / contain no-repeat;
  mask: var(--icon-book) center / contain no-repeat;
}
a.creencia__ref:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ===================================================================
   FAQ (acordeón nativo)
   =================================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(49, 196, 243, 0.4);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 1.03rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--blue);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.faq__a p { margin: 0; }

/* ── Sección full-bleed con fondo alternativo ────────────────────── */
.section--bg-alt { background: var(--bg-alt); max-width: none; }
.section--bg-alt .section__head,
.section--bg-alt .grid,
.section--bg-alt .steps { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* ── Senda de crecimiento ────────────────────────────────────────── */
.section--steps { background: var(--bg-alt); max-width: none; }
.section--steps .section__head,
.section--steps .steps--4 { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* ===================================================================
   TIENDA FDV
   =================================================================== */
.cart-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-pill);
  color: #fff;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.cart-pill:hover { transform: translateY(-2px); background: rgba(255,255,255,0.14); }
.cart-pill svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-pill span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 7px 16px rgba(49, 196, 243, 0.32);
}
.nav.is-scrolled .cart-pill,
.nav.menu-open .cart-pill {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.section--shop {
  max-width: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(49,196,243,0.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.section--shop .shop-hero,
.section--shop .shop-grid {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}
.shop-hero__copy { max-width: 760px; }
.shop-hero__copy .kicker::after { left: 0; transform: none; }
.shop-hero__copy .section__lead { margin-left: 0; }
.shop-hero__copy h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 500;
}
.shop-hero__note {
  border: 1px solid rgba(49,196,243,0.25);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.shop-hero__note span,
.shop-hero__note em {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}
.shop-hero__note span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 8px;
}
.shop-hero__note strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(49,196,243,0.24);
}
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  background: #f5efe4;
  overflow: hidden;
}
.product-card__zoom {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.product-card__zoom::after {
  content: "Ampliar";
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 22, 32, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.product-card__zoom:hover::after,
.product-card__zoom:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.product-card__zoom:focus-visible {
  outline: 3px solid rgba(49, 196, 243, 0.8);
  outline-offset: -3px;
}
.product-card__image-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 22, 32, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.product-card__image-nav--prev { left: 14px; }
.product-card__image-nav--next { right: 14px; }
.product-card:hover .product-card__image-nav,
.product-card__image-nav:focus-visible {
  opacity: 1;
}
.product-card__image-nav:hover { background: #fff; }
.product-card__image-nav:active { transform: translateY(-50%) scale(0.94); }
.product-card__image-nav:focus-visible {
  outline: 3px solid rgba(49, 196, 243, 0.8);
  outline-offset: 2px;
}
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 14px 0;
  background: #fff;
}
.product-card__thumbs button {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #faf7f1;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.product-card__thumbs button.is-active {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49,196,243,0.12);
}
.product-card__thumbs img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5efe4;
}
.product-card__thumbs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card__tag {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  border-radius: var(--radius-pill);
  background: rgba(11,22,32,0.88);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.product-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.product-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
}
.product-card__price {
  margin-top: auto;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 700;
}
.product-card__price span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 4px;
}
.product-card__controls {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
  margin: 18px 0 14px;
}
.product-card select,
.product-card input {
  min-width: 0;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0 12px;
  outline: none;
}
.product-card select:focus,
.product-card input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(49,196,243,0.12);
}
.product-card .btn { width: 100%; }
.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.size-chip {
  min-width: 34px;
  text-align: center;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(4, 10, 16, 0.54);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  width: min(440px, 100vw);
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -26px 0 70px rgba(0,0,0,0.22);
  transform: translateX(104%);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open {
  transform: none;
}
.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(11, 22, 32, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.image-viewer[hidden] { display: none; }
.image-viewer__panel {
  width: min(920px, 100%);
  max-height: calc(100svh - 32px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}
.image-viewer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px 15px 22px;
  border-bottom: 1px solid var(--line);
}
.image-viewer__head h2 {
  margin: 0;
  font-size: 1rem;
}
.image-viewer__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.image-viewer__close:hover { background: var(--bg-alt); }
.image-viewer__media {
  position: relative;
  min-height: 0;
  background: #f5efe4;
}
.image-viewer__media img {
  width: 100%;
  height: min(76svh, 760px);
  object-fit: contain;
}
.image-viewer__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 22, 32, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.image-viewer__nav--prev { left: 18px; }
.image-viewer__nav--next { right: 18px; }
.image-viewer__nav:hover { background: #fff; }
.image-viewer__nav:active { transform: translateY(-50%) scale(0.94); }
.image-viewer__nav:focus-visible {
  outline: 3px solid rgba(49, 196, 243, 0.8);
  outline-offset: 2px;
}
.cart-drawer__head {
  padding: 28px 26px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.cart-drawer__head .kicker {
  margin-bottom: 7px;
  padding-bottom: 0;
}
.cart-drawer__head .kicker::after { display: none; }
.cart-drawer__head h2 {
  font-size: 1.45rem;
}
.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 26px;
}
.cart-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg-alt);
}
.cart-item h3 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.cart-item strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.9rem;
}
.cart-remove {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.cart-remove:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.35);
}
.cart-drawer__foot {
  border-top: 1px solid var(--line);
  padding: 18px 26px 24px;
  background: var(--bg-alt);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}
.cart-total strong {
  color: var(--ink);
  font-size: 1.4rem;
}
.cart-checkout.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}
.cart-disclaimer {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

/* ── Agenda ──────────────────────────────────────────────────────── */
.section--agenda { background: var(--bg-alt); max-width: none; padding-bottom: 0; }
.agenda__timezone {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.agenda-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid currentColor;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.agenda-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.agenda-card--devo       { color: #F59E0B; }
.agenda-card--consejeria { color: #31C4F3; }
.agenda-card--grupo      { color: #8B5CF6; }
.agenda-card--servicio   { color: #2D8CFF; }

.agenda-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  line-height: 0;
}
.agenda-card__icon svg { width: 44px; height: 44px; }

.agenda-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px;
}
.agenda-card__days {
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 10px;
}
.agenda-card__time {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 20px;
}
.agenda-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-top: auto;
}
.agenda-card__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  60%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* Badge "En vivo" en tarjetas de agenda */
.agenda-card__badge.is-live {
  background: rgba(239, 68, 68, 0.1) !important;
  color: #ef4444 !important;
}
.agenda-card__badge.is-live::before {
  background: #ef4444;
  opacity: 1;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@media (max-width: 860px) {
  .agenda-grid { grid-template-columns: 1fr; gap: 14px; }

  /* CSS grid: icon top-left (spanning 2 rows), name+days to its right,
     time and badge below spanning full width */
  .agenda-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 20px 20px;
    min-height: auto;
    gap: 4px;
  }
  .agenda-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  .agenda-card__icon svg { width: 36px; height: 36px; }
  .agenda-card__name {
    margin: 0 0 2px;
    font-size: 1.05rem;
  }
  .agenda-card__days {
    margin: 0;
    font-size: 0.73rem;
  }
  .agenda-card__time {
    font-size: 1.2rem;
    margin: 8px 0 10px;
  }
  .agenda-card__badge {
    margin-top: 0;
    align-self: center;
  }
}

/* ── Zoom Banner ─────────────────────────────────────────────────── */
.zoom-banner {
  padding: clamp(32px, 4vw, 48px) clamp(20px, 5vw, 48px) clamp(64px, 8vw, 88px);
  background: var(--bg-alt);
}
.zoom-banner__card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: #fff;
  border: 2px solid #2D8CFF;
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(45,140,255,0.10);
}
.zoom-banner__top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.zoom-banner__icon { flex-shrink: 0; line-height: 0; }
.zoom-banner__icon svg { width: 56px; height: 56px; }
.zoom-banner__info { flex: 1; min-width: 160px; }
.zoom-banner__super {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D8CFF;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.zoom-banner__super.is-live::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: live-pulse 1.5s ease-in-out infinite;
}
.zoom-banner__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.zoom-banner__meta {
  font-size: 0.87rem;
  color: var(--muted);
  margin: 0;
}
.zoom-banner__join {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.zoom-banner__name {
  flex: 1;
  min-width: 200px;
  height: 50px;
  padding: 0 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-alt);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zoom-banner__name:focus {
  border-color: #2D8CFF;
  box-shadow: 0 0 0 3px rgba(45,140,255,0.12);
  background: #fff;
}
.zoom-banner__name::placeholder { color: var(--muted); }
.zoom-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2D8CFF;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(45,140,255,0.30);
}
.zoom-banner__btn:hover {
  background: #1a7be0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,140,255,0.42);
}
@media (max-width: 640px) {
  .zoom-banner__card { padding: 24px; gap: 16px; }
  .zoom-banner__name { min-width: 100%; }
  .zoom-banner__btn { width: 100%; justify-content: center; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 960px) {
  .nosotros { grid-template-columns: 1fr; }
  .nosotros__media { order: -1; }
  .nosotros__media img { aspect-ratio: 16 / 10; }
  .bridge { grid-template-columns: 1fr; }
  .bridge__arrow { transform: rotate(90deg); justify-self: center; }
  .cta-card { grid-template-columns: 1fr; }
  .store-hero { grid-template-columns: 1fr; min-height: auto; }
  .store-hero__media { max-width: 560px; }
  .shop-hero { grid-template-columns: 1fr; align-items: start; }
  .shop-hero__note { max-width: 360px; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .valores { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 88px 24px 28px;
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a:not(.btn) { color: var(--ink); padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 12px; }
  .nav__links .cart-pill { margin-top: 8px; }
  .store-hero {
    padding-top: 104px;
  }
  .store-hero__media {
    width: 100%;
    max-width: none;
  }
  .store-hero__media img { aspect-ratio: 1 / 1; }

  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .steps, .steps--4 { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-hero__note { max-width: none; }
  .product-card__media { aspect-ratio: 1 / 0.8; }
  .product-card__image-nav {
    width: 40px;
    height: 40px;
    opacity: 1;
  }
  .product-card__image-nav--prev { left: 12px; }
  .product-card__image-nav--next { right: 12px; }
  .cart-drawer { width: 100vw; }
  .cart-item { grid-template-columns: 64px 1fr auto; }
  .cart-item img { width: 64px; height: 64px; }
  .image-viewer { padding: 12px; }
  .image-viewer__panel { max-height: calc(100svh - 24px); }
  .image-viewer__head { padding: 12px 14px 12px 18px; }
  .image-viewer__media img { height: min(78svh, 680px); }
  .image-viewer__nav { width: 42px; height: 42px; }
  .image-viewer__nav--prev { left: 12px; }
  .image-viewer__nav--next { right: 12px; }
  .valores { grid-template-columns: 1fr; }
  .creencias { grid-template-columns: 1fr; }

  /* Título de marca en una sola línea en pantallas angostas */
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.12em; white-space: nowrap; }

  /* Evita que el contenido fuerce columnas más anchas que la tarjeta */
  .cta-card__intro, .form { min-width: 0; }
  .cta-card__intro { padding: 32px 26px; }
  .cta-card__intro .btn { white-space: normal; }
  .footer__grid { grid-template-columns: 1fr; gap: 48px; padding-bottom: 40px; }
  .footer__base { margin-top: 16px; padding: 28px 0 34px; }
  .footer__credit { display: block; margin-left: 0; margin-top: 2.4em; }

  .evento { flex-direction: column; }
  .evento__img { width: 100%; height: 200px; }
  .evento__date { flex-direction: row; gap: 8px; width: 100%; padding: 12px; }
}

/* Pantallas muy pequeñas (≤ 480px) */
@media (max-width: 480px) {
  /* Reducir padding vertical de secciones */
  .section { padding-top: 48px; padding-bottom: 48px; }
  .section--bridge { padding-top: 48px; padding-bottom: 48px; }

  /* Hero: chip de zoom más compacto */
  .hero__next { font-size: 0.82rem; padding: 8px 14px; gap: 8px; }

  /* Proclama: texto menos masivo */
  .proclama p { font-size: 1.25rem; }

  /* Visión: statement algo más chico */
  .vision__statement { font-size: 2.2rem; }

  /* Valores en columna única (ya está en 760px) */

  /* Pasos: quitar numeración masiva */
  .step__num { width: 38px; height: 38px; font-size: 1rem; }
  .step { padding: 24px 20px 22px; }

  /* Evento featured: imagen más baja */
  .evento__img { height: 150px; }

  /* CTA intro más apretado */
  .cta-card__intro { padding: 28px 20px; }
  .form { padding: 28px 20px; }

  /* Schedule: apilar nombre y horario en filas pequeñas */
  .cta-schedule__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 14px;
  }
  .cta-schedule__when { text-align: left; font-size: 0.82rem; }
  .cta-schedule__tz { padding: 6px 14px 10px; }

  /* Zoom banner: padding reducido */
  .zoom-banner { padding: 24px 16px 48px; }
  .zoom-banner__card { padding: 20px; }
  .zoom-banner__title { font-size: 1.1rem; }

  /* FAQ: preguntas con menos padding */
  .faq__q { padding: 16px 18px; font-size: 0.97rem; }
  .faq__a { padding: 0 18px 18px; }

  /* Footer: menos gap */
  .footer__grid { gap: 32px; }
}

/* ============ TRANSMISIÓN EN VIVO ============ */
.live-event {
  background: #070e14;
  color: #fff;
  padding: 50px clamp(20px, 5vw, 48px);
  border-bottom: 1px solid rgba(49, 196, 243, 0.2);
  position: relative;
}
.live-event__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.live-event__header {
  margin-bottom: 24px;
  max-width: 720px;
}
.live-event__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ff5555;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.live-event__badge .live-banner__dot {
  background: #ff3333;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  animation: pulse-red 1.8s infinite;
}
@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 51, 51, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}
.live-event__title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.live-event__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  margin: 0;
}
.live-event__player-wrap {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(49, 196, 243, 0.25);
  background: #000;
  margin-bottom: 24px;
}
.live-event__player-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.live-event__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Respeto a preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
