footer {
    background: var(--verdeOscuro600);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 
}



.footer-contenedor > svg {
    width: 70px;
}

.hr {
    width: 85vw;  
    height: 1px;
    background-color: var(--verdeClaroHover);
    margin: 1.5rem var(--margenDesktop);
}

.footer-contenedor {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: 75vw;  
    margin: 0 var(--margenDesktop);
}

.footer-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 1.1rem;
   
}
.footer-ul > a > svg {
    color: var(--bgPrincipal);
}

.footer-ul > li  {
    color: var(--bgPrincipal);
    width: auto;
    gap: .5rem;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    
}

.footer-ul > a > svg:hover {
    color: red;
}
.footer-ul > li > a > span {
    padding: 0 .5rem;
    filter: drop-shadow(1px 1px .5px black);
    -webkit-filter: drop-shadow(1px 1px .5px black);
}
.footer-ul > li > a:hover {
    filter: grayscale(10);
    color: rgb(219, 218, 218);
}
.footer-bottom-container {
    display: flex;
    width: 75vw;  
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-bottom-container > p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bgPrincipal);
    hyphens: none;
}
.redes-container  {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.redes-container > a {
    height: 24px;
    fill: var(--bgPrincipal);
    cursor: pointer;

}

.redes-container > a:hover {
    fill: var(--verdeClaroHover);
}
@media (max-width: 870px){
    .footer-contenedor > svg {
        width: 120px;
    }
    .footer-bottom-container,
    .footer-contenedor {
        width: 86vw;
        margin: 0;
    }
}

@media (max-width: 498px) {
    .footer-ul {
        flex-direction: column;
        align-items: flex-end;
        
    }
    .footer-ul > li {
        font-size: 1rem;
    }
    .footer-contenedor > svg {
        width: 100px;
    }
    .footer-bottom-container {
        flex-direction: column;
        margin: 0 3rem;
        text-align: center;
        
    }
    .footer-bottom-container > p {
        font-size: .8rem;
    }
    .footer-bottom-container {
        align-items: center;
    }
}