/* --- FORMULARIO --- */
.bg-form-header {
  background-color: var(--custom-form-header-color);
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.bg-orange-header i {
  margin-right: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
  background: white;
}

.price-card {
  background-color: var(--custom-blue-dark);
  color: white;
  padding: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  min-width: 130px;
  text-align: center;
}

.price-label {
  padding-left: 15px;
  flex-grow: 1;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
}

/* EFECT PRICES */
.price-card-option {
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #fff;
  display: flex;
  align-items: stretch;
  padding: 0;
  position: relative;
}

.price-card-option.selected,
.price-card-option:has(input:checked) {
  border-color: #d42389;
  box-shadow: 0 4px 16px rgba(212, 35, 137, 0.10);
  background: #fdf3fa;
}

.price-card-option:hover {
  border-color: #d42389;
  box-shadow: 0 2px 12px rgba(212, 35, 137, 0.13);
  background: #f9e6f3;
}

.price-card-option input[type="radio"]:checked+.price-card,
.price-card-option.selected .price-card {
  background: #d42389;
  color: #fff;
}

.price-card-option .price-card {
  transition: background 0.2s, color 0.2s;
}


/* MENU HAMBURGUESA RESPONSIVE MEJORADO */
.hamburger.menu-open {
  display: none !important;
}

/* --- MENÚ HAMBURGUESA RESPONSIVE MEJORADO --- */