.contenido footer {
    margin-bottom: 60px;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 0px 20px;
    width: 90%;
}

.footer-left {
    display: flex;
    gap: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom:10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin:0px;
}

.footer-column li {
    margin-bottom: 4px;
}
.footer-column li:hover {
    text-decoration: underline;
}

.footer-column a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 15px;
}

.footer-column a:hover {
    color: white;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.footer-right img {
    width: 40px;
    height: 40px;
    filter: brightness(0.8);
    cursor: pointer;
    transition: 0.3s;
}

.footer-right img:hover {
    filter: brightness(1);
}

/* Parte de abajo del footer (legales) */
.footer-abajo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}
.footer-abajo .legales-links a {
    text-decoration: none;
    color: rgb(211, 211, 211);
    font-size: 15px;
    margin-right: 30px;
    cursor: pointer;
}
.footer-abajo .legales-links a:hover {
    text-decoration: underline;
    color: rgb(227, 227, 227);
}

.footer-abajo .logo-container img {
    width: 160px;
}

/* Contenedor footer (para cuando el footer ocupa el 100% de la pantalla  (como en mi cuenta, FAQ y planes)*/
.contenedor-footer {
    margin-bottom: 150px;
}

/* ---------------------- */
@media only screen and (min-width: 1600px) {
    .footer {
        margin-top: 80px;
    }
    
    .footer-left {
        display: flex;
        gap: 60px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom:12px;
    }
    
    .footer-column li {
        margin-bottom: 6px;
    }
    .footer-column li:hover {
        text-decoration: underline;
    }
    
    .footer-column a {
        color: #b3b3b3;
        text-decoration: none;
        font-size: 15px;
    }
    
    .footer-right {
        display: flex;
        gap: 20px;
    }
    
    .footer-right img {
        width: 40px;
        height: 40px;
        filter: brightness(0.8);
        cursor: pointer;
        transition: 0.3s;
    }
    
    
    /* Parte de abajo del footer (legales) */
    .footer-abajo .legales-links a {
        text-decoration: none;
        color: rgb(211, 211, 211);
        font-size: 16px;
        margin-right: 60px;
    }
    
    .footer-abajo .logo-container img {
        width: 180px;
    }
}