/* ==========================================================
   PORTAL DAS JORNADAS CIENTÍFICAS
   Universidade Jean Piaget de Angola
   Ficheiro: footer.css
   ========================================================== */

/*==========================================================
  FOOTER
==========================================================*/

.footer{

    background:var(--primary);

    color:#FFF;

    margin-top:80px;

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--gradient-gold);

}

/*==========================================================
  CONTAINER
==========================================================*/

.footer .container{

    padding:70px 15px 25px;

}

/*==========================================================
  TÍTULOS
==========================================================*/

.footer h4,
.footer h5{

    color:#FFF;

    margin-bottom:20px;

    font-family:var(--font-title);

}

.footer h5{

    position:relative;

    padding-bottom:10px;

}

.footer h5::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:45px;

    height:3px;

    background:var(--gold);

    border-radius:10px;

}

/*==========================================================
  TEXTO
==========================================================*/

.footer p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

}

/*==========================================================
  LINKS
==========================================================*/

.footer-links{

    margin:0;

    padding:0;

}

.footer-links li{

    list-style:none;

    margin-bottom:12px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

    padding-left:8px;

}

/*==========================================================
  CONTACTOS
==========================================================*/

.footer-contact{

    margin:0;

    padding:0;

}

.footer-contact li{

    list-style:none;

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

    color:rgba(255,255,255,.75);

}

.footer-contact i{

    color:var(--gold);

    font-size:1rem;

    margin-top:3px;

}

/*==========================================================
  REDES SOCIAIS
==========================================================*/

.social-links{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#FFF;

    transition:.3s;

}

.social-links a:hover{

    background:var(--gold);

    color:#FFF;

    transform:translateY(-4px);

}

.social-links i{

    font-size:1.15rem;

}

/*==========================================================
  LOGO
==========================================================*/

.footer img{

    max-width:90px;

    margin-bottom:20px;

}

/*==========================================================
  DIVISÃO
==========================================================*/

.footer hr{

    border-color:rgba(255,255,255,.08);

}

/*==========================================================
  COPYRIGHT
==========================================================*/

.footer .row:last-child{

    font-size:.95rem;

}

.footer .row:last-child p{

    margin:0;

}

.footer strong{

    color:var(--gold);

}

/*==========================================================
  RESPONSIVO
==========================================================*/

@media(max-width:992px){

    .footer{

        text-align:center;

    }

    .footer h5::after{

        left:50%;

        transform:translateX(-50%);

    }

    .footer-contact li{

        justify-content:center;

    }

    .social-links{

        justify-content:center;

    }

}

@media(max-width:768px){

    .footer .container{

        padding:60px 15px 20px;

    }

    .footer .row:last-child{

        text-align:center;

    }

    .footer .row:last-child .text-md-end{

        margin-top:15px;

        text-align:center!important;

    }

}

@media(max-width:576px){

    .footer{

        margin-top:50px;

    }

    .footer h4{

        font-size:1.4rem;

    }

    .footer h5{

        font-size:1.1rem;

    }

}