/* style.css */

/* --- 1. TOKENS DE DISEÑO --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Rye&display=swap');

:root {
  /* Paleta de Colores */
  --bg: #0d0d0f;
  --surface: #18181c;
  --card: #212128;
  --brand: #e3b04b;     /* Oro/Neón Cálido */
  --brand-2: #ff7a59;   /* Naranja/Rojo Feria */
  --accent: #8bd0ff;    /* Azul Neón Frío */
  --text: #f5f5f5;
  --muted: #a7a8ad;
  --success: #70e0a8;
  --error: #ff6b6b;
  --rosa: #F50057;     /* <-- Rosa Neón Principal */
  --rosa2: #FF80AB;   /* <-- Rosa Neón (para brillo) */
  
  
  /* Gradiente Iridiscente/Cromo */
  --iridescent-gradient: linear-gradient(110deg, #ff7a59, #e3b04b, #8bd0ff, #d896ff, #ff7a59);
  
  /* Tipografía */
  --font-display: 'Rye', cursive;
  --font-body: 'Poppins', sans-serif;
  
  /* Espaciado */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 64px;
  
  /* Radios */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-round: 50%;
  
  /* Sombras y Brillos */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.5);
  --glow-brand: 0 0 8px var(--brand), 0 0 16px var(--brand-2);
  --glow-accent: 0 0 8px var(--accent), 0 0 16px var(--accent);
  
  /* Z-Index */
  --z-base: 1;
  --z-sticky: 100;
  --z-modal-backdrop: 900;
  --z-modal-content: 901;
  --z-confetti: 902;
  --z-horse: 903;
}

/* --- 2. RESET Y ESTILOS BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brand);
  line-height: 1.2;
  font-weight: 400; /* Rye solo tiene peso 400 */
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4rem); text-shadow: var(--glow-brand); }
h2 { font-size: clamp(2rem, 4vw + 1rem, 3rem); margin-bottom: var(--space-lg); text-align: center; }
h3 { font-size: 1.75rem; color: var(--accent); }
h4 { font-size: 1.25rem; color: var(--text); }

p {
  color: var(--muted);
  margin-bottom: var(--space-md);
}
p a { color: var(--accent); }

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* --- 3. CLASES DE UTILIDAD Y COMPONENTES --- */

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: var(--space-xxl) 0;
}

/* Componente: Botón */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 48px; /* Accesibilidad táctil */
  position: relative;
  line-height: 1.5; /* Centrado vertical */
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn:active {
  transform: translateY(2px); /* Press depth */
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--brand);
  color: var(--bg);
  border-color: var(--brand);
}
.btn-primary:hover:not(:disabled) {
  background-color: var(--bg);
  color: var(--brand);
  box-shadow: var(--glow-brand);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover:not(:disabled) {
  background-color: var(--accent);
  color: var(--bg);
  box-shadow: var(--glow-accent);
}

.btn-lg {
  font-size: 1.1rem;
  padding: var(--space-md) var(--space-xl);
}

/* Componente: Icono LED */
.icon-led {
  width: 50px;
  height: 50px;
  stroke: var(--accent);
  fill: rgba(139, 208, 255, 0.1);
  filter: drop-shadow(0 0 3px var(--accent));
}

.icon-logo {
  width: 165px;
  height: 90px;
  fill: var(--brand);
  stroke: none;
}

/* --- 4. ESTILOS DE SECCIONES --- */

/* Sección: Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: var(--space-sm) 0;
  z-index: var(--z-sticky);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.navbar-scrolled {
  background-color: rgba(13, 13, 15, 0.85); /* --bg con transparencia */
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-shadow: 0 0 5px var(--brand);
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.navbar-links {
  display: none; /* Mobile first */
  list-style: none;
  gap: var(--space-lg);
}
.nav-link {
  color: var(--text);
  font-weight: 600;
  padding: var(--space-sm) 0;
  text-decoration: none;
  position: relative;
}
/* Animación Lazo */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, var(--brand), var(--brand-2));
  transform: translateX(-50%);
  transition: width 0.4s ease;
}
.nav-link:hover::after, .nav-link:focus-visible::after {
  width: 100%;
}

