:root{
    --azul1 : #0179BB;
    --azul2 : #0677B8;
    --azulOscuro : #1C1E53;
    --amarillo : #F5CF59;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: 'Poppins', sans-serif;
}


footer{
    background-color: var(--amarillo);
    padding: 30px 0px;
}

.linea{
    border: 1px solid var(--azul2); /* Línea negra de 1 píxel */
    margin: 20px 10%; 
    width: 80%;
}

.informacionFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-left: 10%;
}

.logoFooter{

}

.imagenFooter{
    width: 250px;
}

.textoLogoFooter{
    color: var(--azul2);
    width: 80%;
}

.ubicacionesFooter{
    color: var(--azul2);
    font-weight: bold;
}

.linksFooter{
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: space-between;
    margin: 0 10%;
    align-items: center;
}

.redireccionesFooter{
    display: flex;
    justify-content: space-between;
    width: 65%;
}

.redireccionesFooter a{
    text-decoration: none;
    color: var(--azul2);
    font-weight: bold;
}

.derechos{
    color: var(--azul2);
    font-size: 10px;
}


@media (max-width: 1200px ){
    
    .linea{
        width: 90%;
        margin: 20px 5%; 
    }

    .informacionFooter{
        width: 90%;
        margin-left: 5%;
    }

    .linksFooter{
        width: 90%;
        margin: 0 5%;
        flex-direction: column;
    }

    .redireccionesFooter{
        width: 100%;
    }

    .derechos{
        margin-top: 15px;
        text-align: start;
        width: 100%;
    }

}


@media (max-width: 700px ){
    
    .redireccionesFooter{
        font-size: 14px;
    }

    .comerc{
        display: none;
    }

    .ubicacionesFooter{
        font-size: 15px;
    }

    .textoLogoFooter{
        font-size: 15px;
    }

    .imagenFooter{
        width: 200px;
        object-fit: contain;
    }
}



@media (max-width: 500px ){
    

    .informacionFooter{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .logoFooter{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 90%;
        gap: 10px;
    }
    
    .textoLogoFooter{
        width: 90%;
    }

    .ubicacionesFooter{
        width: 90%;
    }
    
    .inge{
        display: none;
    }

    .redireccionesFooter{
        width: 90%;
    }

    .derechos{
        width: 90%;
    }
}


@media (max-width: 400px ){
    .textoLogoFooter{
        font-size: 13px;
    }

    .ubicacionesFooter{
        font-size: 13px;
    }

    .redireccionesFooter{
        font-size: 13px;
    }

    .derechos{
        font-size: 9px;
    }
}

@media (max-width: 350px ){


    .logoFooter{
        width: 100%;
    }

    .redireccionesFooter{
        width: 100%;
    }

    .derechos{
        width: 100%;
    }

    .ubicacionesFooter{
        width: 100%;
    }


}