.footer {
    background-color: var(--negro);
    padding: 6rem 0 4rem;
    color: var(--blanco);
}

.footer__contenido {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
}

.footer__logo img {
    width: 16rem;
    margin-bottom: 1.5rem;
}

.footer__logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 30rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--amarillo);
}

.footer__redes {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer__redes a {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.footer__redes a:hover {
    background-color: var(--amarillo);
    color: var(--negro);
}