/* estilos.css */
#menu a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    transition: 0.3s;
  }
  
  #menu a:hover {
    background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  color: white;
  }

  /* Estilo para el título del mapa */
.titulo-mapa {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #dbdd55;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .titulo-reserva {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #4129ad;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .titulo-informacion {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #26cf51;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .titulo-precio {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ca1c1c;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .intro-gersson {
    background: linear-gradient(to right, #fceabb, #f8b500);
    padding: 25px;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #4a2c00;
    max-width: 800px;
    text-align: center;
  }
  
  .intro-gersson h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #d35400;
    text-shadow: 2px 2px #fff;
  }
  
  .intro-gersson p {
    font-size: 18px;
    line-height: 1.6;
  }

  .info-seccion {
    background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  color: white;
    border-left: 8px solid #2ecc71;
    padding: 20px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    color: #145a32;
    border-radius: 10px;
    max-width: 800px;
  }
  
  .info-seccion h2 {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 28px;
  }
  .reservas-seccion {
    background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  color: white;
    border-left: 8px solid #3498db;
    padding: 20px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    color: #0d47a1;
    border-radius: 10px;
    max-width: 800px;
  }
  
  .reservas-seccion h2 {
    color: #2980b9;
    margin-bottom: 10px;
    font-size: 28px;
  }
  .precios-seccion {
    background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
    color: white;
    border-left: 8px solid #e74c3c;
    padding: 20px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    color: #7b241c;
    border-radius: 10px;
    max-width: 800px;
  }
  
  .precios-seccion h2 {
    color: #c0392b;
    margin-bottom: 10px;
    font-size: 28px;
  }
      
  /* Estilos para el acordeón con imágenes */
.acordeon {
  width: 80%;
  margin: auto;
}

.acordeon-item {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.acordeon-imagen {
  width: 100%;
  cursor: pointer;
  display: block;
  transition: 0.3s ease;
}

.acordeon-imagen:hover {
  opacity: 0.85;
}

.contenido-acordeon {
  display: none;
  padding: 15px;
  background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  color: white;
  font-family: Arial, sans-serif;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
/* --- Menú desplegable lateral --- */
.menu-lateral {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100%;
  background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  color: white;
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.menu-lateral.abierto {
  left: 0;
}

/* Botón hamburguesa */
.boton-menu {
  position: fixed;
  top: 15px;
  left: 15px;
  background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  z-index: 1100;
  cursor: pointer;
}

.boton-menu:hover {
  background-color: #1e7e34;
}

.redes-sociales {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.redes-sociales img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #00bfff; /* Borde celeste vibrante */
  background-color: rgba(0, 0, 0, 0.3); /* Fondo semitransparente oscuro */
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.4); /* Sombra azul celeste */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.redes-sociales img:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 15px rgba(0, 191, 255, 0.7);
}
/* Estilo general */
body {
  background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  color: white;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

table.tabla-principal {
  width: 100%;
  border-collapse: collapse;
}

td, th {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
}

/* Encabezado */
.encabezado {
  position: relative;
  background: transparent;
  text-align: center;
}

/* Redes sociales en el banner */
.redes-sociales {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 10px;
}

.redes-sociales img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.redes-sociales img:hover {
  transform: scale(1.1);
}

/* Menú lateral tipo acordeón */
.menu-lateral {
  position: fixed;
  left: -250px;
  top: 0;
  width: 250px;
  height: 100%;
  background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);

  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

.menu-lateral.abierto {
  left: 0;
}

.boton-menu {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1100;
  background-color: #1f3c60;

  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

/* Pie de página */
.pie {
  background: linear-gradient(to bottom right, #0a1a2f, #123456, #1f3c60);
  color: white;
  text-align: center;
  font-size: 14px;
}

/* Contenido */
.intro-gersson {
  padding: 20px;
}

#menu a {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px 0;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

#menu a:hover {
  background: #1e7e34;
}