.navbar-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 10;
}
.navbar-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

/* Toggle de Hamburguesa */
.navbar-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Breakpoint para Desktop Nav */
@media (min-width: 768px) {
  .navbar-toggle { display: none; }
  .navbar-links { display: flex; }
}

/* Breakpoint para Mobile Nav (Menu abierto) */
@media (max-width: 767px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  .navbar-menu.active {
    transform: translateX(0);
  }
  .navbar-links {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .nav-link {
    font-size: 1.5rem;
  }
}

/* Sección: Hero y Countdown */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* <<< QUITA ESTA LÍNEA */
  overflow: hidden;
  padding-bottom: 60px; /* Espacio para el countdown */
}
.hero-video-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; /* <-- AJUSTE: Detrás de las partículas */
}
.hero-video-wrapper video,
.hero-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(0deg, var(--bg) 5%, rgba(13, 13, 15, 0.7) 40%, rgba(13, 13, 15, 0.7) 60%, var(--bg) 95%);
  z-index: calc(var(--z-base) + 1); /* 2 */
}
.hero-content {
  position: relative;
  z-index: calc(var(--z-base) + 2); /* 3 */
  text-align: center; /* <<< AÑADE ESTA LÍNEA AQUÍ */
}

/* --- INICIO DE CÓDIGO CORREGIDO --- */
/* Estas reglas faltaban o estaban en la sección con errores */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-base); /* 1 (Encima del video, detrás del overlay) */
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 501px;
  height: auto;
  margin: 0 auto var(--space-lg);
  filter: drop-shadow(0 0 8px var(--rosa)) drop-shadow(0 0 16px var(--rosa2));
}

.hero-logo + .hero-cta-group {
    margin-top: var(--space-lg);
}
/* --- FIN DE CÓDIGO CORREGIDO --- */


.hero-date {
  color: var(--text);
  font-size: 1.25rem;
  margin: var(--space-sm) 0 var(--space-lg);
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
/* Countdown Marquee */
.countdown-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-top: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand-2);
  padding: var(--space-sm) 0;
  overflow: hidden;
  z-index: calc(var(--z-base) + 3);
  box-shadow: 0 0 15px var(--brand);
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.2rem;
  text-shadow: 0 0 5px var(--accent);
}
.countdown-timer > div {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  background: rgba(0,0,0,0.2);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}
.countdown-timer span { font-size: 0.8rem; color: var(--muted); }
.countdown-timer .value { font-size: 1.5rem; color: var(--text); }

@media (min-width: 768px) {
  .countdown-timer { font-size: 1.5rem; gap: var(--space-xl); }
  .countdown-timer .value { font-size: 2rem; }
  .countdown-timer > div { padding: var(--space-sm) var(--space-md); }
}

/* Sección: Beneficios (Cards) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}
/* Halo LED (Micro-interacción) */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% -20%, var(--accent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px var(--brand-2);
}
.card:hover::before { opacity: 0.15; }

.card-icon {
  margin-bottom: var(--space-md);
}
.card-title {
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.card-copy {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Sección: Transporte y FAQ (Acordeón) */
.accordion-group {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid var(--card);
  transition: background-color 0.3s ease;
}
.accordion-item:hover {
  background-color: var(--card);
}
.accordion-header {
  margin: 0;
  font-family: var(--font-body);
}
.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.accordion-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}
.accordion-icon {
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform 0.3s ease;
}
.accordion-toggle[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}
.accordion-content {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion-content p { color: var(--muted); padding-top: var(--space-sm); }
.accordion-content .btn { margin: var(--space-sm) 0 var(--space-lg); }

/* Sección: Itinerario (Timeline/Carousel) */
.timeline-wrapper {
  position: relative;
}
.timeline {
  display: flex;
  overflow-x: auto;
  padding: var(--space-lg) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--brand) var(--surface); /* Firefox */
  scrollbar-width: thin;
}
.timeline::-webkit-scrollbar { 
  height: 8px;
}
.timeline::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.timeline::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: var(--radius-sm);
}
.timeline::-webkit-scrollbar-thumb:hover {
  background: var(--brand-2);
}

