/* Sección de Donaciones */
.donaciones {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #ffffff;
}

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

.btn-donacion {
    display: inline-block;
    margin: 1rem auto;
    padding: 0.8rem 1.5rem;
    background-color: #e91e63;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-donacion:hover {
    background-color: #d81b60;
}

.donacion-medios {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metodos-donacion {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 2rem;
}

.metodo {
    text-align: center;
    max-width: 150px;
}

.metodo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.metodo p {
    font-size: 0.9rem;
    color: #333;
}

/* Línea divisoria */
.donaciones hr {
    border: none;
    height: 2px;
    background: #e91e63;
    width: 80%;
    margin: 2rem auto;
}

/* Sección Misión */
.mision h3 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.mision h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.contenido-mision {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.columna {
    max-width: 400px;
    text-align: left;
}

.columna h4 {
    font-size: 1rem;
    color: #e91e63;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.columna p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Responsividad */
@media (max-width: 768px) {
    .metodos-donacion {
        flex-direction: column;
        gap: 1rem;
    }

    .contenido-mision {
        flex-direction: column;
        gap: 2rem;
    }

    .btn-donacion {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}


/* VIDEO */

.seccion-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4caf50;
    color: white;
    min-height: 50vh;
    text-align: center;
    padding: 40px;
}

.bloque-texto {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.video-embed {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border: none;
}

.boton-enlace {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2196f3;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.boton-enlace:hover {
    background-color: #1976d2;
}

@media (min-width: 768px) {
    .seccion-principal {
        flex-direction: row;
        text-align: left;
    }

    .bloque-texto {
        flex: 1;
        max-width: 50%;
    }

    .video-embed {
        flex: 1;
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }
}




/* DESARROLOO*/




.modulo-desarrollo {
    background-color: #f9f9f9;
    padding: 40px;
    text-align: center;
}

.modulo-desarrollo h2 {
    color: #2196f3;
    margin-bottom: 30px;
    font-size: 2rem;
}

.iconos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.icono {
    max-width: 150px;
    text-align: center;
}

.icono img {
    width: 100%;
    height: auto;
}

.icono p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .modulo-desarrollo h2 {
        font-size: 1.5rem;
    }

    .icono p {
        font-size: 0.8rem;
    }
}

