/* ====== Centro de Ayuda ====== */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
  padding: 50px 20px;
  background-color: #F1EFED; /* Fondo marfil suave */
  font-family: 'Montserrat', sans-serif;
}

/* Encabezado */
.ayuda-container h2 {
  color: #151515; /* gris carbón */
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

/* Formulario */
.ayuda-form {
  background-color: #ffffff;
  border: 3px solid #F37021; /* naranjo vibrante */
  border-radius: 18px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  padding: 35px;
  width: 100%;
  max-width: 600px;
  transition: transform 0.3s ease;
}

.ayuda-form:hover {
  transform: translateY(-3px);
}

.ayuda-form label {
  display: block;
  font-weight: 600;
  color: #151515;
  margin-top: 14px;
  margin-bottom: 4px;
}

.ayuda-form input,
.ayuda-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
}

.ayuda-form input:focus,
.ayuda-form textarea:focus {
  border-color: #F37021; /* borde naranja al enfocar */
  outline: none;
}

.ayuda-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botón principal */
.ayuda-form button {
  display: block;
  margin: 30px auto 0;
  background-color: #F37021;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ayuda-form button:hover {
  background-color: #d65f1d;
  transform: scale(1.03);
}

/* Mensajes */
.mensaje {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.exito {
  color: green;
}

.error {
  color: red;
}
