/* ===============================
   DONACIONES Y ALIANZAS – ESTILOS
================================= */

.donaciones {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

/* Hero */
.hero-section {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 6rem 2rem;
  border-radius: var(--radio-borde, 12px);
  background: linear-gradient(
      rgba(14, 58, 93, 0.65),
      rgba(14, 58, 93, 0.65)
    ),
    url('../assets/img/donaciones.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-section .lead {
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 680px;
  line-height: 1.6;
  color: #f2f2f2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-section .btn {
  margin-top: 2rem;
  padding: 0.8rem 1.8rem;
  background-color: var(--color-acento, #ffd54f);
  color: #0e3a5d;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-section .btn:hover {
  background-color: #fbc02d;
}

/* Imagen por separado si decides no usar como background */
.hero-image {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem;
    background-position: center top;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }
}


/* Secciones generales */
section {
  margin-top: 3rem;
}

/* Lista de métodos de donación */
.donation-methods {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.donation-methods li {
  background: #fdfdfd;
  border-left: 5px solid #2e7d32;
  padding: 1.5rem;
  border-radius: 6px;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.donation-methods li:hover {
  transform: scale(1.02);
}

.donation-methods .icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-bottom: 0.75rem;
}

/* Padrinazgo */
.padrinazgo {
  background-color: #e3f2fd;
  padding: 2rem;
  border-left: 5px solid #1565c0;
  border-radius: 6px;
}

.padrinazgo .btn-secondary {
  margin-top: 1rem;
  background-color: #1565c0;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.padrinazgo .btn-secondary:hover {
  background-color: #0d47a1;
}

/* Alianzas */
.alianzas {
  background-color: #fffde7;
  padding: 2rem;
  border-left: 5px solid #fbc02d;
  border-radius: 6px;
}

.alianzas .btn {
  margin-top: 1rem;
}

/* CTA final */
.cta-donaciones {
  margin-top: 4rem;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #ffffff, 0 4px 12px rgba(0,0,0,0.08);
}

.cta-donaciones h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.cta-donaciones p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.cta-donaciones .btn-primary {
  background-color: #43a047;
  color: white;
  padding: 0.85rem 2rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-donaciones .btn-primary:hover {
  background-color: #2e7d32;
}

/* Botón genérico */
.btn {
  background-color: #388e3c;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #2e7d32;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .cta-donaciones h2 {
    font-size: 1.6rem;
  }

  .donation-methods {
    grid-template-columns: 1fr;
  }
}
