body {
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

#miFormulario {
  background-color: #001f3f;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#miFormulario .campo-fecha {
  margin-bottom: 20px;
}

#miFormulario label {
  color: white;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

#miFormulario input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

#miFormulario button {
  background-color: #ff6b35;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin-left: auto;
  margin-top: 20px;
}

#miFormulario button:hover {
  background-color: #ff5722;
}

#miFormulario select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

#contenidoDinamico {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tarjeta-alojamiento {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.tarjeta-alojamiento:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.tarjeta-contenedor {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}

.tarjeta-imagen {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
}

.tarjeta-detalles {
  flex: 1;
}

.tarjeta-alojamiento h3 {
  margin: 0 0 10px 0;
  color: #001f3f;
  font-size: 20px;
}

.tarjeta-alojamiento p {
  margin: 8px 0;
  color: #333;
  font-size: 14px;
}

.tarjeta-alojamiento .costo-total {
  font-size: 16px;
  color: #ff6b35;
  font-weight: bold;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.contenedor-contacto {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contenedor-contacto h2 {
  color: #001f3f;
  margin-bottom: 10px;
  font-size: 24px;
}

.contenedor-contacto p {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.campo-contacto {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.campo-contacto label {
  color: #001f3f;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.campo-contacto input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

.campo-contacto input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

.btn-contacto {
  background-color: #ff6b35;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.btn-contacto:hover {
  background-color: #ff5722;
}

