* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --header-h: 70px;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #0b0f14;
  color: white;

  /* para que el hero no quede debajo del header fijo */
  padding-top: var(--header-h);
}

html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: var(--header-h);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER (FIJO SIEMPRE) */
.header {
  position: fixed; /* ✅ antes era absolute */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2000; /* siempre arriba del menú */
  padding: 5px 0;

  /* look "glass" suave */
  background: rgba(11, 15, 20, 0.25);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

/* LOGO */
.logo img {
  height: 50px;
  display: block;
}

/* NAV (desktop) */
.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
  color: #1f9fff;
}

/* SOCIAL */
.social {
  display: flex;
  gap: 16px;
  margin-left: 15px;
}

.social-icon {
  font-size: 18px;
  color: white;
  opacity: 0.8;
  transition: 0.3s;
}

.social-icon:hover {
  color: #1f9fff;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: calc(
    100svh - var(--header-h)
  ); /* ✅ para compensar header fijo */
  background-image: url("/static/img/inst1.jpg");
  background-size: cover;
  background-position: center;

  background-attachment: fixed; /* 👈 imagen fija */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;

  /* ya NO necesitamos 110px arriba, porque body ya tiene padding */
  padding: 60px 0 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  padding: 0 18px;
}

.hero-logo {
  height: 150px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 35px;
  line-height: 1.1;
}

/* BOTONES */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background: #1f9fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.btn-primary:hover {
  background: #0f7fe0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  border: 1px solid white;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.btn-secondary:hover {
  background: white;
  color: #0b0f14;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  border-radius: 10px;
  z-index: 2100; /* arriba del header también */
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
@media (max-width: 900px) {
  /* Menú mobile: debajo del header y oculto de verdad */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 28px 22px 28px;
    background: rgba(11, 15, 20, 0.96);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);

    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1000; /* detrás del header */
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .social {
    margin-left: 0;
    margin-top: 8px;
  }

  .hamburger {
    display: flex;
  }

  .hero-logo {
    margin-bottom: 18px;
    height: 120px; /* un poco más cómodo en mobile */
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 360px;
  }
}

/* Extra */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 26px;
  }
}

/* =========================
   FONDOS POR SECCIÓN
========================= */
:root {
  --bg-main: #0b0f14;
  --bg-a: #0d121a; /* about (un poco más claro) */
  --bg-b: #0a0f16; /* instalaciones (más oscuro) */
  --bg-c: #0c1119; /* ubicación (intermedio) */
  --panel: rgba(255, 255, 255, 0.02);
  --border: rgba(255, 255, 255, 0.08);
}

/* =========================
   ABOUT / QUIÉNES SOMOS
========================= */
.about {
  min-height: 100svh; /* ✅ full pantalla */
  display: flex; /* ✅ centrado vertical */
  align-items: center;
  padding: 70px 0;

  /* ✅ fondo diferenciador */
  background: linear-gradient(180deg, var(--bg-a), var(--bg-main));
}

.about__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Imagen */
.about__media {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  background: var(--panel);
}

.about__img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* velo suave */
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.35)
  );
  pointer-events: none;
}

/* Texto */
.about__title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.about__lead {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 52ch;
}

.about__items {
  display: grid;
  gap: 16px;
}

/* Card */
.aboutCard {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;

  padding: 16px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);

  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.aboutCard:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 159, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.aboutCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.aboutCard__icon i {
  font-size: 16px;
}

.aboutCard--active {
  border-color: rgba(31, 159, 255, 0.55);
  box-shadow: 0 10px 30px rgba(31, 159, 255, 0.1);
}

.aboutCard--active .aboutCard__icon {
  border-color: rgba(31, 159, 255, 0.65);
  color: #1f9fff;
}

.aboutCard__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.aboutCard__text {
  opacity: 0.8;
  line-height: 1.55;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .about {
    padding: 55px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about__img {
    max-height: 320px;
  }

  .about__title {
    font-size: 32px;
  }

  .about__lead {
    max-width: none;
  }
}

/* =========================
   SECCIONES FULL PANTALLA
========================= */
.inst,
.loc {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

/* Título estilo referencia */
.sectionTitle {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-align: center;
}

/* =========================
   INSTALACIONES
========================= */
.inst {
  background: linear-gradient(
    180deg,
    var(--bg-b),
    var(--bg-main)
  ); /* ✅ fondo distinto */
}

.inst__inner {
  width: 100%;
}

.inst__panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

/* Grid 2x2 */
.instGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.instCard {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  height: 390px;
  position: relative;
}

.instCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: contrast(1.05) saturate(1.05);
}

.instCard:hover img {
  transform: scale(1.08);
}

/* Responsive instalaciones */
@media (max-width: 900px) {
  .instGrid {
    grid-template-columns: 1fr;
  }
  .instCard {
    height: 250px;
  }
}

/* =========================
   UBICACIÓN
========================= */
.loc {
  background: linear-gradient(
    180deg,
    var(--bg-c),
    var(--bg-main)
  ); /* ✅ fondo distinto */
}

.loc__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.loc__panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.loc__titleRow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.loc__pin {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 159, 255, 0.55);
  color: #1f9fff;
  background: rgba(31, 159, 255, 0.1);
}

