@import url(base.css);
.footer{
    background-color: var(--azulMedio);
    padding: 40px;
}
.footerCont{
    max-width: 1200px;
    margin: auto;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
}
.footerLeft{
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    gap: 40px;
}
.footerLogo{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    gap: 40px;
}
.footerLogo img{
    width: 100%;
    height: 100%;
}
.footerLogoCircular{
    width: 80px;
    height: 80px;
}
.footerLogoLetras{
    height: 80px;
}
.footerLeft p{
    max-width: 537px;
    text-align: center;
}
.footerRedes{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    gap: 20px;
}
.footerRed{
    background-color: var(--azulOscuro);
    width: 40px;
    height: 40px;
    text-decoration: none;
    display: inline-block;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    border-radius: 100%;
    transition: all 0.3s ease;
}
.footerRed i{
    font-size: 20px;
    color: var(--blanco);
    transition: all 0.3s ease;
}
.footerRed:hover{
    background-color: var(--blanco);
}
.footerRed:hover i{
    color: var(--azulOscuro);
}
.footerRight{
    width: 200px;
}
.footerRight .footerNav{
    margin-bottom: 40px;
}
.footerRight ul{
    list-style: none;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	align-content: stretch;
    gap: 10px;
}
.footerRight ul li a{
    display: inline-block;
    text-decoration: none;
}
.activoFooter p{
    text-decoration: underline;
}
@media only screen and (min-width: 0px) and (max-width: 1200px){
    .footer{
        padding: 20px;
    }
    .footerCont{
        margin: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: stretch;
        gap: 20px;
    }
    .footerLeft{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: stretch;
        gap: 20px;
    }
    .footerRight{
        width: 100%;
    }
    .footerRight ul{
        list-style: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-content: flex-start;
        gap: 20px;
    }
    .footerRight .footerNav{
        margin-bottom: 20px;
        text-align: center;
    }
}