.timeline-item {
  flex: 0 0 80%; /* Ancho de cada hito en móvil */
  scroll-snap-align: center;
  padding: var(--space-md);
  position: relative;
  margin: 0 var(--space-sm);
}
.timeline-time {
  font-family: var(--font-display);
  color: var(--brand-2);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}
.timeline-marker {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-round);
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 10px var(--accent);
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 1;
}
/* Línea de tiempo */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 68px;
  width: 100%;
  height: 2px;
  background: var(--surface);
}
.timeline-item:last-child::before { width: 0; }
.timeline-content {
  background: var(--card);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}
.timeline-content h4 { color: var(--text); }
.timeline-content p { font-size: 0.9rem; margin-bottom: 0; }

.timeline-nav {
  display: none; /* Oculto por defecto */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card);
  border: 1px solid var(--surface);
  color: var(--brand);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
}
.timeline-nav:hover {
  background: var(--brand);
  color: var(--bg);
}
.timeline-nav.prev { left: -16px; }
.timeline-nav.next { right: -16px; }

@media (min-width: 768px) {
  .timeline-item { flex-basis: 300px; /* Ancho fijo en desktop */ }
  .timeline-nav { display: block; /* Mostrar botones en desktop */ }
}

/* Sección: Ubicación y FAQ Grid */
.location-faq-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile first */
  gap: var(--space-xxl);
}
@media (min-width: 1024px) {
  .location-faq-grid {
    grid-template-columns: 1.2fr 1fr; /* Dos columnas en desktop */
    gap: var(--space-xl);
    align-items: flex-start;
  }
  .location-column h2, .faq-column h2 { text-align: left; }
}

.map-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--surface);
}
.map-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: var(--surface);
}
.map-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  filter: grayscale(80%) contrast(1.2) opacity(0.8);
}
.map-info {
  padding: var(--space-lg);
}
.map-info h3 { color: var(--brand); margin-bottom: var(--space-sm); }
.map-info p { margin-bottom: var(--space-md); color: var(--muted); }
.map-info .btn { margin-top: var(--space-sm); }

/* Sección: Footer */
.footer {
  background: var(--surface);
  color: var(--muted);
  padding: var(--space-xl) 0 0;
  border-top: 2px solid var(--card);
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brand);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--accent);
}
.social-icon {
  width: 24px;
  height: 24px;
  fill: var(--muted);
}
.social-icon:hover {
  fill: var(--accent);
}
.footer-bottom {
  text-align: center;
  padding: var(--space-md) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--card);
  font-size: 0.8rem;
}
.footer-bottom p { margin: 0; }

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr auto auto;
    text-align: left;
    align-items: center;
  }
  .footer-links {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

/* --- 5. COMPONENTES DE SUPERPOSICIÓN (MODAL) --- */

/* Modal y Formulario */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal-backdrop);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.modal-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.modal-content {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: var(--z-modal-content);
  box-shadow: 0 0 40px var(--brand-2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal[aria-hidden="false"] .modal-content {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  width: 48px; height: 48px;
  line-height: 48px;
  text-align: center;
}
.modal-close:hover { color: var(--text); }
.modal-content h2 { text-align: left; }

/* Formulario */
.register-form { margin-top: var(--space-lg); }
.form-group { margin-bottom: var(--space-md); }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.form-group input, .form-group select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border: 2px solid var(--surface);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  min-height: 48px;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.error-message {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: var(--space-xs);
  display: none;
}
.form-group input.invalid, .form-group select.invalid {
  border-color: var(--error);
}
.form-group input.invalid + .error-message, 
.form-group select.invalid + .error-message { 
  display: block; 
}

/* Barra de Progreso */
.capacity-tracker { margin: var(--space-lg) 0; }
.progress-bar {
  width: 100%;
  background: var(--surface);
  height: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bg);
}
.progress-bar-fill {
  height: 100%;
  background: var(--iridescent-gradient);
  background-size: 200% auto;
  transition: width 0.5s ease;
  animation: shimmer 3s linear infinite;
}
.progress-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.capacity-count {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: var(--space-sm);
}

/* --- 6. MICRO-INTERACCIONES Y ACCESIBILIDAD --- */

/* Animación Twinkle */
.twinkle {
  animation: twinkle 3s linear infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 3px var(--accent)); }
  50% { opacity: 0.5; filter: drop-shadow(0 0 8px var(--brand-2)); }
}

