/* ===== VARIABLES ===== */
:root {
  --primary: #c8e600;
  --primary-dark: #a0b800;
  --bg-dark: #1a1a1a;
  --bg-darker: #111111;
  --bg-card: #222222;
  --bg-card-hover: #2a2a2a;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --text-dark: #1a1a1a;
  --accent-red: #e74c3c;
  --accent-blue: #3498db;
  --accent-green: #2ecc71;
  --accent-orange: #f39c12;
  --border-color: #333333;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.3rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-menu a {
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(200, 230, 0, 0.1);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/imagenes/WhatsApp Image 2026-02-12 at 18.12.58 (1).jpeg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(17,17,17,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  margin-bottom: 20px;
  box-shadow: 0 0 40px rgba(200, 230, 0, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--primary);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 5px;
}

.hero h2 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-date {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-charity {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-charity strong {
  color: var(--text-light);
}

.btn-hero {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200, 230, 0, 0.3);
}

.btn-hero:hover {
  background: var(--primary-dark);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 230, 0, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  color: var(--primary);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title i {
  margin-right: 10px;
}

/* ===== FORM SECTION ===== */
.section-form {
  background: var(--bg-darker);
}

.inscripcion-cerrada {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(231,76,60,0.05));
  border: 2px solid var(--accent-red);
  border-radius: var(--radius);
  margin-bottom: 30px;
}

.cerrada-icon {
  font-size: 4rem;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.inscripcion-cerrada h3 {
  font-size: 1.8rem;
  color: var(--accent-red);
  margin-bottom: 10px;
}

.inscripcion-cerrada p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.form-info-banner {
  background: rgba(200, 230, 0, 0.1);
  border: 1px solid rgba(200, 230, 0, 0.3);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 30px;
}

.form-info-banner p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-info-banner p:last-child {
  margin-bottom: 0;
}

.form-info-banner i {
  color: var(--primary);
  margin-right: 5px;
}

.form-inscripcion {
  max-width: 800px;
  margin: 0 auto;
}

.form-section {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.form-section h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.form-section h3 i {
  margin-right: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-darker);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(200, 230, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--accent-orange);
}

.form-note i {
  margin-right: 5px;
}

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

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 15px;
  background: var(--bg-darker);
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.form-check:hover {
  border-color: var(--primary);
}

.form-check input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.form-check input[type="radio"]:checked + .checkmark + span {
  color: var(--primary);
}

.precio-resumen {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 20px;
  border: 2px solid var(--primary);
}

.precio-resumen h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.precio-resumen h3 i {
  margin-right: 8px;
}

#desglosePrecio {
  margin-bottom: 15px;
}

#desglosePrecio .desglose-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.precio-total {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  text-align: right;
  padding-top: 10px;
  border-top: 2px solid var(--primary);
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200, 230, 0, 0.3);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 230, 0, 0.4);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===== SUCCESS SCREEN ===== */
.form-success {
  text-align: center;
  animation: fadeInUp 0.5s ease;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Hero image with overlay */
.success-hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.success-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.5);
}
.success-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  padding: 20px;
}
.success-check {
  font-size: 4.5rem;
  color: var(--accent-green);
  margin-bottom: 10px;
  animation: successPulse 1s ease;
}
@keyframes successPulse {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  max-width: 500px;
}

/* Body */
.success-body {
  padding: 30px 25px;
}

