/* =========================
   PROGRAMA CONSENTIDO – HERO
   ========================= */
.consentido-hero, .consentido-section {
  max-width: 1200px; 
  width: 90%;        
  margin: 60px auto; 
  padding: 60px;     
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(227, 140, 160, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TITULOS HERO */
.consentido-hero h1 {
  font-size: 2rem;
  color: #e38ca0;
  text-align: center;
}

.consentido-hero h2 {
  font-size: 1.5rem;
  color: #e38ca0;
  text-align: left;
}
.consentido-hero h3 {
  color: #e38ca0;
}

.consentido-hero p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.estado-programa {
  font-weight: 500;
}

/* Botón hero */
a.btn-primary {
  background-color: #e38ca0;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
}

a.btn-primary:hover {
  background-color: #d2778f;
}

/* SECCIONES DEL PROGRAMA */
.consentido-section h2, .consentido-section h3 {
  font-size: 1.4rem;
  color: #e38ca0;
  margin-bottom: 10px;
}

.consentido-section p, .consentido-section ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.consentido-section ul {
  margin-left: 20px;
  list-style: disc;
}

/* FORMULARIO */
.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-btn {
  background-color: #e38ca0;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.form-btn:hover {
  background-color: #d2778f;
}

.form-message {
  font-size: 0.95rem;
  margin-top: 10px;
}

.form-legal {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .consentido-hero, .consentido-section {
    padding: 60px px;
    width: 95%;
  }
}

@media (max-width: 600px) {
  .consentido-hero, .consentido-section {
    padding: 20px;
  }

  .consentido-hero h1 {
    font-size: 1.8rem;
  }

  .consentido-hero h2 {
    font-size: 1.2rem;
  }

  .consentido-section h2, .consentido-section h3 {
    font-size: 1.1rem;
  }

  .form-input, .form-textarea {
    font-size: 0.95rem;
  }
}
