@import url("inicio.css");

/* ===== DONACIONES INFO ===== */
.donaciones-info {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.donaciones-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #e63946;
}
.donaciones-info ul {
  list-style: disc inside;
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.bloque {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.bloque h3 {
  margin-bottom: 0.5rem;
  color: #fc4a1a;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  background: #000;
  padding: 1rem;
  border-radius: 10px;
  max-width: 90%;
  width: 600px;
}

.modal-content video {
  width: 100%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.close:hover {
  color: #e63946;
}