.loc__title {
  font-size: 34px;
  font-weight: 800;
}

.loc__subtitle {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 800;
  opacity: 0.95;
  margin-bottom: 14px;
}

.locList {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.locItem {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.locItem__ico {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.locItem__label {
  font-weight: 800;
  margin-bottom: 2px;
}

.locItem__text {
  opacity: 0.82;
  line-height: 1.45;
  font-size: 14px;
}

/* Links clickeables */
.locLink {
  color: inherit;
  text-decoration: none;
  transition: 0.25s;
}
.locLink:hover {
  color: #1f9fff;
}

.locSocial {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.locSocial__btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.locSocial__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 159, 255, 0.35);
  color: #1f9fff;
}

/* Mapa responsive */
.loc__mapWrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  min-height: 520px;
}

.loc__map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}

/* Responsive ubicación */
@media (max-width: 900px) {
  .loc__inner {
    grid-template-columns: 1fr;
  }
  .loc__mapWrap,
  .loc__map {
    min-height: 360px;
  }
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsappFloat {
  position: fixed;
  bottom: 26px;
  right: 26px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25d366;
  color: white;
  text-decoration: none;

  padding: 14px 18px;
  border-radius: 999px;

  font-weight: 700;
  font-size: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  z-index: 3000;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsappFloat i {
  font-size: 20px;
}

.whatsappFloat:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* animación sutil */
.whatsappFloat {
  animation: whatsappPulse 3.5s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .whatsappFloat {
    bottom: 20px;
    right: 20px;
    padding: 14px;
  }

  .whatsappFloat span {
    display: none;
  }
}

/* =========================
   PLANES (NEON)
========================= */
.pricing {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
  background: #070a10;
}

.pricing__bg {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      35% 30% at 20% 25%,
      rgba(0, 255, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      35% 30% at 75% 35%,
      rgba(139, 92, 246, 0.18),
      transparent 60%
    ),
    radial-gradient(
      35% 30% at 50% 85%,
      rgba(255, 122, 0, 0.14),
      transparent 60%
    ),
    radial-gradient(
      50% 45% at 50% 50%,
      rgba(31, 159, 255, 0.1),
      transparent 70%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  filter: blur(10px);
  pointer-events: none;
}

.pricing__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pricing__title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(31, 159, 255, 0.25);
}

.pricing__lead {
  max-width: 820px;
  margin: 0 auto 46px;
  opacity: 0.85;
  line-height: 1.6;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* Card base */
.pCard {
  position: relative;
  border-radius: 22px;
  padding: 26px 22px;

  background: rgba(10, 14, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);

  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.pCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.65), 0 0 40px rgba(31, 159, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* NEON border + glow por variante */
.pCard--amber {
  --neon: 255, 140, 0;
  border-color: rgba(var(--neon), 0.45);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55), 0 0 38px rgba(var(--neon), 0.12);
}
.pCard--violet {
  --neon: 139, 92, 246;
  border-color: rgba(var(--neon), 0.45);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55), 0 0 38px rgba(var(--neon), 0.12);
}
.pCard--cyan {
  --neon: 0, 255, 255;
  border-color: rgba(var(--neon), 0.5);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55), 0 0 44px rgba(var(--neon), 0.16);
}

/* Recomendado (FULL al centro) */
.pCard--featured {
  transform: scale(1.05);
  z-index: 3;
}

.pBadge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(0, 255, 255, 0.12);
  border: 1px solid rgba(0, 255, 255, 0.35);
  color: rgba(230, 255, 255, 0.95);
  font-weight: 800;
  font-size: 12px;

  box-shadow: 0 0 22px rgba(0, 255, 255, 0.12);
}

/* Icono neón */
.pIcon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto 14px;

  border: 1px solid rgba(var(--neon), 0.45);
  background: rgba(var(--neon), 0.08);
  box-shadow: 0 0 28px rgba(var(--neon), 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.pIcon i {
  font-size: 22px;
  text-shadow: 0 0 18px rgba(var(--neon), 0.35);
}

.pTitle {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}

.pTitle span {
  opacity: 0.9;
}

.pPrice {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 0 14px rgba(var(--neon), 0.12);
}

.pPrice__sub {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.7;
  margin-left: 6px;
}

.pList {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  opacity: 0.92;
}

.pList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
  font-size: 14px;
}

