.banner-sugerencias {
  position: relative;
  width: 100%;
  height: 20vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.banner-sugerencias .banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-sugerencias .banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 15, 40, 0.6), rgba(0, 10, 25, 0.8)); /* 🔹 Gradiente más oscuro */
  backdrop-filter: blur(1px); /* 🔹 Suaviza un poco el fondo */
}


.banner-sugerencias .banner-content {
  position: absolute;
  z-index: 2;
  text-align: center;
}

.banner-sugerencias h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.banner-sugerencias p {
  font-size: 1.1rem;
  font-style: italic;
  color: #b6eaff;
}

/* ==============================
   🔹 FORMULARIO
   ============================== */
.formulario-sugerencias {
  background: #f7faff;
  padding: 60px 10%;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  text-align: left;
  font-weight: 600;
  color: #001f3f;
}

form input, form textarea {
  padding: 10px 14px;
  border: 2px solid #00ffff;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  resize: none;
}

form button {
  background-color: #001f3f;
  color: #00ffff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background-color: #00ffff;
  color: #001f3f;
}

#mensajeExito, #mensajeError {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1rem;
}

.oculto {
  display: none;
}
