﻿/* 
    SECCION DE INFORMACION

*/
.informacion {
    background-color: white;
}

.pasos {
    text-align: center;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
}

.paso {
    padding: 15px;
    border: 1px solid var(--brandGrey);
    border-radius: 20px;
    margin: 10px;
}

    .paso h5 {
        color: var(--brandSecondary);
        font-weight: bold;
    }

    .paso h4 {
        font-weight: bold;
    }

    .paso b {
        color: var(--brandGreen);
    }

    .paso img {
        height: 96px;
    }





/* 
    REQUISITOS

*/
.requisitos {
    margin: 0 auto;
    padding: 1.5rem;
}

    .requisitos h3 {
        text-align: center;
        color: var(--brandSecondary-darker);
        font-weight: bold;
    }

    .requisitos img {
        height: 24px;
        margin-right: 5px;
    }

.requisito {
    display: flex;
    align-items: flex-start;
    margin: 15px 0px;
}

    .requisito h5 {
        margin: 0 5px;
    }





/* 
    QUIENES SOMOS

*/
.quienes_somos {
    background-color: var(--brandSecondary);
    color: white;
}

    .quienes_somos h3 {
        font-weight: bold;
    }





/* 
    ACORDEON

*/
.more {
    height: 32px;
}

.motivos h5, .preguntas h5 {
    margin-top: 25px;
    font-weight: bold;
}

.fortaleza {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

    .fortaleza h6 {
        margin: 0 15px;
    }

    .fortaleza img {
        height: 50px
    }





/* 
    SECCION DE ASOCIADOS 

*/
.asociados {
    background: white;
}

.asociados_content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

    .asociados_content img {
        margin: 10px;
        height: 72px;
    }

#siteseal:hover {
    cursor: pointer;
}





/* 
    FOOTER

*/
footer {
    background-color: var(--brandPrimary);
    color: white;
}

.footer-logo {
    height: 84px;
}

footer a {
    color: white;
    text-decoration: none;
}

    footer a:hover {
        color: lightgray;
        text-decoration: none;
    }

.footer-section {
    font-size: 14px;
    padding-left: 15px;
}

.horarios {
    margin-top: 25px;
    padding-top: 10px;
    font-size: 14px;
    border-top: 1px solid white;
}

    .horarios p {
        margin: 5px;
    }



.back_to_top {
    background-color: var(--brandSecondary);
    border-radius: 50%;
    bottom: 1%;
    box-shadow: 1px 1px 2px 0px #191919;
    color: white;
    position: fixed;
    z-index: 10;
    display: none;
}

    .back_to_top img {
        width: 45px;
    }




/*
    MEDIA QUERIES
*/

@media (max-width: 500px) {
    .pago {
        height: 42px;
    }

    .periodicidad {
        padding-left: 16%;
    }
}

@media (max-width: 420px) {

    .periodicidad {
        padding-left: 0%;
    }
}

@media (max-width: 767px) {
    .pasos {
        grid-template-columns: 1fr;
    }

    .fortaleza {
        display: block;
        text-align: center;
    }

    footer {
        text-align: center;
    }

    .footer-section {
        padding-left: 0px;
    }
}



.in {
    animation: in 0.5s ease forwards;
}

.out {
    animation: out 1s ease-out forwards;
}


@keyframes in {
    0% {
        left: -1000px;
    }

    100% {
        left: 1%;
    }
}

@keyframes out {
    0% {
        left: 1%;
    }

    100% {
        left: -1000px;
    }
}