/************************************* FOOTER **************************************/
.footer{
    height: 100vh;
    padding: var(--header-height) 1rem;
    background-color: var(--negro);
}

.footer > .container{
    height: 100%;
    display: grid;
    grid-template-rows: 35% 50% 1fr;
    justify-items: center;
    align-items: center;
    column-gap: 1rem;
}

.footer-logo > .desktop-logo{
    display: none;
}

.footer-logo > a{
    display: block;
    text-align: center;
}

.footer-logo svg{
    fill: var(--blanco);
    width: 100%;
    max-width: 300px;
}

.footer-rrss{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
    align-items: stretch;
    row-gap: 1.5rem;
    column-gap: 1.5rem;
}

.footer-rrss a{
    display: inline-block;
    width: 50px;
}

.footer-rrss svg{
    fill: var(--blanco);
    width: 100%;
    max-width: 50px;
}

.copyright{
    width: 90%;
    border-top: thin solid var(--blanco);
    text-align: center;
}

.copyright p{
    margin: 0;
    padding: 0.2rem 0;
    font-weight: lighter;
}


@media screen and (min-width: 768px) {
    .footer{
        height: auto;
    }

    .footer > .container{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }

    .copyright{
        grid-column: span 2;
    }
}

@media screen and (min-width: 1024px) {
    .footer{
        padding: 1rem;
    }

    .footer > .container{
        row-gap: 2rem;
    }

    .footer-logo > .desktop-logo{
        display: inline-block;
    }
    
    .footer-logo > .mobile-logo{
        display: none;
    }

    .footer-rrss a{
        width: 40px;
    }

    .copyright{
        display: flex;
        justify-content: space-evenly;
    }
}