@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500;1,700&display=swap');

:root{
    --font:'Poppins', sans-serif;
    --Preto: #060506;
    --Preto-Claro:#3C3C3C;
    --Azul-Escuro: #023059;
    --Azul: #0568A6;
    --Azul-Ciano: #00b6ca;
    --Laranja-Claro: #DEA153;
    --Branco: #F5F5F5;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:var(--font);
}

html{
    scroll-behavior: smooth;
}

body{
    display: grid;
    min-height: 100vh;
    max-width: 100vw;
    grid-template-rows: 100px 14fr 80px;
    grid-template-areas:"header" "main" "footer";
    background-color: var(--Preto-Claro);
    color: #fff;
    position: relative;
    transition: .3s
}

/* HEADER */
header{
    grid-area: header;
    display: flex;
    width: 100%;
    height: 100px;
    background-color: var(--Azul-Escuro);
    box-shadow: 0px 0px 7px 3px #00000053;   
    position: fixed;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-header{
    width: 200px;
    padding: 0px 30px;
    cursor: pointer;
    transition: .4s ease-out;
    filter: drop-shadow(0px 1px 1px #00000000);
}

.logo-header:hover{
    transform: scale(1.02);
    filter: drop-shadow(0px 1px 1px #00b6ca);
}

.navMenu{
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    color: var(--Branco);
    font-size: 20px;
    font-weight: bold;   
    margin-right: 30px;
}

.nav-item{
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
    color: var(--Branco);
    position: relative;
    padding: 6px;
    transition: .4s ease-in-out;
}

.nav-item::after{
    content: " ";
    width: 0%;
    height: 4px;
    background: linear-gradient(45deg, transparent, var(--Azul-Ciano));
    position: absolute;
    left: 0;
    bottom: 3px;
    transition: .5s ease-in-out;
}

.nav-item:hover::after{
    width: 100%;
}

.hamburguer{
    display: none;
    margin-right: 50px;
    cursor: pointer;
}

.bar{
    margin-top: 8px;
    display: block;
    width: 45px;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    transition: .4s ease;
}

.hamburguer.mobile-active .bar:nth-child(1){
    transform:translateY(12px) rotate(45deg) ; 
}

.hamburguer.mobile-active .bar:nth-child(2){
    animation: hamburg .4s ease;
    opacity: 0;
}

.hamburguer.mobile-active .bar:nth-child(3){
    transform: translateY(-12px) rotate(-45deg);
}

@keyframes hamburg {
    0%{
        opacity: 1;
    }

    100%{
        width: 0;
        opacity: 0;
    }
}

.menu-mobile{
    position: absolute;
    width: 100%;
    background-color: var(--Azul-Escuro);
    height: 50vh;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    right: -100%;
    transition: .4s ease-in-out;
    top: 100px;
    padding-bottom: 8px;
}

.menu-mobile.active{
    right: 0;
}

.nav-item-mob{
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    color: var(--Branco);
    position: relative;
    padding: 6px;
    transition: .4s ease-in-out;
}

main{
    grid-area: main;
    height: 100%;
    width: 100%;
    z-index: 3;
}

/* FOOTER */
.footer{
    width: 100%;
    grid-area: footer;
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: space-around;
    background-color: var(--Azul-Escuro);
    color: white;
    box-shadow: 0px 0px 7px 3px #00000053;
    overflow: hidden ;
    gap: 10%;
    z-index: 1;
}

.footer-link{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.footer-link.img{
    justify-content: start;
}

.footer-link.sup{
    justify-content: flex-end;
}

.logo-footer{
    width: 80px;
    transition: .3s;
    margin-left: 8px;
    cursor: pointer;
}

.logo-footer:hover{
    transform: scale(1.05);
}

#direitos{
    margin: 0;
    font-size: 15px;
    font-weight: bold; 
    cursor: default;
}

.sup{
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-footer{
    text-decoration: none;
    color: white;
    transition: .3s ease-in;
}

.nav-footer:hover{
    color: #00b6ca;
}

#suport{
    font-size: 20px;
    padding-right: 30px;
    font-weight: bold; 
}

.bi-person-raised-hand{
    font-size: 20px;
}

.bi-instagram{
    font-size: 26px;
    border-radius: 5px;
    transition: .6s ease;
    color: white;
  
}

.bi-instagram:hover{
    transform: scale(1.06);
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#youtube-bi2{
    font-size: 30px;
    color: white;
    transition: .3s ease-in;
}

#youtube-bi2:hover{
    color:red;
    font-size: 28px;
}

.footer-link{
    width: 30%;
}

/* Criação do fundo slime*/


/* Criação do fundo slime*/

@media (max-width:785px) {
    .hamburguer{
        display: block;
    }

    .navMenu{
        display: none;
    }

    #direitos{
        display: none;
    }

    .menu-mobile{
        display: flex;
    }
    
}

@media (max-width: 450px){
    .logo-footer{
        width: 85px;
    }
}

@media (max-width:395px){
    .sup{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    #suport{
        padding-right: 9px;
        font-size: 15px;
    }

    #youtube-bi2{
        margin-left: 25px;
    }
    .logo-footer{
        width: 50px;
    }
}