/*=========================================================
=                      FOOTER
=========================================================*/

.footer{

    position:relative;

    overflow:hidden;

    padding:65px 0 25px;

    background:
        linear-gradient(180deg,#0B1F45 0%,#081731 100%);

    color:#ffffff;

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(241,90,36,.08),
        transparent 40%);

    pointer-events:none;

}

.footer .container{

    position:relative;

    z-index:2;

}

/*=========================================================
=                      BRAND
=========================================================*/

.footer-brand{

    display:inline-block;

}

.footer-logo{

    max-width:195px;

    margin-bottom:18px;

    transition:.35s ease;

}

.footer-brand:hover .footer-logo{

    transform:scale(1.03);

}

.footer-text{

    color:rgba(255,255,255,.78);

    line-height:1.75;

    margin-bottom:22px;

    max-width:360px;

}

/*=========================================================
=                      TITLES
=========================================================*/

.footer h4{

    color:#ffffff;

    font-size:20px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:18px;

}

/*=========================================================
=                      LINKS
=========================================================*/

.footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer ul li{

    margin-bottom:10px;

}

.footer ul li:last-child{

    margin-bottom:0;

}

.footer ul li a{

    color:rgba(255,255,255,.78);

    text-decoration:none;

    transition:all .30s ease;

}

.footer ul li a:hover{

    color:#F15A24;

    padding-left:8px;

}

/*=========================================================
=                  CONTACT
=========================================================*/

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    color:rgba(255,255,255,.78);

}

.footer-contact i{

    width:18px;

    color:#F15A24;

    margin-top:4px;

    flex-shrink:0;

}

.footer-contact a{

    color:rgba(255,255,255,.78);

    text-decoration:none;

    transition:.30s ease;

}

.footer-contact a:hover{

    color:#F15A24;

}

.footer-contact span{

    color:rgba(255,255,255,.78);

    line-height:1.7;

}

/*=========================================================
=                  SOCIAL
=========================================================*/

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F15A24;

    color:#ffffff;

    border-radius:50%;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(241,90,36,.25);

    transition:all .35s ease;

}

.footer-social a:hover{

    background:#ffffff;

    color:#0B1F45;

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.20);

}

/*=========================================================
=                  COPYRIGHT
=========================================================*/

.footer hr{

    border-color:rgba(255,255,255,.12);

    margin:38px 0 18px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);

    font-size:15px;

    letter-spacing:.3px;

}

/*=========================================================
=                  BACK TO TOP
=========================================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:95px;

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0B1F45;

    color:#ffffff;

    text-decoration:none;

    font-size:18px;

    box-shadow:0 15px 30px rgba(0,0,0,.18);

    transition:all .35s ease;

    z-index:999;

}

#backToTop:hover{

    background:#F15A24;

    transform:translateY(-5px);

}

/*=========================================================
=                  WHATSAPP
=========================================================*/

#whatsappButton{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    font-size:30px;

    box-shadow:0 18px 35px rgba(37,211,102,.35);

    transition:.35s ease;

    z-index:1000;

}

#whatsappButton:hover{

    transform:translateY(-5px) scale(1.05);

}

.whatsapp-tooltip{

    position:absolute;

    right:72px;

    white-space:nowrap;

    background:#0B1F45;

    color:#ffffff;

    padding:10px 15px;

    border-radius:8px;

    font-size:14px;

    opacity:0;

    visibility:hidden;

    transition:.30s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}

#whatsappButton:hover .whatsapp-tooltip{

    opacity:1;

    visibility:visible;

}

/*=========================================================
=                  RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .footer{

        padding:45px 0 20px;

        text-align:center;

    }

    .footer-text{

        margin-left:auto;

        margin-right:auto;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-contact li{

        justify-content:center;

    }

}

@media(max-width:767px){

    .footer{

        padding:60px 0 25px;

    }

    .footer-logo{

        max-width:180px;

    }

    .footer h4{

        margin-top:15px;

    }

    #backToTop{

        width:46px;

        height:46px;

        right:15px;

        bottom:85px;

    }

    #whatsappButton{

        width:56px;

        height:56px;

        right:15px;

        bottom:15px;

        font-size:28px;

    }

    .whatsapp-tooltip{

        display:none;

    }

}