* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}



.booking-engine {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.booking-engine h2 {
  margin: 0;
  font-size: 28px;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.field input,
.field select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

#children-ages {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.child-age {
  flex: 1;
  min-width: 140px;
}

.cta {
  margin-top: 30px;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #0a7cff, #0056c7);
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,86,199,.35);
}

.trust {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}
.booking-engine {
  max-width: 920px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.booking-engine h2 {
  text-align: center;
  font-size: 30px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 35px;
}

/* FECHAS */
.date-range label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.date-fields {
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-fields input {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.arrow {
  font-size: 18px;
  color: #888;
}

/* GRID */
.engine-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.field label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.field select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* NIÑOS */
.children-box {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.child-age {
  background: #f7f9fb;
  padding: 14px;
  border-radius: 14px;
}

.child-age label {
  font-size: 14px;
  font-weight: 600;
}

.child-age select {
  margin-top: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/* CTA */
.cta {
  margin-top: 35px;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0a7cff, #004bb5);
  border: none;
  border-radius: 16px;
  cursor: pointer;
}

.cta:hover {
  box-shadow: 0 18px 40px rgba(0,75,181,.35);
  transform: translateY(-2px);
}

.trust {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.booking-note {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  padding-top:20px;
  padding-bottom:20px;
}