/* Dorsal + Total */
.success-datos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}
.success-dato {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-dato-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.success-dato-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* IMPORTANT payment box */
.success-pago-box {
  background: linear-gradient(135deg, rgba(231,76,60,0.15), rgba(231,76,60,0.05));
  border: 2px solid var(--accent-red);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 20px;
  animation: attentionBorder 2s ease infinite;
}
@keyframes attentionBorder {
  0%, 100% { border-color: var(--accent-red); }
  50% { border-color: var(--accent-orange); }
}
.success-pago-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--accent-red);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.success-pago-box h3 i {
  margin-right: 8px;
}
.success-pago-msg {
  font-size: 1.1rem;
  margin-bottom: 15px !important;
  color: var(--text-light);
}
.success-email-link {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  margin-bottom: 15px;
}
.success-email-link:hover {
  background: #fff;
  transform: scale(1.05);
}
.success-email-link i {
  margin-right: 8px;
}
.success-pago-detalle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Bank details */
.success-banco {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.success-banco h4 {
  color: var(--accent-orange);
  font-size: 1rem;
  margin-bottom: 10px;
}
.success-banco h4 i {
  margin-right: 8px;
}
.success-cuenta {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 4px !important;
}
.success-banco-nombre {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* WhatsApp button */
.btn-whatsapp-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-whatsapp-success:hover {
  background: #128C7E;
  transform: scale(1.05);
}

/* Actions */
.success-actions {
  margin-bottom: 20px;
}

/* Footer notices */
.success-email-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px !important;
}
.success-email-notice i {
  margin-right: 6px;
  color: var(--accent-blue);
}
.success-gracias {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 10px !important;
}

@media (max-width: 480px) {
  .success-hero { height: 200px; }
  .success-title { font-size: 1.4rem; }
  .success-check { font-size: 3rem; }
  .success-dato-value { font-size: 2rem; }
  .success-email-link { font-size: 1rem; padding: 10px 20px; }
  .success-cuenta { font-size: 1.2rem; }
}

/* ===== INFO SECTION ===== */
.section-info {
  background: var(--bg-dark);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.info-card h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cartel-container {
  text-align: center;
}

.cartel-container h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cartel-img {
  max-width: 700px;
  border-radius: var(--radius);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

/* Patrocinadores */
.patrocinadores-section {
  margin-top: 50px;
  text-align: center;
}
.patrocinadores-section h3 {
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.patrocinadores-section h3 i {
  margin-right: 8px;
}
.patrocinadores-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}
.patrocinadores-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.patrocinadores-grid.scrolling {
  animation: patroScroll 25s linear infinite;
}
.patrocinadores-grid.scrolling:hover {
  animation-play-state: paused;
}
@keyframes patroScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.patrocinadores-grid img {
  max-height: 60px;
  min-width: 120px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s;
  flex-shrink: 0;
}
.patrocinadores-grid img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(1.3);
}
.patrocinadores-grid a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.patrocinador-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 20px 30px;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
}
.patrocinador-placeholder i {
  font-size: 1.5rem;
  color: var(--border-color);
}

/* ===== HORARIOS ===== */
.section-horarios {
  background: var(--bg-darker);
}

.horarios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.horario-dia {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.dia-header {
  background: linear-gradient(135deg, rgba(200, 230, 0, 0.2), rgba(200, 230, 0, 0.05));
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.dia-header h3 {
  color: var(--text-light);
  font-size: 1.1rem;
}

.dia-header h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.dia-badge {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dia-badge-ruta {
  background: var(--accent-orange);
}

.timeline {
  padding: 20px 25px;
}

.timeline-item {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.timeline-time {
  min-width: 110px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.timeline-content {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline-content i {
  color: var(--primary);
  margin-left: 5px;
}

.timeline-note {
  background: rgba(200, 230, 0, 0.05);
  border-radius: 8px;
  padding: 12px !important;
  margin-top: 5px;
}

.timeline-note .timeline-content {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ===== PRECIOS ===== */
.section-precios {
  background: var(--bg-dark);
}

.precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.precio-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.precio-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.precio-card-main {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(200, 230, 0, 0.15);
}

.precio-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 4px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.precio-badge-child {
  background: var(--accent-blue);
  color: white;
}

.precio-badge-gymkana {
  background: var(--accent-orange);
  color: white;
}

.precio-icon {
  font-size: 3rem;
  color: var(--primary);
  margin: 20px 0 15px;
}

.precio-card h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.precio-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: var(--primary);
  font-weight: 700;
}

.precio-amount-small {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.precio-amount-small span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.precio-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.precio-separator {
  height: 1px;
  background: var(--border-color);
  margin: 15px 0;
}

.precio-includes {
  list-style: none;
  text-align: left;
  margin-top: 15px;
}

.precio-includes li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.precio-includes li i {
  color: var(--accent-green);
  margin-right: 8px;
}

.precios-notas {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
  border: 1px solid var(--border-color);
}

.precios-notas p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.precios-notas p:last-child {
  margin-bottom: 0;
}

.precios-notas i {
  margin-right: 8px;
}

/* ===== UBICACIÓN ===== */
.section-ubicacion {
  background: var(--bg-darker);
}

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ubicacion-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
  border: 1px solid var(--border-color);
}

.ubicacion-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.ubicacion-card h3 i {
  margin-right: 8px;
}

.ubicacion-lugar {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.btn-mapa {
  display: inline-block;
  background: var(--accent-blue);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.btn-mapa:hover {
  background: #2980b9;
  color: white;
  transform: translateY(-2px);
}

.btn-mapa i {
  margin-right: 5px;
}

.mapa-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.mapa-embed iframe {
  display: block;
}

/* ===== CONTACTO ===== */
.section-contacto {
  background: var(--bg-dark);
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.contacto-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contacto-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.contacto-card i {
  color: var(--primary);
  margin-bottom: 15px;
}

.contacto-card h3 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 10px;
}

.contacto-card a,
.contacto-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  word-break: break-all;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--primary);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo p {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-links p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}

.footer-credit {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.footer-credit p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.footer-credit a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .horarios-grid,
  .ubicacion-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid var(--primary);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .nav-logo span {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .hero-date {
    font-size: 1.1rem;
  }

  .btn-hero {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    flex-direction: column;
  }

  .timeline-item {
    flex-direction: column;
    gap: 5px;
  }

  .timeline-time {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .precio-amount {
    font-size: 2.5rem;
  }

  .form-section {
    padding: 15px;
  }

  .dia-header {
    padding: 15px;
  }

  .timeline {
    padding: 15px;
  }
}

/* ===== LOPD ===== */
.lopd-check span:last-child {
  font-size: 0.85rem;
  line-height: 1.4;
}

.lopd-check a {
  color: var(--primary);
  text-decoration: underline;
}

.lopd-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lopd-modal {
  background: var(--bg-card);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
}

.lopd-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.lopd-modal-header h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1rem;
}

.lopd-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.lopd-modal-body {
  padding: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.lopd-modal-body p {
  margin-bottom: 12px;
}

/* ===== WHATSAPP BUTTON ===== */
.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: white;
}

.email-notice {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================================================
   MODO CLUB
   =================================================== */

/* --- Club Hero --- */
.club-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.club-hero-bg {
  position: absolute;
  inset: 0;
  background: #111 center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.club-hero:hover .club-hero-bg { transform: scale(1.0); }
.club-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
}
.club-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.club-hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary, #c8e600);
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(200,230,0,0.4);
}
.club-hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.club-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.club-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-club-primary {
  background: var(--primary, #c8e600);
  color: #000;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-club-primary:hover { background: #d4f000; transform: translateY(-2px); }
.btn-club-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: background 0.2s, transform 0.2s;
}
.btn-club-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.club-hero-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.club-hero-social a {
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.club-hero-social a:hover { color: var(--primary, #c8e600); transform: scale(1.2); }

/* --- Club Sections --- */
.club-section {
  padding: 80px 0;
  background: var(--bg-dark, #0f0f0f);
}
.club-section-dark {
  background: var(--bg-darker, #080808);
}
.club-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.club-section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-light, #f0f0f0);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.club-section-header h2 i { margin-right: 10px; }
.club-section-header p {
  color: var(--text-muted, #888);
  font-size: 1rem;
}
.club-loading {
  text-align: center;
  color: var(--text-muted, #888);
  padding: 40px;
}

/* --- Eventos Grid --- */
.club-eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.club-evento-card {
  background: var(--bg-card, #1a1a1a);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color, #222);
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.club-evento-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary, #c8e600);
  box-shadow: 0 8px 30px rgba(200,230,0,0.12);
}
.club-evento-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.club-evento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.club-evento-card:hover .club-evento-img img { transform: scale(1.05); }
.club-evento-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-hover, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted, #555);
}
.club-evento-body { padding: 18px; }
.club-evento-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
}
.club-evento-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--text-light, #f0f0f0);
  margin: 0 0 6px;
}
.club-evento-fecha {
  font-size: 0.82rem;
  color: var(--text-muted, #888);
  margin: 3px 0;
}
.club-evento-fecha i { margin-right: 5px; }
.club-evento-desc {
  font-size: 0.88rem;
  color: var(--text-muted, #999);
  line-height: 1.5;
  margin: 8px 0 12px;
  max-height: 3em;
  overflow: hidden;
}
.club-evento-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary, #c8e600);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.club-evento-cta:hover { text-decoration: underline; }

/* --- Galería Grid --- */
.club-galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.club-galeria-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--bg-card, #1a1a1a);
}
.club-galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.club-galeria-item:hover img { transform: scale(1.08); }
.club-galeria-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.78rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.club-galeria-item:hover .club-galeria-caption { opacity: 1; }

/* --- Lightbox --- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 12px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* --- Videos Grid --- */
.club-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.club-video-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.club-video-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Evento Detalle Modal --- */
.evento-detalle-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.evento-detalle-modal {
  background: var(--bg-card, #1a1a1a);
  border-radius: 14px;
  max-width: 760px;
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color, #222);
}
.evento-detalle-portada {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.evento-detalle-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.evento-detalle-close:hover { background: rgba(0,0,0,0.8); }
.evento-detalle-body { padding: 24px; }
.evento-detalle-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  color: var(--text-light, #f0f0f0);
  margin: 0 0 12px;
}
.evento-detalle-meta {
  font-size: 0.9rem;
  color: var(--text-muted, #888);
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.evento-detalle-meta i { color: var(--primary, #c8e600); }
.evento-detalle-desc {
  margin-top: 16px;
  color: var(--text-muted, #bbb);
  line-height: 1.7;
  font-size: 0.95rem;
}
.evento-detalle-fotos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.evento-detalle-fotos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

/* --- Album sections in gallery --- */
.club-album-section {
  margin-bottom: 48px;
}
.club-album-titulo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light, #f0f0f0);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary, #c8e600);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.club-album-fecha {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted, #888);
  text-transform: none;
  letter-spacing: 0;
}

/* Grid layout */
.layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}

/* Mosaico (bento) layout */
.layout-mosaico {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.layout-mosaico .club-galeria-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.layout-mosaico .club-galeria-item.galeria-featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* Slider layout (horizontal scroll) */
.layout-slider {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary, #c8e600) var(--bg-card, #1a1a1a);
}
.layout-slider .club-galeria-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  aspect-ratio: 4/3;
}

/* Instagram video embed */
.club-video-ig {
  aspect-ratio: unset;
  min-height: 400px;
}
.club-video-ig blockquote {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .layout-mosaico {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .layout-slider .club-galeria-item {
    flex: 0 0 240px;
  }
}
