body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #121212;
  color: #fff;
}

/* Encabezado principal */
.header {
  background: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

.header-left {
  flex: 1;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.logo-img {
  height: 90px;
  max-width: 100%;
}

.letras-img {
  height: 60px;
  max-width: 100%;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  z-index: 1;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: #e63946;
}

/* Adaptabilidad móvil */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .header-left,
  .nav {
    flex: unset;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .header-center {
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .logo-img {
    height: 40px;
  }

  .letras-img {
    height: 30px;
  }

  .nav a {
    margin: 10px;
  }
}

.hero {
  background-image: url('../img/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Oscurece la imagen para legibilidad */
  z-index: 0;
}

.hero-texto {
  position: relative;
  z-index: 1;
}

.boton {
  padding: 10px 20px;
  background-color: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.seccion {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.producto {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  transition: transform 0.3s ease;
}

.producto:hover {
  transform: scale(1.05);
}

.producto img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.texto-nosotros {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
}

.contacto p {
  margin: 10px 0;
}

.redes img {
  width: 30px;
  margin: 10px;
}

.footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 60px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.call-link {
  color: #2ecc71;          /* verde elegante */
  text-align: center;
  display: block;          /* necesario para que el centrado funcione */
  font-weight: bold;
  text-decoration: none;   /* quita subrayado */
  margin-top: 1rem;
}

.call-link:hover {
  color: #27ae60;          /* verde más oscuro al pasar el mouse */
}

.btn-correo {
  display: inline-flex;
  align-items: center;
  background-color: #2ecc71;
  color: white;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
  gap: 0.5rem;
}

.btn-correo:hover {
  background-color: #27ae60;
}

.contenido-dos-columnas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Imagen lateral ocupa la mitad en pantallas grandes */
.imagen-lateral {
  flex: 1 1 45%;
  width: 100%;
  max-width: 60%;
  height: auto;
  border-radius: 12px;
}

/* Texto ocupa la otra mitad */
.texto-nosotros,
.texto-contacto {
  flex: 1 1 20%;
  font-size: 1.1rem;
  line-height: 1.2;
}

/* Estilos responsivos para móviles */
@media (max-width: 768px) {
  .contenido-dos-columnas {
    flex-direction: column;
    text-align: center;
  }

  .imagen-lateral {
    flex: none;
    width: 100%;
  }

  .texto-nosotros,
  .texto-contacto {
    flex: none;
    width: 100%;
    padding: 0 10px;
  }
}
#reservas form {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(30, 30, 30, 0.8); /* 80% opacidad */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#reservas label {
  text-align: left;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

#reservas input,
#reservas select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #474747;
  color: white;
}

#reservas input::placeholder,
#reservas select {
  color: #828282;
}

#reservas input:focus,
#reservas select:focus {
  outline: 2px solid #e63946;
  background-color: #2e2e2e;
}

#reservas button.boton {
  align-self: center;
  margin-top: 10px;
  cursor: pointer;
}

#mensaje-reserva {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}
#reservas {
  background-image: url('../img/reservas_bg.jpg'); /* Cambia el nombre si usas otra imagen */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  position: relative;
  color: white;
#reservas form,
#reservas label,
#reservas input,
#reservas select,
#reservas button,
#reservas h2 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);

}

#reservas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Capa oscura para contraste */
  z-index: 0;
}

#reservas h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#reservas form {
  animation: fadeSlideIn 1s ease-out;
}

