/* ===========================================================
   FOOTER 099
=========================================================== */

.footer099{
    background:#071426;
    color:#fff;
    padding:70px 0 35px;
    position:relative;
}

.footer099::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,#007bff,#25a9ff,#007bff);
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.footer-left{
    flex:1;
}

.footer-right{
    display:flex;
    justify-content:flex-end;
}

.footer099 h2{

    font-size:38px;
    line-height:1.25;
    font-weight:700;
    margin-bottom:22px;

}

.footer-phone{

    display:inline-block;
    color:#fff;
    font-size:44px;
    font-weight:800;
    text-decoration:none;
    margin-bottom:28px;
    transition:.25s;

}

.footer-phone:hover{

    color:#32A8FF;

}

.footer-social{

    display:flex;
    gap:12px;

}

.footer-social a{

    width:46px;
    height:46px;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.25s;

}

.footer-social a:hover{

    transform:translateY(-2px);

}

.footer-social img{

    width:42px;
    height:42px;

}

.footer-logo{

    width:150px;
    transition:.25s;

}

.footer-logo:hover{

    transform:translateY(-2px);

}

.footer-divider{

    margin:55px 0;
    height:1px;
    background:rgba(255,255,255,.08);

}


/* ==========================
        COLUMNAS
========================== */

.footer-menus{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:60px;

}

.footer-column{

    display:flex;
    flex-direction:column;

}

.footer-title{

    border:none;
    background:none;

    color:#fff;

    font-size:18px;
    font-weight:700;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0;

    margin-bottom:20px;

    cursor:pointer;

}

.footer-title span{

    display:none;

}

.footer-links{

    display:flex;
    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#C7D4E7;

    text-decoration:none;

    font-size:16px;

    transition:.25s;

}

.footer-links a:hover{

    color:#fff;
    padding-left:6px;

}

/* ==========================
         COPYRIGHT
========================== */

.footer-copy{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:55px;
    padding-top:28px;

    text-align:center;

    color:#8EA3BF;

    font-size:14px;

}


/* ===========================================================
                MOBILE
=========================================================== */

@media(max-width:991px){

.footer099{

padding:55px 0 25px;

}

.footer-top{

flex-direction:column;

text-align:center;

gap:35px;

}

.footer-right{

justify-content:center;

}

.footer099 h2{

font-size:30px;

}

.footer-phone{

font-size:36px;

}

.footer-social{

justify-content:center;

gap:10px;

}

.footer-logo{

width:145px;

margin-top:5px;

}

.footer-divider{

margin:40px 0;

}

.footer-menus{

display:block;

}

.footer-column{

border-bottom:1px solid rgba(255,255,255,.08);

padding:18px 0;

}

.footer-title{

width:100%;

font-size:20px;

font-weight:700;

margin:0;

}

.footer-title span{

display:block;

font-size:26px;

font-weight:300;

transition:.3s;

}

.footer-links{

display:flex;
flex-direction:column;

overflow:hidden;

max-height:none;

transition:max-height .35s ease;

padding-top:0;

}

.footer-links a{

font-size:17px;

padding:8px 0;

}


.footer-column.active .footer-title span{

transform:rotate(45deg);

}

}