@charset "utf-8";
/* CSS Document */


/* ====== Layout general ====== */
body { font-family: Arial, sans-serif; margin:0; padding:0; background:#f5f5f5; color:#222; }
header { position: relative; text-align: center; color: white; }
header img.main-header { width: 100%; height: 400px; object-fit: cover; filter: brightness(0.7); }

<!-- Estilos base -->
<style>
  :root {
    --b-aquamarine-dark-blue: #315973;
    --b-dark-blue-gradient: linear-gradient(90deg, #348aa9 0%, #2f5a76 100%);
    --b-aquamarine-blue: #30a2bf;
    --b-dark-blue-gradient-hover: linear-gradient(90deg, #268299 0%, #26485e 100%);
    --b-dark-blue-gradient-active: linear-gradient(90deg, #1d6173 0%, #1c3647 100%);
    --b-blue: #155583;
    --text-dark: #222;
    --text-light: #f8f9fa;
  }

  /* Fuente global */
  body {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    margin: 0;
    padding: 0;
  }

  /* Títulos y botones */
  h1, h2, h3, h4, h5, h6, button {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .h2-blanco {
  color: white;
  text-align: left;
  margin-left: 20px; /* separa del límite izquierdo */
}


  /* Botones generales */
  button {
    border: none;
    cursor: pointer;
    border-radius: 12px;
    padding: 12px 24px;
    color: var(--text-light);
    background: var(--b-dark-blue-gradient);
    transition: all 0.25s ease;
  }

  button:hover {
    background: var(--b-dark-blue-gradient-hover);
    transform: translateY(-2px);
  }

  button:active {
    background: var(--b-dark-blue-gradient-active);
    transform: translateY(1px);
  }

  /* Footer coherente con la nueva fuente */
  #footer {
    font-family: 'Lato', Arial, sans-serif;
    background-color: #384044;
    color: var(--text-light);
    text-align: center;
    padding: 20px 0;
  }

  #footer .footer-text {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
  }


/* Header flotante sobre el contenido */
#floatingHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 1); /* semitransparente */
  z-index: 3000; /* sobre el resto del contenido */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

/* Contenedor centrado y con max-width */
#floatingHeader .floating-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

#floatingHeader #floatingLogo {
  filter: brightness(0) invert(1);
  max-height: 45px;
  object-fit: contain;
}




/* Selector de idioma a la derecha */
#floatingHeader .lang-selector select {
  padding: 5px 10px;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
}

/* Opcional: cambia el fondo al hacer scroll */
body.scrolled #floatingHeader {
  background: rgba(0, 0, 0, 0.5);
}


header {
  background-color: #384044; /* gris claro */
  width: 100%;               /* asegura que abarque todo el ancho */
  padding: 20px 0;           /* espacio arriba y abajo */
  box-sizing: border-box;    /* incluye padding dentro del ancho */
}
	
	
/* header image wrapper */
.header-image-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 10px auto 0;
  transition: all 0.5s ease-in-out;
}


/* header image */
#headerImageContainer img {
  width: 100%;
  aspect-ratio: 16 / 9;   /* mantiene proporción panorámica */
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
	

	
#headerImageContainer img.loaded { opacity: 1; }

/* caption flotante sobre la imagen (pie) */
.header-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(40,40,40,0.7);
  color: white; 
  font-size: 1.2rem;
  padding: 10px 16px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-sizing: border-box;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* ====== Logo del Hotel ====== */
#logoHotelHor {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

#logoHotelHor .logo-hotel {
  max-width: 375px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#logoHotelHor .logo-hotel:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


/* pequeño estilo del texto y del icono */
#teatroText { font-weight: 600; }
#shareIcon { cursor: pointer; font-size: 1.1rem; }

