.footer {
    background: linear-gradient(180deg, #222 0.12%, #0E0E0E 103.29%);
}

.footer-contenido {
    padding: 4rem 0 0 0;
    display: grid;
    gap: 2rem;
}

.footer-logo {
    width: 20rem;
}

.footer-descripcion {
    color: #dedede;
    margin: 1.5rem 0 0 0;
    max-width: 40rem;
}

.footer-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blanco);
    margin: 0 0 2rem 0;
}

.footer__item {
    font-size: 1.6rem;
    color: #dedede;
    text-decoration: none;
    display: block;
    margin-top: 1.3rem;
}

.footer__item-icono {
    font-size: 1.6rem;
    color: #dedede;
    text-decoration: none;
    display: flex;
    margin-top: 1.3rem;
    gap: .8rem;

}

.footer-rs {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.footer-rs img {
    width: 3.5rem;
}

.footer-base {
    border-top: 1px solid #D1D1D1;
    margin-top: 3rem;
    text-align: center;
}

.footer-base p {
    color: #dedede;
    margin: 0;
    padding: 1.5rem 0;
}

.footer-base a {
    color: #E1B503;
    text-decoration: none;
}
@media (min-width: 768px) {

    .footer-contenido {
        grid-template-columns: 1.5fr 1fr;
    }
    
}
@media (min-width: 1024px) {

    .footer-contenido {
        grid-template-columns: 1.5fr .8fr 1fr 1fr;
        gap: 3rem;
    }
    .footer-base {
        margin-top: 4rem;
     
    }
    
}