/* =====================================
  ESTILOS - DONACIONES
   ===================================== */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fffdf6;
  color: #3b2f2f;
}

/* ===== INFO SUPERIOR ===== */
.info {
  background-color: #8b4513;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
}

/* ===== BANNER ===== */
.banner-donaciones {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.btn-donar {
  background-color: #ffcc00;
  color: #3b2f2f;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-donar:hover {
  background-color: #ffd84d;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}




/* ===== GALERÍA ANIMADA ===== */
.galeria-movil {
  overflow: hidden;
  background-color: #fffaf0;
  padding: 20px 0;
  position: relative;
}

.cinta {
  display: flex;
  width: max-content;
  animation: moverContinuo 40s linear infinite;
}

.grupo {
  display: flex;
  gap: 25px;
}

.cinta img {
  height: 180px;
  width: 280px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.cinta img:hover {
  transform: scale(1.05);
}

@keyframes moverContinuo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* ===== FORMAS DE DONAR ===== */

.donaciones1 {
    color: #ffffff;
}

.donaciones {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.donaciones-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.donacion-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.donacion-card:hover {
  transform: translateY(-5px);
}

.donacion-card i {
  color: #d4a373;
  font-size: 2rem;
  margin-bottom: 10px;
}







/* ===== TOP DONADORES ===== */
.top-donadores {      
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(60, 40, 10, 0.6));
  text-align: center;
  padding: 60px 20px;
}

.top-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.top-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  width: 260px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.top-card:hover {
  transform: scale(1.05);
}

.top-card.oro { border-top: 6px solid gold; }
.top-card.plata { border-top: 6px solid silver; }
.top-card.bronce { border-top: 6px solid #cd7f32; }

.puesto {
  font-size: 2rem;
  display: block;
}












/* ===== FORMULARIO ===== */
.form-donacion {
  background-color: #fdf4e3;
  text-align: center;
  padding: 60px 20px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

button {
  background-color: #ffcc00;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  color: #3b2f2f;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ffd84d;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #3b2f2f;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  background: #3b2f2f;
}

.footer-section {
  max-width: 300px;
  background: #3b2f2f;
}

.social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 0.9rem;
}