@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  /* Paleta de Colores - Estilo Oscuro Premium */
  --bg-dark: #070a08;
  --bg-card: #101512;
  --bg-card-hover: #161e1a;
  --text-white: #ffffff;
  --text-muted: #8e9a94;
  --accent-green: #00ff66;
  --accent-green-hover: #00dd57;
  --accent-green-glow: rgba(0, 255, 102, 0.15);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(0, 255, 102, 0.25);
  --glass-bg: rgba(16, 21, 18, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  /* Fuentes */
  --font-sans: 'Montserrat', sans-serif;
  --font-title: 'Oswald', sans-serif;
  
  /* Transiciones y Sombras */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-neon: 0 0 20px rgba(0, 255, 102, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  /* Espaciados estándar */
  --section-padding: 100px 0;
}

/* Reset y Estilos Generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #1a231f;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

/* Contenedor */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------
   NAVEGACIÓN (HEADER)
-------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  padding: 24px 0;
}

.site-header.scrolled {
  background: rgba(7, 10, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon-svg {
  width: 48px;
  height: 48px;
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon-svg {
  transform: rotate(-10deg) scale(1.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-top {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.logo-bottom {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-white);
  text-transform: uppercase;
}

.logo-bottom span {
  color: var(--accent-green);
  text-shadow: var(--shadow-neon);
}

/* Menú de Navegación */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  opacity: 0.8;
  padding: 6px 0;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  box-shadow: var(--shadow-neon);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

/* Botón de Acción en Nav (Estilo Barber Shop) */
.btn-nav {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border: 1px solid var(--text-white);
  background: transparent;
  color: var(--text-white);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-nav:hover {
  background: var(--text-white);
  color: var(--bg-dark);
}

/* Menú Móvil */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(7, 10, 8, 0.4) 0%, var(--bg-dark) 95%), url('hero_pitch.png');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(7, 10, 8, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease forwards;
}

.hero-tag span.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: neon-pulse 1.5s infinite;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fade-up 1s ease forwards;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-white);
}

.hero h1 span.accent {
  display: inline;
  color: var(--accent-green);
  -webkit-text-stroke: none;
  text-shadow: 0 0 40px rgba(0, 255, 102, 0.25);
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  animation: fade-up 1.2s ease forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
  width: 100%;
  animation: fade-up 1.4s ease forwards;
}

.hero-actions .btn-primary {
  width: 100%;
  text-align: center;
}

.hero-secondary-actions {
  display: flex;
  gap: 16px;
  width: 100%;
}

.hero-secondary-actions .btn-secondary {
  flex: 1;
  text-align: center;
  padding: 16px 16px;
  font-size: 14px;
}

/* Botón Principal (Neon Accent) */
.btn-primary {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border: 1px solid var(--accent-green);
  background: var(--accent-green);
  color: var(--bg-dark);
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 255, 102, 0.2);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-green);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

/* Botón Secundario (Ghost Button) */
.btn-secondary {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --------------------------------------------------
   SECCIONES COMUNES
-------------------------------------------------- */
.section {
  padding: var(--section-padding);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* --------------------------------------------------
   SECCIÓN CAMPOS (SERVICIOS)
-------------------------------------------------- */
.fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.field-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0; /* Sin bordes redondeados, estilo industrial */
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.field-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.field-image {
  height: 280px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.field-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(16, 21, 18, 0.95));
}

/* Representaciones de campos (CSS puro de fondo para simular fotos premium oscuras) */
.img-field-large {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero_pitch.png');
  background-size: 200%;
  background-position: center;
}

.img-field-small {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero_pitch.png');
  background-size: 150%;
  background-position: left bottom;
}

.field-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--bg-dark);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
}

.field-info {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.field-info h3 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.field-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.field-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-white);
}

.spec-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-green);
}

/* --------------------------------------------------
   SECCIÓN PRECIOS DE CUMPLEAÑOS (ESTILO BARBER MENU)
-------------------------------------------------- */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.pricing-column {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
}

