/* Estilo general para la sección */
.donaciones-section {
  background: linear-gradient(to bottom right, #e6f0ff, #ffffff);
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

/* Contenedor central */
.donaciones-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Título */
.titulo {
  font-size: 32px;
  color: #1B2847;
  margin-bottom: 20px;
}

/* Descripción */
.descripcion {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

/* Botones de monto rápido */
.monto-opciones button {
  background-color: #1B2847;
  color: white;
  border: none;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.monto-opciones button:hover {
  background-color: #1B2847;
}

/* Formulario */
.donacion-formulario {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

/* Campos de entrada y select */
.donacion-formulario input,
.donacion-formulario select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Botón de enviar */
.donacion-formulario button[type="submit"] {
  background-color: #f4971e;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.donacion-formulario button[type="submit"]:hover {
  background-color: #f4971e;
}

/* Campos de tarjeta ocultos */
#tarjeta-campos {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Estilo para los campos de tarjeta */
#tarjeta-campos input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* Mensaje final */
.mensaje-final {
  margin-top: 30px;
  color: #444;
  font-style: italic;
}

/* Responsivo para móviles */
@media (max-width: 600px) {
  .donaciones-container {
    padding: 30px 20px;
  }

  .titulo {
    font-size: 24px;
  }

  .monto-opciones button {
    width: 100%;
  }
}

.btn-regresar {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #1B2847;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-regresar:hover {
  background-color: #1B2847;
}
