@import url(base.css);
.footer{
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    height: 350px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.footerlogo{
    height: 270px;
    width: 220px;
}
.footerlogo img{
    width: 100%;
    height: 100%;
}
.footerqr{
    height: 220px;
    width: 220px;
}
.footerqr img{
    width: 100%;
    height: 100%;
}
.redescuadros{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 25px;
    margin-bottom: 10px;
}
.redesbox{
    text-decoration: none;
    display: inline-block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #FFFBF5 1%, #E0CA50 20%, #A05F0D 50%, #5A2304 80%);
    border-radius: 10px;
    padding: 3px;
}
.segfooter{
    display: inline-block;
    background: linear-gradient(180deg, #FCE861 20%, #F0FFE6 30%, #D9C63B 40%, #923D00 50%, #EEC410 60%, #904300 90%);
    border-radius: 10px;
    padding: 8px;
}
.terfooter{
    display: inline-block;
    background: linear-gradient(180deg, #E19B07 20%, #ECD23D 25%, #9A661A 40%, #FFE57D 75%);
    border-radius: 10px;
    padding: 3px;
}
.fondofooter{
    display: inline-block;
    background: var(--negro);
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
}
.redesbox:hover .fondofooter{
    background: linear-gradient(180deg, #FFE962 20%, #FEFFE6 35%, #F7E104 50%, #CF9901 90%, #8A5200 98%);
    color: var(--negro);
}
.redesbox:hover i{
    color: var(--negro);
}
.redesbox i{
    font-size: 18px;
    transition: all 0.3s;
}
.redesletras{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.redesletras span:nth-child(1){
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
}
.redesletras span:nth-child(2){
    font-size: 14px;
    font-weight: 600;
}
@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .footer{
        padding: 20px;
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    .footerlogo{
        height: 200px;
        width: 150px;
    }
    .footerqr{
        height: 150px;
        width: 150px;
    }
}