* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Glacial Indifference', 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    
}

body {
    background-color:  #fffaf0 ;
    color: #333;
    line-height: 1.6;
}
 
.container {
    max-width: 1200px;
}

/***** TITULO *****/
.white-strip {
  text-align: center;
  margin-top: px;
}

.white-strip h2 {
  text-align: center; 
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000; 
} 

.row {
    transition: all 0.4s ease;
}

/* Fila 1 - Hero Text */
.hero-text {
    text-align: justify;
    padding: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}
.algo{
    margin: 2%;
}
.hero-text h1 {
    font-weight: bold;
    margin-bottom: 40px;
}

/* Fila 2 - Imagen + Texto */
.row-2 {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.image-left {
    flex: 1;
    min-height: 300px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;   
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.text-right {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(20px);
    opacity: 0;
    animation: fadeInRight 0.8s 0.3s forwards;
}

.text-right h2 {
    color: #e4af2c;
    margin-bottom: 1rem; 
}

/* Fila 3 - Banner */
.initiative-banner {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.banner-title {
    font-size: 2.8rem;
    color: #e4af2c;
    display: inline-block;
    position: relative;
    padding: 0 2rem;
    animation: #e4af2c 6s infinite;
}

.banner-decoration {
    height: 3px;
    background: linear-gradient(90deg, transparent, #e4af2c, transparent);
    animation: expand 1.5s ease-out forwards;
}

/* Filas 4-6 - Iniciativas */
.initiative-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}



.initiative-text {
    flex: 2;
    padding-right: 0rem;
    margin-left: 20px;
    width: 60%;
    max-width: 1000px;

    
}
.initiative-text p{
    font-size: 1.5rem;
    text-align: justify;
}

.initiative-text h3 {
    color: #e4af2c;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    border-bottom: 3px solid #e4af2c; /* azul */
    padding-bottom: 4px;
    display: inline-block;
    margin-bottom: 20px;

}

.initiative-image {
    flex: 1;
    min-height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-loading {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease;
}


/* Animaciones */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes colorPulse {

    0%,
    100% {
        color: #2c3e50;
    }

    50% {
        color: #3498db;
    }
}

@keyframes expand {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Efecto de onda */
@keyframes wave {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
  /* Reducimos márgenes de la sección principal */
  .algo {
    margin: 4% 2%;
  }

  /* .container ocupa todo el ancho y centrado */
  .container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }

  /* Las filas de iniciativas siempre en columna, con gap pequeño */
  .initiative-row {
    flex-direction: column !important;
    padding: 1rem 0;
    gap: 1rem;
  }
  .initiative-text,
  .initiative-image {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* Ajustamos el texto para que no sea tan grande */
  .initiative-text p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .initiative-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  /* Que las imágenes ocupen todo el ancho disponible */
  .initiative-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }

  /* El título “ONG 3 ANGELS” centrado con menos margen arriba */
  .white-strip {
    margin-top: 1rem;
  }
  .white-strip h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  /* Reducimos padding de .row general para que quepa */
  .row {
    padding: 0.5rem 1rem;
  }

  /* Ejemplo de botón o enlace dentro de iniciativa-text (si lo hubiera) */
  .initiative-text a {
    font-size: 1rem;
  }
}