.pList i {
  margin-top: 3px;
  color: rgba(var(--neon), 0.85);
  text-shadow: 0 0 16px rgba(var(--neon), 0.35);
}

/* Botón */
.pBtn {
  display: block;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 16px;
  border-radius: 14px;

  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--neon), 0.45);
  background: rgba(var(--neon), 0.1);

  box-shadow: 0 0 22px rgba(var(--neon), 0.12);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pBtn:hover {
  transform: translateY(-2px);
  background: rgba(var(--neon), 0.14);
  box-shadow: 0 0 34px rgba(var(--neon), 0.2);
}

/* Botón sólido para el recomendado */
.pBtn--solid {
  background: rgba(0, 255, 255, 0.16);
  border-color: rgba(0, 255, 255, 0.55);
}

/* Footer */
.pricing__foot {
  margin-top: 26px;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pCard--featured {
    transform: none;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: linear-gradient(180deg, #070a10, #0b0f14);
  padding: 70px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -10px 60px rgba(31, 159, 255, 0.05);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* LOGO */

.footer__logo img {
  height: 38px;
  opacity: 0.95;
}

/* TAGLINE */

.footer__tagline {
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.5;
}

/* NAV */

.footer__nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.footer__nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.75;
  transition: 0.25s;
}

.footer__nav a:hover {
  opacity: 1;
  color: #1f9fff;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer__social {
  display: flex;
  gap: 22px;
  margin-top: 8px;
}

.footer__social a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.25s;
}

/* HOVER */

.footer__social a:hover {
  transform: translateY(-3px);
  color: #58b7ff;
  text-shadow: 0 0 12px rgba(31, 159, 255, 0.6);
}

/* COPYRIGHT */

.footer__copy {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 10px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer__nav {
    gap: 16px;
    font-size: 13px;
  }

  .footer__social {
    gap: 18px;
  }

  .footer__social a {
    font-size: 20px;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

.hero,
.about,
.inst,
.pricing,
.loc,
.footer,
.header {
  overflow-x: clip;
}

/* AOS base */
[data-aos] {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Mantener las MISMAS animaciones, pero más cortas en mobile */
@media (max-width: 900px) {
  [data-aos="fade-left"] {
    transform: translate3d(24px, 0, 0);
  }

  [data-aos="fade-right"] {
    transform: translate3d(-24px, 0, 0);
  }

  [data-aos="fade-up"] {
    transform: translate3d(0, 24px, 0);
  }

  [data-aos="fade-down"] {
    transform: translate3d(0, -24px, 0);
  }

  [data-aos="zoom-in"] {
    transform: scale(0.985);
  }

  [data-aos].aos-animate {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* coach -----------------------------------------------------*/
.bora-coaches {
  width: 100%;
  height: 100vh;
  background: black;
  overflow: hidden;
  position: relative;
}

.bora-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.bora-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.bora-slide {
  min-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* overlay oscuro */

.bora-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
}

/* contenido */

.bora-overlay {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}

.bora-overlay h2 {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 4px;
}

.bora-overlay p {
  font-size: 22px;
  color: #2e7cff;
  margin: 10px 0;
}

.bora-overlay span {
  font-size: 18px;
  opacity: 0.9;
}

/* botones */

.bora-prev,
.bora-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 45px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: 0.3s;
}

.bora-prev:hover,
.bora-next:hover {
  background: #2e7cff;
}

.bora-prev {
  left: 20px;
}

.bora-next {
  right: 20px;
}

.coach {
  margin: 40px 0px;
  text-align: center;
}
/* VIEDO -------------------------------------------------------------------*/
.bora-video-section {
  padding-top: 40px;
  background: #000;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* titulo */

.bora-video-header {
  margin-bottom: 48px;
  padding: 0 20px;
}

.bora-video-header h2 {
  font-size: clamp(2rem, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 2px;
}

.bora-video-header span {
  color: #2e7cff;
}

.bora-video-header p {
  margin-top: 12px;
  opacity: 0.8;
}

/* contenedor */

.bora-video-container {
  width: 100%;
  height: min(65vh, 680px);
  position: relative;
  overflow: hidden;
}

/* video */

.bora-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* overlay */

.bora-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

/* MOBILE */

@media (max-width: 768px) {
  .bora-video-container {
    height: auto; /* deja que el video defina la altura */
  }

  .bora-video {
    height: auto;
    object-fit: contain; /* muestra el video completo */
  }
}
