body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

/* SOLO formulario de cruceros */
.form-cotizacion {
  max-width: 420px;
  margin: 80px auto;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-cotizacion .form-top {
  text-align: center;
  margin-bottom: 20px;
}

.form-cotizacion .form-header {
  margin: 0 0 8px;
  color: #0f4ea8;
  font-size: 30px;
  font-weight: 700;
}

.form-cotizacion .form-text {
  margin: 0;
  font-size: 14px;
  color: #5b6575;
  line-height: 1.5;
}

.form-cotizacion .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-cotizacion .form-group-modern {
  margin-bottom: 16px;
}

.form-cotizacion label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #334155;
}

.form-cotizacion select,
.form-cotizacion input[type="number"] {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #334155;
  outline: none;
  box-sizing: border-box;
}

.form-cotizacion select:focus,
.form-cotizacion input[type="number"]:focus {
  border-color: #1d71b8;
  box-shadow: 0 0 0 3px rgba(29, 113, 184, 0.14);
}

.cantidad-box {
  border: 1px solid #d9e0e8;
  border-radius: 18px;
  background: #f8fafc;
  padding: 16px;
}

.cantidad-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.cantidad-head label {
  margin-bottom: 0;
}

.cantidad-max {
  font-size: 14px;
  color: #94a3b8;
}

.cantidad-selector {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 12px;
  align-items: center;
}

.cantidad-btn {
  width: 56px;
  height: 48px;
  border-radius: 14px;
  background-color: #1d71b8;
  color: white;
  font-size: 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 6px 14px rgba(29, 113, 184, 0.22);
}

.cantidad-btn:hover {
  background: #155a99;
  transform: translateY(-1px);
}

.cantidad-selector input[type="number"] {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  min-width: 0;
}

/* sacar flechas del input number */
.cantidad-selector input[type="number"]::-webkit-outer-spin-button,
.cantidad-selector input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cantidad-selector input[type="number"] {
  -moz-appearance: textfield;
}

.form-action {
  margin-top: 18px;
}

.form-action .btn-pink {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 999px;
  background: #1d71b8;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-action .btn-pink:hover {
  background: #155a99;
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .form-cotizacion .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}