/* Fondo general del sitio blanco */
body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

/* Sección de la reserva */
.reserva-section {
  padding: 4rem 1rem;
  background: #ffffff; /* ← Fondo blanco aquí */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor del formulario */
.reserva-contenido {
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(88, 22, 22, 0.76);
  font-family: 'Poppins', sans-serif;
}

/* Título del formulario */
.titulo-reserva {
  font-size: 2rem;
  color: #222;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Subtítulo */
.subtitulo-reserva {
  font-size: 1.6rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}

/* Campos del formulario */
.formulario-reserva .campo {
  margin-bottom: 1.5rem;
}

.formulario-reserva label {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.5rem;
}

.formulario-reserva input,
.formulario-reserva textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1.4rem;
}

/* Campos dobles en fila */
.campo-doble {
  display: flex;
  gap: 1rem;
}

.campo-doble .campo {
  flex: 1;
}

/* Botón de enviar */
.boton-reservar {
  width: 100%;
  padding: 1rem;
  background-color: #3bcc75;
  color: white;
  border: none;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.boton-reservar:hover {
  background-color: #2fae65;
}
