#s-banner {
    width: 100%;
    /* height: calc(100vh - 120px); */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 120px;
}

#s-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content-la-fundacion {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/img/paralax.jpg'); /* Usa tu imagen aquí */
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 60px 40px;
}

#info-fundacion {
    background-color: #ffffffc4;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: justify;
    border-radius: 10px;
}

#info-fundacion h2{
    font-size: 2rem;
    color: var(--rojo);
}

#info-fundacion p{
    font-size: 1.125rem;
    color: #343434;
}

#content-llegar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
    gap: 40px;
    flex-direction: column;
}

#content-llegar iframe {
    border-radius: 20px;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    #s-banner {
        height: 50vh;
    }

    #info-fundacion h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}