:root {
  /* ORO: Un tono un poco más quemado para que resalte sobre el azul claro sin verse verdoso */
  --oro: #efb810;
  --oro-brillante: #ffd83a;

  /* AZULES: Basados en las muestras de tu gradiente (16, 132, 179) */

  /* Azul casi negro para fondos profundos */
  --negro-puro: #0b2a58;

  /* Azul marino vibrante para tarjetas (derivado de tu rgba central) */
  --negro-suave: #0b3c86;

  /* Azul eléctrico para bordes o líneas decorativas */
  --azul-resaltado: #1084b3;

  /* APOYO */
  --blanco: #ffffff;
  --gris-texto: #d1d5db; /* Gris con un toque azulado */
}
/* --- Reset y General --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--negro-puro);
  color: var(--blanco);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Navegación (Efecto Cristal) --- */
.nav-principal {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  z-index: 10000;
  background: var(--cristal);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 195, 97, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: 0.3s;
}

.enlaces a {
  color: var(--blanco);
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.enlaces a:hover {
  color: var(--oro);
}

.btn-oro {
  background-color: var(--oro) !important;
  color: black !important;
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: bold;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  background:
    linear-gradient(
      rgba(2, 1, 56, 0.842),
      rgba(1, 0, 53, 0.26),
      rgba(8, 7, 68, 0.842)
    ),
    url("img/FONDO.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 10px;
}

.texto-dorado {
  color: var(--oro);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 10px;
}

.frase-maestra {
  font-size: 1.5rem;
  font-style: italic;
  margin: 20px auto;
  max-width: 700px;
  border-top: 1px solid var(--oro);
  border-bottom: 1px solid var(--oro);
  padding: 15px 0;
}

/* --- Secciones y Contenedores --- */
section {
  padding: 80px 10%;
}

.contenedor-corto {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

/* --- Grid de Tarjetas (Tickets y Pagos) --- */
.grid-especiales {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-especial {
  background: var(--negro-suave);
  border: 1px solid #222;
  padding: 40px 30px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
}

.card-especial:hover {
  border-color: var(--oro);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(219, 195, 97, 0.1);
}

.conferencia {
  display: block;
  color: var(--oro);
  font-weight: bold;
  margin: 20px 0;
}

/* --- Tablas de Precios (Filas) --- */
.tabla-precios {
  margin: 20px 0;
}

.fila {
  padding: 12px 0;
  border-bottom: 1px solid #222;
  font-size: 0.9rem;
  color: var(--gris-texto);
}

.destacada {
  color: var(--oro);
  font-weight: bold;
}

/* --- Botones --- */
.btn-grande {
  display: inline-block;
  width: 100%;
  background: var(--oro);
  color: #000;
  padding: 15px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-grande:hover {
  background: var(--blanco);
  box-shadow: 0 0 15px var(--oro);
}

/* --- Footer --- */
.footer-final {
  background: #0b2a58a8;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #000102;
}

.cierre {
  color: var(--oro);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-final p {
  font-size: 0.8rem;
  color: #555;
}

/* Contenedor Principal */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  font-family: Arial, sans-serif;
}

/* Botón Circular */
.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #4fce5d;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Ventana de Chat */
.whatsapp-chat-window {
  width: 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  display: none; /* Oculto por defecto */
  flex-direction: column;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

/* Cabecera con la X */
.chat-header {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
}

.close-chat {
  background: #4fce5d;
  color: white;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

/* Cuerpo del Chat */
.chat-body {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eee;
}

.chat-message {
  background: #f0f0f0;
  padding: 10px 15px;
  border-radius: 15px;
  color: #0b2a58;
  font-size: 14px;
}

/* Footer con Input */
.chat-footer {
  padding: 15px;
  display: flex;
  gap: 10px;
  border-top: 1px solid #eee;
}

.chat-footer input {
  flex: 1;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 20px;
  outline: none;
}

.send-btn {
  background: white;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: #999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Estilos para Contacto y Redes */
.seccion-contacto {
  background-color: var(--negro-puro);
  padding: 60px 0;
  text-align: center;
}

.mapa-container {
  max-width: 1000px;
  margin: 30px auto;
  border: 2px solid rgba(219, 195, 97, 0.3); /* Borde dorado suave */
  box-shadow: 0 0 20px rgba(11, 42, 88, 0.8);
}

.redes-sociales-container {
  padding-top: 40px;
}

.iconos-sociales {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.iconos-sociales a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Círculos gris oscuro/transparente */
  color: white;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.iconos-sociales a:hover {
  background-color: var(--oro);
  color: rgba(11, 42, 88, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(219, 195, 97, 0.4);
}

:root {
  --oro: #efb810;
  --oro-brillante: #ffd83a;
  --negro-puro: #0b2a58;
  --negro-suave: #0b3c86;
  --azul-resaltado: #1084b3;
  --blanco: #ffffff;
}

#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 42, 88, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: var(--negro-suave);
  color: var(--blanco);
  padding: 30px;
  border-radius: 20px;
  max-width: 300px;
  width: 90%;
  border: 3px solid var(--oro);
  text-align: center;
  position: relative;
}

.close-x {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
  color: var(--oro);
}

.title-askaret {
  color: var(--oro-brillante);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.conferencia-text {
  font-style: italic;
  border-left: 3px solid var(--azul-resaltado);
  padding-left: 10px;
  margin: 15px 0;
}
.codigo-box {
  background: var(--negro-puro);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}
.codigo-txt {
  font-size: 2rem;
  color: var(--oro);
  font-weight: bold;
  letter-spacing: 2px;
}

.btn-amor {
  background: var(--oro);
  color: var(--negro-puro);
  padding: 15px 8px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  width: 100%;
}

.footer-info {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--blanco);
}
/* --- ESTILOS MÓVIL (Por defecto) --- */
.nav-principal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.hamburger {
  display: block; /* Visible en móvil */
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--oro);
  cursor: pointer;
}

.enlaces {
  display: none; /* Oculto por defecto en móvil */
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--negro-puro);
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}

.enlaces.activo {
  display: flex; /* Se muestra al hacer click */
}

/* --- ESTILOS ESCRITORIO (Cuando es mayor a 768px) --- */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  } /* Ocultar hamburguesa */

  .enlaces {
    display: flex; /* Siempre visible */
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }
}