/* Animación Horse Ride-By */
.horse-animation {
  position: fixed;
  bottom: 20px;
  left: -200px; /* Inicia fuera de pantalla */
  width: 150px;
  z-index: var(--z-horse);
  opacity: 0;
  pointer-events: none;
}
.horse-animation.ride {
  animation: horseRide 8s linear 1;
}
@keyframes horseRide {
  0% { left: -200px; opacity: 1; transform: translateY(0); }
  45% { transform: translateY(-10px); }
  50% { transform: translateY(0); }
  55% { transform: translateY(-5px); }
  100% { left: 100vw; opacity: 1; transform: translateY(0); }
}

/* Confeti */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-confetti);
  pointer-events: none;
}

/* Accesibilidad: Reducir Movimiento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .horse-animation.ride {
    animation: none;
  }
}

/* Accesibilidad: Foco Visible */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
/* Quitar outline para no-teclado, pero mantener para :focus-visible */
:focus:not(:focus-visible) {
  outline: none;
}

/* AÑADIR al final de style.css */

/* Estilos para el modal grande (PDF) */
.modal-content.modal-lg {
  max-width: 900px; /* Más ancho para el PDF */
  width: 90%;
}

.pdf-embed {
  width: 100%;
  height: 60vh; /* Altura adaptable */
  margin-top: var(--space-md);
  background: var(--surface);
}

.pdf-embed iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

/* Contenedor de la sección transporte */
.transporte-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transporte-container .btn {
    margin: var(--space-md) 0;
}

/* Divisor de Lazo (si no lo tenías ya) */
.lasso-divider {
  height: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='2' viewBox='0 0 50 2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1 H50' stroke='%23e3b04b' stroke-width='2' stroke-dasharray='5 3'/%3E%3C/svg%3E");
  border: 0;
  opacity: 0.5;
  margin: var(--space-xxl) auto;
  max-width: 400px;
}

/* --- Estilos del Language Switcher --- */

.lang-switcher {
  display: flex;
  gap: 0.5rem; /* Espacio entre los botones 'ES' y 'EN' */
  margin-left: 1rem; /* Espacio entre el botón "Regístrate" y los botones de idioma */
  align-items: center; /* Alinea los botones verticalmente */
}

.btn-lang {
  /* Apariencia del botón */
  background: none;
  border: 1px solid var(--primary-color, #e3b04b); /* Borde con tu color primario */
  color: var(--primary-color, #e3b04b); /* Texto con tu color primario */
  font-family: var(--font-primary, 'Poppins', sans-serif); /* Usa la fuente de tu proyecto */
  font-weight: 600;
  padding: 0.25rem 0.5rem; /* Tamaño del botón */
  cursor: pointer;
  border-radius: 4px; /* Bordes redondeados */
  transition: all 0.2s ease; /* Transición suave */
}

.btn-lang:hover {
  /* Efecto al pasar el mouse */
  background: var(--primary-color, #e3b04b);
  color: var(--background-dark, #0d0d0f); /* Texto oscuro (asumiendo fondo oscuro) */
}