/*Sección Footer Empieza*/
.footer{
    width: 100%;
    background: linear-gradient(0, #1d1d20, #1b1a29);
    display: flex;
    flex-direction: column;
    row-gap: .7rem;
}


.footer .socialRRSS{
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.footer .socialRRSS a{
    flex: 1 1 20rem;
    padding: .5rem 1rem;
    color: #5a6185;
    border: 1px solid #323549;
    font-size: .7rem;
    display: flex;
    border-radius: .7rem;
    background: #040320;
    align-items: center;
    gap: .5rem;
}
.footer .socialRRSS a:hover{
    background: #05042c;
    color: #8990b8;

}
.footer .socialRRSS a i{
    font-size: 1.5rem;
    color: #626a94;
    text-align: center;
}


.footer .derechos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.footer .derechos img{
    width: 2rem;
}
.footer .derechos a{
    color: #5a6185;
    font-size: clamp(.7rem, 2vw, 1rem);
}
.footer .derechos a:hover{
    color: #aaa;
}

.footer .legal{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: .5rem;
    margin-bottom: 3rem;
}
.footer .legal a{
    color: #5a6888;
    font-size: clamp(.7rem, 2vw, 1rem);
}
.footer .legal a:hover{
    color: #7285e4;
}

.footer .legal .setCookie{
    color: #7285e4;
    font-size: 1.3rem;
    cursor: pointer;
}
.footer .legal .setCookie:hover{
    rotate: 72deg;
    color: #c5cfd8;
}



/*Sección Footer Termina*/