/*
=========================================
FOOTER
=========================================
*/

.footer{

    position:relative;

    background:#0F172A;

    color:#CBD5E1;

    padding:90px 0 30px;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(108,59,255,.08);

    top:-220px;

    right:-180px;

}

.footer::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(108,59,255,.05);

    left:-100px;

    bottom:-120px;

}

/*=========================================
LOGO
=========================================*/

.footer-brand{

    position:relative;

    z-index:2;

}

.footer-brand img{

    width:220px;

    margin-bottom:25px;

}

.footer-brand p{

    color:#94A3B8;

    line-height:1.9;

    margin-bottom:30px;

}

/*=========================================
SOCIALES
=========================================*/

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.06);

    color:#FFF;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

/*=========================================
COLUMNAS
=========================================*/

.footer-links,
.footer-contact{

    position:relative;

    z-index:2;

}

.footer-links h4,
.footer-contact h4{

    color:#FFF;

    margin-bottom:25px;

    font-size:22px;

}

.footer-links ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#94A3B8;

    text-decoration:none;

    transition:.30s;

}

.footer-links a:hover{

    color:#FFF;

    padding-left:8px;

}

/*=========================================
CONTACTO
=========================================*/

.footer-contact p{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#94A3B8;

    margin-bottom:18px;

    line-height:1.8;

}

.footer-contact i{

    color:var(--secondary);

    margin-top:5px;

}

.footer-contact a{

    color:#94A3B8;

    text-decoration:none;

    transition:.3s;

}

.footer-contact a:hover{

    color:#FFF;

}

/*=========================================
BOTTOM
=========================================*/

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    margin:0;

    color:#94A3B8;

    font-size:15px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .footer{

        padding:70px 0 30px;

    }

    .footer-brand{

        margin-bottom:35px;

    }

}

@media(max-width:767px){

    .footer{

        text-align:center;

    }

    .footer-social{

        justify-content:center;

        margin-bottom:30px;

    }

    .footer-contact p{

        justify-content:center;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}