.pricing-column h3 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--accent-green);
  padding-bottom: 12px;
  display: inline-block;
}

.pricing-menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.pricing-name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-line {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  margin-bottom: 6px;
}

.pricing-cost {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.1);
  white-space: nowrap;
}

.pricing-details {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  font-size: 12px;
}

.detail-pill.extra {
  border-color: rgba(0, 255, 102, 0.2);
  color: var(--accent-green);
}

.pricing-footer-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, #0d120f 100%);
  border: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.banner-text h4 {
  font-family: var(--font-title);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.banner-text p {
  color: var(--text-muted);
  font-size: 14px;
}

/* --------------------------------------------------
   FORMULARIO DE RESERVAS (ESTILO GLASSMORPHISM)
-------------------------------------------------- */
.booking-section {
  position: relative;
  background-image: linear-gradient(to bottom, var(--bg-dark), #030504);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* Panel Formulario */
.booking-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  grid-column: 1 / -1;
}

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

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

.form-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.form-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  color: var(--text-white);
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-green);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.1);
}

/* Custom Select Dropdown style */
select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  padding-right: 40px;
}

select.form-input option {
  background: var(--bg-card);
  color: var(--text-white);
  padding: 12px;
}

/* Panel Desglose Precios (Live Pricing) */
.live-pricing-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  position: sticky;
  top: 100px;
}

.live-pricing-panel h3 {
  font-family: var(--font-title);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.pricing-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
}

.breakdown-row.total {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
}

.breakdown-row.total span.total-price {
  color: var(--accent-green);
  font-family: var(--font-title);
  font-size: 28px;
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

.pricing-panel-notice {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.01);
  border-left: 2px solid var(--accent-green);
  padding: 12px 16px;
  margin-bottom: 24px;
}

/* --------------------------------------------------
   MODAL DE CONFIRMACIÓN DE RESERVA
-------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color-hover);
  width: 90%;
  max-width: 580px;
  padding: 48px;
  position: relative;
  text-align: center;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.2));
}

.success-icon-wrap svg {
  width: 36px;
  height: 36px;
  fill: var(--accent-green);
}

.modal-content h3 {
  font-family: var(--font-title);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.booking-summary-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.summary-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 14px;
}

.summary-item span.label {
  color: var(--text-muted);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}

.summary-item span.val {
  font-weight: 600;
}

/* --------------------------------------------------
   WHATSAPP BUTTON & CONTACT CARD
-------------------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--text-white);
}

/* Contact information styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  text-align: center;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition-fast);
}

.contact-card:hover .contact-icon-wrap {
  border-color: var(--accent-green);
  background: rgba(0, 255, 102, 0.05);
}

.contact-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--text-white);
  transition: var(--transition-fast);
}

.contact-card:hover .contact-icon-wrap svg {
  fill: var(--accent-green);
}

.contact-card h4 {
  font-family: var(--font-title);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-card a.contact-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: 0.5px;
}

.contact-card a.contact-link:hover {
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
  background: #030504;
  padding: 60px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
}

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

.footer-info {
  display: flex;
  align-items: center;
  gap: 32px;
}

.copyright {
  margin-top: 4px;
}

/* --------------------------------------------------
   ANIMACIONES
-------------------------------------------------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
    opacity: 0.6;
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 255, 102, 0.9);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
    opacity: 0.6;
  }
}

/* --------------------------------------------------
   SECCIÓN PATROCINADORES (SPONSORS)
-------------------------------------------------- */
.sponsors-section {
  background: #040605;
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.sponsors-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.sponsor-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-3px);
}

.sponsor-svg {
  width: 170px;
  height: 52px;
}

/* --------------------------------------------------
   RESPONSIVIDAD (MEDIA QUERIES)
-------------------------------------------------- */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  .fields-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .pricing-layout {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .booking-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
  
  .live-pricing-panel {
    position: static;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
    background: rgba(7, 10, 8, 0.95);
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .booking-card {
    padding: 32px 20px;
  }
  
  .booking-form, .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    flex-direction: column;
    gap: 12px;
  }
}
