/* ===== HERO PRINCIPAL (INDEX) ===== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url('../img/hero/2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

/* Overlay oscuro para legibilidad */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(5, 7, 15, 0.45),
    rgba(5, 7, 15, 0.65)
  );
}

/* Contenido encima del fondo */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Título */
.hero h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-title);
}

/* Texto */
.hero p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

/* Botón principal */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: 30px;
  transition: 
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Botón full width para formularios */
.auth-card .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
}

/* Ajustes mobile */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Texto blanco dentro del hero */
.hero h2,
.hero p {
  color: #ffffff;
}

















/* ===== SECCIÓN EXPLORAR ===== */

.explore {
  background-color: #ffffff;   /* 👈 FONDO BLANCO */
  text-align: center;
  padding: 5rem 2rem;
}

.explore-header h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;              /* 👈 TEXTO OSCURO LEGIBLE */
}

.explore-header p {
  max-width: 500px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: #555555;              /* 👈 GRIS SUAVE */
}

/* Grid de círculos */
.explore-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Cada item */
.explore-item a {
  text-decoration: none;
}


/* ===== CÍRCULOS CON IMAGEN ===== */

.circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-title);
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  padding: 1rem;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-nosotros {
  background-image: url('../img/sections/nosotros.jpg');
}

.circle-experiencias {
  background-image: url('../img/sections/experiencias.jpg');
}

.circle-recorrido {
  background-image: url('../img/sections/recorrido.jpg');
}

.circle-quizzes {
  background-image: url('../img/sections/quiz.jpg');
}

.circle-sabias {
  background-image: url('../img/sections/sabias.jpg');
}

/* Overlay para legibilidad */
.circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 15, 0.45);
}

/* Texto siempre encima */
.circle span {
  position: relative;
  z-index: 1;
}

/* Hover elegante */
.explore-item a:hover .circle {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 480px) {

  .explore-header h3 {
    font-size: 1.6rem;
  }

  .explore-header p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .circle {
    width: 120px;
    height: 120px;
    font-size: 0.85rem;
  }

  .explore-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .circle {
    width: 140px;
    height: 140px;
    font-size: 0.9rem;
  }

  .explore-grid {
    gap: 2rem;
  }
}

@media (min-width: 1200px) {

  .circle {
    width: 180px;
    height: 180px;
    font-size: 1rem;
  }
}














/* ================================
   POPUP CON CARRUSEL
================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 15, 0.65);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3000;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Contenido */
.popup-content {
  background: #ffffff;
  color: #111;

  width: 90%;
  max-width: 460px;
  padding: 2.3rem 2.3rem 2.6rem;

  border-radius: 26px;
  text-align: center;

  box-shadow:
    0 35px 90px rgba(25, 35, 140, 0.35),
    0 12px 35px rgba(0, 0, 0, 0.18);

  position: relative;
}

/* Botón cerrar */
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
}

/* ================================
   CARRUSEL INTERNO
================================ */

.popup-carousel-wrapper {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.popup-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.popup-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Flechas */
.popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;
  border-radius: 50%;

  border: none;
  cursor: pointer;

  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: bold;

  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.popup-arrow.prev { left: 10px; }
.popup-arrow.next { right: 10px; }

/* Texto */
.popup-content h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
}

.popup-text {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.6rem;
}















/* ===== FOOTER EXTENDIDO (COMPACTO) ===== */

.footer-extended {
  background-color: var(--color-bg-main);
  padding: 1.8rem 2rem 1rem; /* 🔥 más delgado y visible */
}

/* Contenedor principal */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.8rem; /* 🔥 menos separación */
}

/* ===== MARCA ===== */

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 0.4rem; /* 🔥 menos aire */
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.4; /* 🔥 más compacto */
  max-width: 300px;
  opacity: 0.9;
}

/* ===== CONTACTO Y REDES ===== */

.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

/* ===== REDES ===== */

.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-social li {
  margin-bottom: 0.4rem;
}

.footer-social a {
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-hover);
}

/* ===== PARTE INFERIOR ===== */

.footer-bottom {
  margin-top: 1.2rem;      /* 🔥 antes era enorme */
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand p {
    margin: 0 auto;
  }

}