/* ====== Agenda ====== */
section.agenda-section {
  background-color: #8e8e8e;   /* gris claro */
  padding: 20px 1px;
  border-radius: 10px;
  max-width: 1350px;
  margin: 40px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section { padding: 40px 20px; }
.agenda {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
	
.modal-body .botones {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.modal-body .botones button,
.modal-body .botones a {
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.modal-body .botones button {
  background-color: #007BFF;
  color: #fff;
}

.modal-body .botones button:hover {
  background-color: #0056b3;
}

.modal-body .botones a {
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
}

.modal-body .botones a:hover {
  background-color: #1e7e34;
}

.descripcion-justificada {
  text-align: justify;
  line-height: 1.6;
  margin-top: 10px;
}


/* ====Modal Reseña==== */
#formReseña label {
  font-weight: 600;
  margin-top: 10px;
  color: #2E5A75;
}

#formReseña select,
#formReseña input,
#formReseña textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

.rating-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 0;
}

.rating-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-grow: 1;
}

.rating-options input[type="radio"] {
  accent-color: var(--b-blue);
  transform: scale(1.3);
}

.enviar-reseña-btn {
  margin-top: 20px;
  background: var(--b-dark-blue-gradient);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  font-weight: 600;
}

.enviar-reseña-btn:hover {
  background: var(--b-dark-blue-gradient-hover);
}

/* ===== Modal ===== */
.modal-reseña {
  display: none; /* <- oculto al cargar */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* Fondo semi-transparente */
}

.modal-reseña-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Botón cerrar (X) */
.modal-reseña-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-reseña-close:hover {
  color: var(--b-blue);
}




	
.evento {
  background: white;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.evento:hover { transform: translateY(-3px); }
.evento img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.evento h3 { font-size: 1.1em; margin: 8px; }
.fechaHora { font-size: 0.85em; margin: 8px; }
.descripcion { font-size: 0.85em; margin: 5px 8px; overflow: hidden; max-height: 3em; transition: max-height 0.5s ease; }
.links { margin: 5px 8px 10px; }
.links a { margin-right: 5px; text-decoration: none; color: #007BFF; font-size: 0.8em; }
.verMas { color: #007BFF; cursor: pointer; font-weight: bold; }
.no-events { text-align:center; color:#555; background:#fff; padding:20px; border-radius:10px; }

/* ====== Nuestros Escenarios ====== */
/* contenedor grid */
.escenarios-container {
  display: flex;                 /* cambiamos grid por flex */
  flex-wrap: wrap;               /* permite que las tarjetas bajen a la siguiente línea si no caben */
  justify-content: center;       /* centra horizontalmente */
  gap: 20px;                     /* espacio entre tarjetas */
  max-width: 1350px;
  margin: 0 auto;                /* centra el contenedor en la página */
  padding: 20px;
  box-sizing: border-box;
}

/* tarjeta escenario */
.escenario {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  cursor: pointer;
  width: 100%;
  max-width: 400px;            /* tamaño máximo visual */
  aspect-ratio: 16 / 9;        /* proporción estable */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.escenario:hover { transform: scale(1.03); }

/* imagen base que cubre */
.escenario .foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
  transition: transform 0.45s ease;
}



.escenario:hover .foto { transform: scale(1.05); }

/* logo ocupa misma área (tienen mismas dimensiones) */
.escenario .logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 300px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.5s ease;
  pointer-events: none;
}


/* ====== Responsive tweaks ====== */
@media (max-width: 768px) {
  .evento { width: 45%; }
  #headerImageContainer img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .evento { width: 90%; }
  #headerImageContainer img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}


/* Fondo completo de la sección */

.reseña-boton button {
  width: 75%;
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 25px;
  background: linear-gradient(135deg, #30a2bf, #2f5a76);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reseña-boton button:hover {
  background: linear-gradient(135deg, #268299, #26485e);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
}

.reseña-boton button:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

#reseñas {
  background-color: #2E5A75;
  padding: 20px 0;
  width: 100%;
}

/* Contenedor principal centrado y con flex */
.reseñas-inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; /* Forzar que en escritorio sea horizontal */
}

/* Columna 1/4: botón */
.reseña-boton {
  display: flex;
  flex-direction: column; /* logo arriba, botón abajo */
  align-items: center;    /* centrar horizontalmente */
  gap: 10px;              /* espacio entre logo y botón */
}

#logoHotel img {
  max-width: 75%;   /* no sobresalga del div */
  height: auto;
  filter: brightness(0) invert(1); /* convierte a blanco */
  align-content: center
}


/* Columna 3/4: contenedor de reseñas con scroll */
.reseña-lista {
  flex: 1 1 75%; /* ocupa el resto */
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 10px;
  background-color: #f5f5f5;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

/* Scroll personalizado */
.reseña-lista::-webkit-scrollbar {
  width: 8px;
}
.reseña-lista::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 4px;
}

/* Contenedor de las reseñas internas */
.reseñas-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Estilos individuales de cada reseña */
.reseña {
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  padding: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reseña h4 {
  margin: 0;
  font-size: 1em;
  font-weight: 600;
}

.reseña p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}

/* Responsive: en móviles apilamos verticalmente */
@media (max-width: 768px) {
  .reseñas-inner {
    flex-direction: column;
  }
  .reseña-boton, .reseña-lista {
    flex: 1 1 100%; /* ambas columnas ocupan 100% */
  }
  .reseña-lista {
    max-height: 300px; /* scroll más pequeño en móvil */
  }
}

/* Footer */
#footer {
  background-color: #384044;
  color: #fff;
  padding: 20px 0;
  width: 100%;
}

.footer-inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-logo img {
  max-height: 100px;
  filter: brightness(0) invert(1); /* logo blanco */
}

.footer-text {
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-text {
    text-align: center;
  }
}


	
/* ===== Modal de Escenarios ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

.modal-header {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.modal-header img {
  max-width: 180px;
  height: auto;
}

.modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-evento {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.modal-evento img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.modal-evento .info {
  padding: 10px;
  text-align: center;
}

.modal-evento .info h4 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.modal-evento .info p {
  margin: 5px 0 0;
  color: #555;
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #333;
}

/* Animación */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive: tipo "sheet" móvil */
@media (max-width: 600px) {
  .modal-content {
    width: 100%;
    border-radius: 12px 12px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    animation: slideUp 0.4s ease;
  }
}



/* ====== Responsive tweaks ====== */
@media (max-width: 768px) {
  .evento { width: 45%; }

  #headerImageContainer img { max-height: 250px; }
}
@media (max-width: 480px) {
  .evento { width: 90%; }

  #headerImageContainer img { max-height: 200px; }
}




/* ===== Song Request Section ===== */
.song-request-container {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 1/3 izquierda, 2/3 derecha */
  gap: 20px;
  align-items: start;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  max-width: 1350px;
  width: 100%; /* asegura ocupar todo el contenedor */
  margin: 40px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

/* Columna izquierda: imagen + botón */
.song-request-left {
  flex: 1 1 30%;
  display: flex;
  max-width: 400px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.song-request-left img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin-bottom: 15px;
  /*box-shadow: 0 4px 10px rgba(0,0,0,0.2); */
  object-fit: cover;
}

.song-request-left button {
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 25px;
  background: linear-gradient(135deg, #30a2bf, #2f5a76);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.song-request-left button:hover {
  background: linear-gradient(135deg, #268299, #26485e);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
}

.song-request-left button:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* Columna derecha: lista con scroll */
.song-request-right {
  flex: 2 1 70%;
  max-width: 800px;
  max-height: 400px;
  align-items: center;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

.song-request-right::-webkit-scrollbar {
  width: 8px;
}

.song-request-right::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}

.song-request-right .song-item {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1re
}

/* ===== Responsive (pantallas pequeñas) ===== */
@media (max-width: 900px) {
  .song-request-container {
    grid-template-columns: 1fr; /* una sola columna */
  }

  .song-request-left, 
  .song-request-right {
    max-width: 100%;
  }

  .song-request-right {
    max-height: none; /* para que no recorte en móvil */
  }

  .song-request-left img {
    max-width: 100%;
  }
}



/* ===== Musical Bingo Section ===== */
#musicalBingoSection {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: start;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  max-width: 1350px;
  width: 100%;
  margin: 40px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

#musicalBingoSection .song-request-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#musicalBingoSection .song-request-left img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin-bottom: 15px;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.2); */
  object-fit: cover;
}

#musicalBingoSection .song-request-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 800px;
  padding: 20px;
}

#musicalBingoSection .song-request-right h2 {
  margin-bottom: 20px;
}

#musicalBingoSection .song-request-right button {
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 25px;
  background: linear-gradient(135deg, #30a2bf, #2f5a76);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#musicalBingoSection .song-request-right button:hover {
  background: linear-gradient(135deg, #268299, #26485e);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
}

#musicalBingoSection .song-request-right button:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  #musicalBingoSection {
    grid-template-columns: 1fr;
  }

  #musicalBingoSection .song-request-left,
  #musicalBingoSection .song-request-right {
    max-width: 100%;
    text-align: center;
  }
}








