/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   FUENTE GT PROELIUM
========================= */
@font-face {
  font-family: 'GTProelium';
  src: url('./fonts/GTProeliumItalic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'LEMONMILK';
  src: url('./fonts/LEMONMILK-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =========================
   BASE
========================= */
body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'GTProelium', sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p, li, span, .text {
  font-family: 'LEMONMILK', sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

section {
  min-height: 100vh;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    90deg,
    rgba(0,255,60,0.25),
    rgba(0,0,0,0.75),
    rgba(0,255,60,0.25)
  );

  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.4s ease;
}

/* LOGO IZQUIERDA */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 42px;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* BOTÓN NAV */
.btn-nav {
  background: #00ff3c;
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: bold;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #00ff3c;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  transform: translateY(40px);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #00ff3c;
  line-height: .95;
}

.hero p {
  margin-top: 15px;
}

/* =========================
   BOTONES
========================= */
.btn {
  margin-top: 30px;
  padding: 15px 40px;
  background: #00ff3c;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: .3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ff3c;
}

/* =========================
   BENEFITS
========================= */
.benefits {
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #111;
  padding: 30px;
  width: 220px;
  text-align: center;
  border: 1px solid #00ff3c;
  opacity: 0;
}

/* =========================
   PRICING
========================= */
.pricing {
  background: #050505;
}

.price-box {
  background: #111;
  padding: 30px;
  margin: 15px;
  width: 260px;
  text-align: center;
  border: 2px solid #00ff3c;
  opacity: 0;
}

/* =========================
   PAGOS
========================= */
.pagos {
  text-align: center;
  padding: 80px 10%;
}

.qr-container {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.qr-box img {
  width: 160px;
  background: #fff;
  padding: 10px;
}

/* =========================
   MAPA
========================= */
.location {
  padding: 100px 20px;
  background: #000;
  text-align: center;
}

.map-container {
  max-width: 1100px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #00ff3c;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 0 20px #00ff3c;
  z-index: 999;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  section {
    padding: 60px 6%;
  }

  .benefits,
  .qr-container {
    flex-direction: column;
  }

  .menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: #0b0b0b;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  
}
.pricing {
  background: #050505;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* 🔥 CLAVE */
}

.price-box {
  background: #111;
  padding: 30px;
  margin: 15px;
  width: 260px;
  text-align: center;
  border: 2px solid #00ff3c;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px; /* 🔥 misma altura */
  opacity: 1;          /* ✅ visible */
  transform: scale(1); /* ✅ visible */
}

.price {
  font-size: 2.5rem;
  color: #00ff3c;
  margin: 20px 0;
}

.price-box .btn {
  margin-top: auto; /* 🔥 empuja el botón al fondo */
}

.price-box:nth-child(3) {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0,255,60,.4);
}

.private {
  display: none;
}

/* ================= MODAL ================= */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 3000;
}

.modal.show {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  max-width: 900px;
  margin: 5vh auto;
  background: #0b0b0b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}

/* ================= CONTENIDO ================= */
.modal-content {
  background: rgba(10,10,10,0.95);
  max-width: 900px;
  margin: 5vh auto;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  transform: scale(0.9);
  opacity: 0;
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.gallery {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.gallery img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.sede-info {
  padding: 25px;
  text-align: center;
}

.sede-info h3 {
  font-family: "GTProelium";
  font-size: 2rem;
}

.sede-info ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.cta {
  display: inline-block;
  margin-top: 15px;
}


/* ================= GALERÍA ================= */
.gallery {
  position: relative;
  overflow: hidden;
  height: 360px;
}

.gallery-track {
  display: flex;
  transition: transform .5s ease;
}

.gallery img {
  width: 900px;
  height: 360px;
  object-fit: cover;
}

.gallery .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
}

.gallery .prev { left: 20px; }
.gallery .next { right: 20px; }

/* ================= INFO ================= */
.sede-info {
  padding: 30px;
  text-align: center;
}

.sede-info h3 {
  color: #00ff3c;
  margin-bottom: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #0b0b0b;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  p {
    letter-spacing: 0.3px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    gap: 20px;
  }
}