/* ================================
   NAVBAR / HEADER
================================ */

/* HEADER CONTENEDOR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-bg-main);
}

/* NAVBAR */
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;     /* altura visual controlada */
  min-height: 72px;          /* 🔒 evita que el logo la estire */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================
   LOGO + TEXTO
================================ */

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
  text-decoration: none;
}

.logo img {
  height: 60px;              /* 🔥 tamaño ideal sin engordar header */
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;            /* evita que el texto empuje */
  color: var(--color-text);
  white-space: nowrap;
}

/* ================================
   LINKS DE NAVEGACIÓN
================================ */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-hover);
}

/* BOTÓN RESERVAS */
.btn-nav {
  padding: 0.5rem 1.2rem;
  background-color: var(--color-primary);
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 600;
}

.btn-nav:hover {
  background-color: var(--color-hover);
  color: #fff;
}

/* ================================
   MENÚ HAMBURGUESA
================================ */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 2px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px; /* coincide con la altura del header */
    right: 0;
    background-color: var(--color-bg-main);
    flex-direction: column;
    width: 100%;
    padding: 2rem;
    gap: 1.2rem;
    display: none;
  }

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

  .btn-nav {
    width: 100%;
    text-align: center;
  }
}

/* ================================
   AUTH LINKS NAVBAR
================================ */

.auth-link {
  font-weight: 500;
  position: relative;
}

.auth-card input {
  color: #222 !important;
}

.logout-link {
  color: #c62828;
}

.logout-link:hover {
  color: #8e0000;
}

