.footer__sep{
    margin-block-end:12px;
}

/*------------------------------------------
 footer
------------------------------------------*/
footer {
    /* color: var(--light-text-color); */
    color: var(--footer-text-color-2);
    display: grid;
    grid-template-columns: auto;
    
}

footer > div.grupo1 {
    min-height: 400px;
    padding:20px;
    padding-inline: 20px;
    
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    align-items: center;    
}

footer .footer__content{
    display:flex;
    flex-direction:column;
    justify-content:space-evenly;
    align-items:center;
    color: var(--footer-text-color-2);
}


footer > div > .footer--head {
    height:100px;
}








.footer_brand{
    font-size:var(--size-text-title);
    color:var(--light-text-color);
    font-weight: bold;
}

.footer_brand span{
    color:var(--accent-color);
}



/* --------------------------------
ESTADISTICAS
-------------------------------- */
.footer__estadisticas{
    background-color: var(--back-color-footer-light);
    text-align: center;
}


.footer__estadisticas img{
    width:47px;
    height:40px;
}

.footer__estadisticas p{
    text-align:center;
}



/* --------------------------------
CONTACTO
-------------------------------- */

.footer__contacto{
    padding-inline:20px;
    background-color: var(--back-color-footer-dark);
}



.footer__contacto img{
    width:24px;
    height:24px;
    margin-inline-end:10px;
}   

.footer__contacto button{
    width: 210px;
    height: 40px;
    background-color: var(--accent-color);
    font-size: var(--size-text-normal);
    font-weight: 500;
}




/* --------------------------------
EVENTOS
-------------------------------- */


.footer__eventos{
    background-color: var(--back-color-footer-light);
    padding-inline:20px;
    /* display:flex;
    flex-direction:column;
    justify-content:space-evenly;
    align-items:center; */

}

.footer__eventos  .footer__title{
    margin-block-end:25px;
}

.footer__eventos .footer__eventos--item{
    display:flex;
    flex-direction:row;
    margin-block-end: 32px;
    width: 100%;
}

.footer__eventos .footer__eventos--item > div{
    margin-inline-end: 10px;
}

.footer__eventos .footer__eventos--item > div:nth-of-type(2){
    width:100%;
}


.footer__eventos .footer__eventos--item img{
    width:75px;
    height:auto;
    /* height:100%; */
}




.footer__eventos--item--title{
    padding-block:5px;
    padding-inline:10px;
    background-color:var(--accent-color);
    color:var(--primary-text-color);
    font-size: var(--size-text-small);
    font-weight: bold;

    display: block;
    width:100%;

}

.footer__eventos--item--title a{
    padding-block:5px;
    padding-inline:10px;
    background-color:var(--accent-color);
    color:var(--primary-text-color);
    font-size: var(--size-text-small);
    font-weight: bold;
    text-decoration:none;
    cursor:pointer;
}

.footer__eventos--item--summary{
    color: var(--secondary-text-color);
    font-size:var(--size-text-secondary);
    font-weight: 500;
}

.footer__eventos--item--summary a{
    color: var(--secondary-text-color);
    font-size: var(--size-text-event-footer);
    /* font-weight: 500; */
    text-decoration: none;
    font-family: var(--font-secundaria);
}

.footer__eventos--item--date{
    color: var(--secondary-text-color);
    font-size:var(--size-text-secondary);
    font-weight: 300;
}

.footer__eventos--item--date a{
    color: var(--secondary-text-color);
    font-size:var(--size-text-secondary);
    font-weight: 300;
    text-decoration: none;
}




/* -------------------------
COPYRIGHT
------------------------- */

.footer__copy{
    background-color: var(--back-color-footer-dark);
    text-align: center;
    /* padding-block:25px; */
    padding-block:50px;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content:center;
    color:var(--secondary-text-color);
    padding-inline:20px;
}

.footer__copy .dev{
    color:var(--light-text-color);
}

.footer__copy > span{
    margin-block-end:12px;
}

footer .menu-large--bottom__logo{
    display:flex;
    flex-direction:row;
    color:#fff;
    justify-content: center;
}






@media only screen and (min-width: 1200px){

    footer  .menu-large--bottom__logo{
        justify-content:center;
    }    


    footer {
        grid-template-columns: 34% 33% 33% ;
        grid-template-rows: 550px 50px ;
        
    }    

    .footer__estadisticas{
        grid-area: 1/ 1 / span 1 / span 1;
        margin-block-start: 0px;
        background-color: var(--back-color-footer-light);
        /* padding-block-start: 50px; */
    }

    .footer__contacto{
        grid-area: 1/ 2 / span 1 / span 1;
        background-color: var(--back-color-footer-light);
        height: 100%;
        /* padding-block-start: 50px; */
    }

    .footer__eventos{
        grid-area: 1/ 3 / span 1 / span 1;
        background-color: var(--back-color-footer-light);
        padding-inline-end: 50px;
        /* padding-block-start: 50px; */
        height: auto;
    }

    .footer__copy{
        grid-area: 2/ 1 / span 1 / span 3;
        background-color: var(--back-color-footer-dark);
        padding-block: 50px;
    }

    .footer__eventos .footer__eventos--item img{
        /* width: 120px; */
        width: 80px;
        height: 80px;
        object-fit:cover;
    }
    
}