.user-greeting {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ================================
   LINKS AUTH (azules coherentes)
================================ */

.auth-extra a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-extra a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

















/* ================================
   INTRO SIMPLE – EXPERIENCIAS
================================ */

.experiences-intro {
  max-width: 900px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

.experiences-intro h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.experiences-intro p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   GRID DE EXPERIENCIAS
================================ */

.experiences {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* ================================
   CARD DE EXPERIENCIA
================================ */

.experience-card {
  background-color: #ffffff; /* 🔒 color fijo */
  border-radius: 22px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(25, 35, 140, 0.15);

  box-shadow:
    0 10px 25px rgba(25, 35, 140, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.experience-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(25, 35, 140, 0.25),
    0 8px 18px rgba(0, 0, 0, 0.08);
}



/* ================================
   IMAGEN DE LA EXPERIENCIA
================================ */

.experience-image {
  position: relative;              /* 🔑 CLAVE */
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay SOLO sobre la imagen */
.experience-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(5, 7, 15, 0.25),
    rgba(5, 7, 15, 0.6)
  );
}

/* ================================
   CONTENIDO DE LA CARD
================================ */

.experience-content {
  position: relative;              /* 🔑 CLAVE */
  z-index: 1;

  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Header: título + badge */
/* Header: título + precio + badge */
.experience-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.experience-header h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
}

/* ================================
   BADGES DE ESTADO
================================ */

.experience-badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.experience-badge.available {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.experience-badge.soldout {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* ================================
   TEXTO Y META
================================ */

.experience-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.experience-meta {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.experience-meta li {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

/* ================================
   ACCIÓN
================================ */

.experience-action {
  margin-top: auto;
}

/* Botón secundario (Sold Out) */
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--color-hover);
  border-radius: 25px;
  font-family: var(--font-title);
  font-weight: 600;
  opacity: 0.6;
  cursor: not-allowed;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .experiences-intro h2 {
    font-size: 2.1rem;
  }

  .experience-image {
    height: 160px;
  }

}

/* ================================
   IMÁGENES POR EXPERIENCIA
================================ */

.experience-img-1 {
  background-image: url('../img/experiences/exp-1.jpg');
}

.experience-img-2 {
  background-image: url('../img/experiences/exp-2.jpg');
}

.experience-img-3 {
  background-image: url('../img/experiences/exp-3.jpg');
}

/* agrega más según tus IDs */












/* ================================
   POPUP SOLO IMAGEN – EXPERIENCIAS
================================ */

.popup-image-only {
  position: fixed;
  inset: 0;

  background: rgba(5, 7, 15, 0.75);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3000;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-image-only.active {
  opacity: 1;
  pointer-events: auto;
}

/* Imagen */
.popup-image-container {
  max-height: 90vh;
  max-width: 90vw;

  border-radius: 26px;
  overflow: hidden;

  box-shadow:
    0 40px 100px rgba(25, 35, 140, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.4);
}

.popup-image-container img {
  height: 100%;
  width: auto;
  max-height: 90vh;

  display: block;
}

/* Botón cerrar */
.popup-image-only .popup-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;

  background: rgba(255, 255, 255, 0.9);
  border: none;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  font-size: 1.2rem;
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}













/* ================================
   INTRO SIMPLE – EVENTOS
================================ */

.events-intro {
  max-width: 900px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

.events-intro h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.events-intro p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   GRID DE EVENTOS
================================ */

.events {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* ================================
   CARD DE EVENTO 
================================ */

.event-card {
  background-color: #ffffff; /* 🔒 color fijo */
  border-radius: 22px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(25, 35, 140, 0.15);

  box-shadow:
    0 10px 25px rgba(25, 35, 140, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(25, 35, 140, 0.25),
    0 8px 18px rgba(0, 0, 0, 0.08);
}


/* ================================
   IMAGEN DEL EVENTO
================================ */

.event-image {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.event-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(5, 7, 15, 0.25),
    rgba(5, 7, 15, 0.6)
  );
}

/* ================================
   CONTENIDO
================================ */

.event-content {
  position: relative;
  z-index: 1;

  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Header */
.event-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.event-header h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
}

/* ================================
   BADGES
================================ */

.event-badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.event-badge.available {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.event-badge.soldout {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* ================================
   TEXTO Y META
================================ */

.event-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.event-meta {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.event-meta li {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

/* ================================
   ACCIÓN
================================ */

.event-action {
  margin-top: auto;
}

/* ================================
   IMÁGENES POR EVENTO
================================ */

/* Evento ID 1 */
.event-img-1 {
  background-image: url('../img/events/event-1.jpg');
}

/* Evento ID 2 */
.event-img-2 {
  background-image: url('../img/events/event-2.jpg');
}

/* Evento ID 3 */
.event-img-3 {
  background-image: url('../img/events/event-3.jpg');
}

/* Agrega más según los IDs reales */











/* ================================
   INTRO – SOBRE (MEJORADO)
================================ */

.about-intro {
  max-width: 900px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

.about-intro h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-intro p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}


/* ================================
   SOBRE – LAYOUT EN DOS COLUMNAS
================================ */

.about-split {
  max-width: 1200px;
  margin: 5rem auto 6rem;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* ================================
   TEXTO
================================ */

.about-text h2 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* Bloques de texto */
.about-block {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--color-primary);
}

.about-block h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.about-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ================================
   IMAGEN
================================ */

.about-image {
  height: 460px;
  border-radius: 28px;

  background-image: url('../img/logos/logo2.png'); /* cambia la imagen */
  background-size: cover;
  background-position: center;

  box-shadow:
    0 30px 70px rgba(25, 35, 140, 0.25),
    0 12px 25px rgba(0, 0, 0, 0.12);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    height: 300px;
    order: -1; /* imagen arriba en móvil */
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

}

/* ================================
   CARRUSEL – SOBRE
================================ */

.about-carousel {
  position: relative;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;

  box-shadow:
    0 30px 70px rgba(25, 35, 140, 0.25),
    0 12px 25px rgba(0, 0, 0, 0.12);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
}

/* ================================
   BOTONES
================================ */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;
  border-radius: 50%;

  border: none;
  cursor: pointer;

  background-color: rgba(255, 255, 255, 0.85);
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: bold;

  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

.carousel-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .about-carousel {
    height: 300px;
    order: -1;
  }
}













/* ================================
   INTRO – CONTACTO
================================ */

.contact-intro {
  max-width: 900px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

.contact-intro h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.contact-intro p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: #444;
}


/* ================================
   SECCIÓN CONTACTO
================================ */

.contact {
  max-width: 1100px;
  margin: 0 auto 6rem;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}


/* ================================
   INFO DE CONTACTO
================================ */

.contact-info {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 2.5rem;

  border: 1px solid rgba(25, 35, 140, 0.15);
  box-shadow:
    0 10px 25px rgba(25, 35, 140, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);

  color: #111;
}

.contact-info h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: #333;
}


/* =====================================
   INPUTS CONTACTO – BORDE CON SOMBRA
===================================== */

.contact-form form input,
.contact-form form textarea {
  background-color: #ffffff !important;
  color: #111111 !important;

  border: 1.8px solid rgba(25, 35, 140, 0.35) !important;
  border-radius: 14px;

  padding: 0.75rem 0.95rem;
  font-size: 0.9rem;
  font-family: inherit;

  /* ✨ SOMBRA SUTIL */
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.06),
    0 3px 8px rgba(25, 35, 140, 0.08);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Placeholder */
.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

/* Focus bonito 💙 */
.contact-form form input:focus,
.contact-form form textarea:focus {
  outline: none;

  border-color: var(--color-primary) !important;

  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.05),
    0 0 0 3px rgba(107, 92, 255, 0.18),
    0 8px 20px rgba(25, 35, 140, 0.18);
}

/* Labels */
.contact-form form label {
  color: #333;
  font-size: 0.85rem;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

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

  .contact-intro h2 {
    font-size: 2.1rem;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }

}

.form-success {
  background: #e6f4ea;
  color: #1b5e20;
  border: 1px solid #4caf50;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.form-error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f44336;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ================================
   AUTH SECTION CENTERED
================================ */

.auth-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.auth-card {
  width: 100%;
  max-width: 560px; /* más ancha */
  padding: 3rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow:
    0 20px 45px rgba(25, 35, 140, 0.10),
    0 5px 15px rgba(0, 0, 0, 0.05);
}

.auth-card h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* Eliminamos cualquier animación */
.auth-card:hover {
  transform: none;
}


/* ================================
   INPUTS ESTILO LOGIN (azul suave)
================================ */

.auth-card input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;

  background-color: #ffffff;
  color: #333;

  border: 2px solid rgba(75, 110, 255, 0.35); /* azul suave */
  border-radius: 16px;

  box-shadow: 0 4px 10px rgba(75, 110, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Placeholder */
.auth-card input::placeholder {
  color: #9aa3c7;
}

/* Focus más definido */
.auth-card input:focus {
  outline: none;
  border-color: #4b6eff;
  box-shadow: 0 0 0 3px rgba(75, 110, 255, 0.15);
}

.auth-card input {
  border: 2px solid rgba(75, 110, 255, 0.35) !important;
  box-shadow: 0 4px 10px rgba(75, 110, 255, 0.08) !important;
}

















/* ================================
   INTRO – RESERVAS
================================ */

.reservations-intro {
  max-width: 700px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

.reservations-intro h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.reservations-intro p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* ================================
   CONTENEDOR
================================ */

.reservations {
  max-width: 600px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

/* ================================
   FORMULARIO
================================ */

.reservation-form {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  padding: 2.8rem 2.5rem;
}

/* Mensaje éxito */
.reservation-success {
  background: rgba(107, 92, 255, 0.15);
  color: var(--color-primary);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ================================
   CAMPOS
================================ */

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.form-group input {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  color: var(--color-text);
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-hover);
}

/* ================================
   AJUSTE FORMULARIO RESERVAS
================================ */

.reservation-form .form-group input,
.reservation-form .form-group select,
.reservation-form .form-group textarea {
  background-color: #ffffff !important;
  border: 1.8px solid rgba(75,110,255,0.35) !important;
  color: #111111 !important;
}

.reservation-form .form-group input::placeholder {
  color: rgba(0,0,0,0.4);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .reservations-intro h2 {
    font-size: 2.1rem;
  }

  .reservation-form {
    padding: 2.2rem 2rem;
  }

}
















/* ================================
   INTRO – RECORRIDO
================================ */

.tour-intro {
  max-width: 900px;
  margin: 5rem auto 3.5rem;
  padding: 0 2rem;
  text-align: center;
}

.tour-intro h2 {
  font-family: var(--font-title);
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.tour-intro p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto;
}

/* ================================
   PREVIEW PRINCIPAL
================================ */

.tour-preview {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
  text-align: center;
}

.tour-frame {
  position: relative;
  width: 100%;
  height: 70vh;
  border-radius: 28px;
  overflow: hidden;

  background-color: #05070f; /* 👈 NUEVO */
  background-image: url('../img/sections/recorrido-preview.jpg');
  background-size: cover;
  background-position: center;

  border: 1px solid rgba(25, 35, 140, 0.18);

  box-shadow:
    0 30px 70px rgba(25, 35, 140, 0.25),
    0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Overlay visual (NO bloquea clics) */
.tour-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(5,7,15,0.15),
    rgba(5,7,15,0.35)
  );
  pointer-events: none; /* 🔥 CLAVE */
  z-index: 1;
}

/* IFRAME */
.tour-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Texto de ayuda */
.tour-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ================================
   INFO EXTRA
================================ */

.tour-info {
  max-width: 1000px;
  margin: 0 auto 6rem;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.tour-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 2.5rem;

  border: 1px solid rgba(25, 35, 140, 0.15);

  box-shadow:
    0 10px 25px rgba(25, 35, 140, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

.tour-card h4 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.tour-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .tour-frame {
    height: 300px;
  }

  .tour-intro h2 {
    font-size: 2.2rem;
  }

}















/* ================================
   HEADER Y FOOTER – TEXTO BLANCO
================================ */

.site-header,
.site-header a,
.site-header .logo,
.site-header .nav-links a,
.site-header .btn-nav {
  color: #ffffff;
}

.footer-extended,
.footer-extended a,
.footer-extended h3,
.footer-extended h4,
.footer-extended p,
.footer-extended li {
  color: #ffffff;
}



















/* ===== ASISTENTE FLOTANTE ===== */

#assistant-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Avatar (sin círculo forzado) */
.assistant-avatar {
  width: 90px;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

.assistant-avatar img {
  width: 100%;
  height: auto;
  display: block;

  /* Glow espacial elegante */
  filter: drop-shadow(0 0 15px rgba(140, 82, 255, 0.6));
}

/* Burbuja de mensaje */
.assistant-bubble {
  background: #4b0082;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  white-space: nowrap;
  animation: fadeInOut 5s infinite;
}

/* Animación flotante */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Animación burbuja */
@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Ajuste para móvil */
@media (max-width: 768px) {
  .assistant-avatar {
    width: 70px;
  }

  .assistant-bubble {
    font-size: 12px;
  }
}














/* ===== PANEL CHAT BLANCO + AZUL #2441e1 ===== */

#chat-panel {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 340px;
  height: 480px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

/* Header */
.chat-header {
  background: #2441e1;
  color: white;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Área de mensajes */
.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Contenedor mensaje */
.message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

/* Usuario */
.message.user {
  justify-content: flex-end;
}

.message.user .bubble {
  background: #2441e1;
  color: white;
  border-radius: 18px 18px 4px 18px;
}

/* Bot */
.message.bot {
  justify-content: flex-start;
}

.message.bot .bubble {
  background: #f1f3ff;
  color: #333;
  border-radius: 18px 18px 18px 4px;
}

/* Avatar del bot */
.message-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* Burbuja general */
.bubble {
  max-width: 65%;
  padding: 10px 14px;
  font-size: 14px;
}

/* Input */
.chat-input-area {
  display: flex;
  border-top: 1px solid #e6e6e6;
  background: white;
}

#chat-input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
  font-size: 14px;
  background: white;
}

#chat-send {
  background: #2441e1;
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#chat-send:hover {
  background: #1d34b8;
}





.quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-buttons button {
  background: #2441e1;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.2s ease;
}

.quick-buttons button:hover {
  background: #1d34b8;
}






.chat-link {
  color: #2441e1;
  font-weight: 600;
  text-decoration: none;
}

.chat-link:hover {
  text-decoration: underline;
}












/* ================================
   DROPDOWN NAVBAR LIMPIO
================================ */

.dropdown {
  position: relative;
  list-style: none;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

/* Menú oculto por defecto */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;

  min-width: 190px;
  padding: 0.6rem 0;
  border-radius: 14px;

  background: rgba(25, 15, 80, 0.88);
  backdrop-filter: blur(8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;

  z-index: 2000;
}

/* Cuando está activo */
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Links dentro */
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(75, 110, 255, 0.25);
  padding-left: 1.4rem;
}












/* ================================
   FORMULARIO COMENTARIOS CENTRADO
================================ */

.comentario-wrapper {
  display: flex;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.comentario-card-form {
  width: 100%;
  max-width: 650px;
  background: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.comentario-card-form h3 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Select más elegante */
.comentario-card-form select {
  width: 100%;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1.5px solid rgba(75,110,255,0.35);
  font-family: inherit;
}

/* Textarea coherente */
.comentario-card-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1.8px solid rgba(75,110,255,0.35);
  resize: none;
  font-family: inherit;
}

/* Botón centrado */
.comentario-card-form .btn-primary {
  display: block;
  margin: 1.5rem auto 0 auto;
  width: 60%;
  text-align: center;
}

/* Ajustar espacio entre intro y formulario */
.contact-intro {
  margin-bottom: 1.5rem; /* antes probablemente era 3rem o más */
}

.comentario-wrapper {
  padding-top: 1rem;
}






.comentarios-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.comentario-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.comentario-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.estrellas {
  color: #f5b301;
  font-size: 0.9rem;
}





.reacciones {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-reaccion {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease;
}

.btn-reaccion:hover {
  transform: scale(1.2);
}

.contador {
  font-size: 0.85rem;
  opacity: 0.8;
}






.respuestas {
  margin-top: 1rem;
  margin-left: 2rem;
  border-left: 2px solid rgba(75, 110, 255, 0.3);
  padding-left: 1rem;
}

.respuesta-card {
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-respuesta {
  margin-top: 0.8rem;
}

.form-respuesta textarea {
  width: 100%;
  border: 1.5px solid rgba(75,110,255,0.35);
  border-radius: 12px;
  padding: 0.6rem;
  resize: none;
}

.btn-mini {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}











/* ===== AVATAR BURBUJA ===== */

.avatar-bubble {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 220px;
  height: 220px;
  z-index: 9999;
}

.avatar-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(106, 13, 173, 0.6);
}

.avatar-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-overlay-play {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 15;
}

















/* ================================
   CONFIRMACION RESERVA
================================ */

.confirm-intro {
  text-align: center;
  margin: 3rem 0 1.5rem;
}

.confirm-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
}

.confirm-card {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.confirm-summary {
  margin-bottom: 2rem;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.confirm-total {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  color: var(--color-primary);
}

.confirm-btn {
  width: 100%;
  margin-top: 1.5rem;
}

.confirm-paid {
  text-align: center;
  padding: 1rem;
  background: #e6f4ea;
  color: #1b5e20;
  border-radius: 12px;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .confirm-card {
    padding: 2rem;
  }

  .confirm-row {
    flex-direction: column;
    gap: 0.3rem;
  }

  .confirm-total {
    text-align: left;
  }

}

















/* ================================
   PERFIL
================================ */

.perfil-intro {
  text-align: center;
  margin: 3rem 0 1.5rem;
}

.perfil-wrapper {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.perfil-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.perfil-reserva {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.perfil-reserva:last-child {
  border-bottom: none;
}

.perfil-estado {
  text-align: right;
}

.estado-pagado {
  color: green;
  font-weight: 600;
}

.estado-pendiente {
  color: #c62828;
  font-weight: 600;
}

.btn-small {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  background: var(--color-primary);
  color: white;
  border-radius: 20px;
}

.perfil-comentario {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.perfil-comentario:last-child {
  border-bottom: none;
}

.perfil-estrellas {
  margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
  .perfil-reserva {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .perfil-estado {
    text-align: left;
  }
}


















.btn-cancelar {
  margin-left: 8px;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  background: #f44336;
  color: white;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-cancelar:hover {
  background: #d32f2f;
}

.estado-cancelado {
  color: #757575;
  font-weight: 600;
}













/* ================================
   PRICE DISPLAY
================================ */

.experience-price,
.event-price {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.experience-price span,
.event-price span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #777;
}









.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}






.confirm-discount {
  color: #2e7d32;
  font-weight: 600;
}

.confirm-total {
  margin-top: 18px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.confirm-paid {
  margin-top: 15px;
  color: #2e7d32;
  font-weight: 600;
}










.confirm-discount {
  color: #2e7d32;
  font-weight: 600;
}

.confirm-total {
  margin-top: 18px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.confirm-status {
  margin-top: 12px;
  font-weight: 600;
  color: #2e7d32;
}









.footer-newsletter {
  margin-top: 15px;
}

.footer-newsletter form {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.footer-newsletter input[type="email"] {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: white;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: rgba(255,255,255,0.1);
}









/* AVISO DE PRIVACIDAD */

.privacy-check{
  display:flex;
  align-items:center;
  gap:8px;
  margin:10px 0 18px 0;
  font-size:14px;
  color:#444;
}

.privacy-check input[type="checkbox"]{
  width:16px;
  height:16px;
  cursor:pointer;
}

.privacy-check label{
  cursor:pointer;
}

.privacy-check a{
  color:#2f49d1;
  font-weight:500;
  text-decoration:none;
}

.privacy-check a:hover{
  text-decoration:underline;
}










.tour-preview{
  padding: 40px 20px;
  display:flex;
  justify-content:center;
}

.tour-frame{
  width:100%;
  max-width:1200px;
  height:650px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.tour-frame iframe{
  width:100%;
  height:100%;
  border:none;
}

@media (max-width:768px){

  .tour-frame{
    height:500px;
  }

}


















/* =====================================================
   QUIZZES – INTRO
===================================================== */

.quizzes-intro{

  max-width:900px;
  margin:5rem auto 3rem;

  padding:0 2rem;

  text-align:center;

}

.quizzes-intro h2{

  font-family:var(--font-title);
  font-size:2.5rem;

  margin-bottom:1rem;

}

.quizzes-intro p{

  font-size:1.05rem;
  opacity:0.9;

  max-width:600px;
  margin:0 auto;

}



/* =====================================================
   QUIZZES – GRID
===================================================== */

.quizzes{

  max-width:1100px;
  margin:0 auto 6rem;

  padding:0 2rem;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

  gap:2.5rem;

}



/* =====================================================
   QUIZ CARD
===================================================== */

.quiz-card{

  position:relative;

  background:linear-gradient(
    160deg,
    rgba(107,92,255,0.15),
    rgba(255,255,255,0.03)
  );

  border-radius:24px;

  padding:2.8rem 2.4rem;

  display:flex;
  flex-direction:column;

  justify-content:space-between;

  transition:transform 0.3s ease, box-shadow 0.3s ease;

}

.quiz-card:hover{

  transform:translateY(-6px);

  box-shadow:0 20px 45px rgba(0,0,0,0.35);

}



.quiz-card h3{

  font-family:var(--font-title);
  font-size:1.35rem;

  margin-bottom:0.8rem;

}

.quiz-card p{

  font-size:0.95rem;

  opacity:0.9;

  line-height:1.6;

  margin-bottom:2rem;

}



/* =====================================================
   BOTÓN CARD
===================================================== */

.quiz-card .btn-secondary{

  align-self:flex-start;

  cursor:pointer;

  transition:transform 0.2s ease, opacity 0.2s ease;

}

.quiz-card .btn-secondary:hover{

  transform:translateY(-2px);

  opacity:0.9;

}



/* =====================================================
   TEXTO EDUCATIVO
===================================================== */

.quiz-info{

  max-width:900px;

  margin:4rem auto 6rem;

  padding:0 2rem;

  text-align:center;

}

.quiz-info h3{

  font-family:var(--font-title);

  font-size:1.8rem;

  margin-bottom:1rem;

}

.quiz-info p{

  opacity:0.9;

  line-height:1.7;

}



/* =====================================================
   QUIZ PAGE
===================================================== */

.quiz-page{

  padding-top:3rem;

}



/* =====================================================
   LAYOUT DOS COLUMNAS
===================================================== */

.quiz-layout{

  max-width:1200px;

  margin:auto;

  padding:2rem;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:3rem;

}



/* =====================================================
   LECTURA
===================================================== */

.quiz-reading{

  line-height:1.7;

  font-size:1rem;

}

.quiz-reading h2{

  font-family:var(--font-title);

  margin-bottom:1rem;

}

.quiz-reading p{

  margin-bottom:1rem;

  opacity:0.9;

}



/* =====================================================
   PANEL DEL QUIZ
===================================================== */

.quiz-panel{

  background:linear-gradient(
    160deg,
    rgba(20,20,40,0.95),
    rgba(40,40,80,0.9)
  );

  padding:2rem;

  border-radius:20px;

  color:#ffffff;

}



/* =====================================================
   BOTÓN INICIAR QUIZ
===================================================== */

.quiz-start-btn{

  display:inline-block;

  padding:0.9rem 2rem;

  background-color:var(--color-primary);

  color:#ffffff;

  font-family:var(--font-title);

  font-weight:600;

  border-radius:30px;

  border:none;

  outline:none;

  cursor:pointer;

  transition:
  background-color 0.3s ease,
  transform 0.2s ease,
  box-shadow 0.2s ease;

}

.quiz-start-btn:hover{

  background-color:var(--color-hover);

  transform:translateY(-2px);

  box-shadow:0 10px 25px rgba(0,0,0,0.35);

}



/* =====================================================
   HEADER DEL QUIZ
===================================================== */

.quiz-header{

  display:flex;

  justify-content:space-between;

  margin-bottom:1.5rem;

}

.quiz-timer{

  font-weight:600;

  color:var(--color-primary);

}



/* =====================================================
   OPCIONES DEL QUIZ
===================================================== */

.quiz-options button{

  width:100%;

  padding:0.9rem;

  margin-bottom:0.6rem;

  border:none;

  border-radius:8px;

  background:rgba(255,255,255,0.08);

  color:white;

  cursor:pointer;

  transition:all 0.2s ease;

}

.quiz-options button:hover{

  background:rgba(255,255,255,0.2);

}



/* =====================================================
   RANKING
===================================================== */

.quiz-ranking{

  max-width:900px;

  margin:5rem auto;

  padding:0 2rem;

}

.quiz-ranking h3{

  font-family:var(--font-title);

  margin-bottom:1rem;

}

.ranking-table{

  width:100%;

  border-collapse:collapse;

}

.ranking-table th,
.ranking-table td{

  padding:0.7rem;

  text-align:center;

}

.ranking-table tr{

  border-bottom:1px solid rgba(255,255,255,0.1);

}



/* =====================================================
   UTILIDADES
===================================================== */

.hidden{

  display:none;

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:900px){

.quiz-layout{

grid-template-columns:1fr;

}

}

@media (max-width:768px){

.quizzes-intro h2{

font-size:2.1rem;

}

.quiz-card{

padding:2.2rem;

}

}

















/* ================================
   RECORRIDO RESPONSIVE PRO
================================ */

/* Contenedor */
.tour-preview {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

/* Frame */
.tour-frame {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px; /* 👈 evita que se haga muy pequeño */
  border-radius: 28px;
  overflow: hidden;

  background-color: #05070f;

  border: 1px solid rgba(25, 35, 140, 0.18);

  box-shadow:
    0 30px 70px rgba(25, 35, 140, 0.25),
    0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Iframe */
.tour-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* ================================
   TABLET
================================ */
@media (max-width: 1024px) {
  .tour-frame {
    height: 60vh;
  }
}

/* ================================
   CELULAR
================================ */
@media (max-width: 768px) {

  .tour-preview {
    padding: 0 1rem;
  }

  .tour-frame {
    height: 55vh;
    min-height: 320px;
    border-radius: 18px;
  }

}

/* ================================
   CELULAR PEQUEÑO
================================ */
@media (max-width: 480px) {

  .tour-frame {
    height: 50vh;
    min-height: 280px;
    border-radius: 14px;
  }

}











/* ===== SABÍAS QUE ===== */

.facts-intro {
  text-align: center;
  padding: 60px 20px 20px;
}

.facts-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.facts-intro p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */
.fun-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 60px;
}

/* CARD */
.fact-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER BONITO */
.fact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ICONO */
.fact-icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 10px;
}

/* TITULO */
.fact-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* TEXTO */
.fact-card p {
  color: #555;
  line-height: 1.5;
}




