@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
*{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
  }
body::-webkit-scrollbar-track{
    background: var(--color-black);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--yellow-color);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid var(--black-color);  /* creates padding around scroll thumb */
  }
body{
    overflow-x: hidden;
}
a{
    cursor: pointer;
}
.nav{
    height:98.49px ;
}
nav{
    background: var(--dark-blue);
    padding: 10px 0;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 10;
}
.nav-container{
    display: grid;
    grid-template-columns: 25% 65% 10%;
    justify-content: center;
    width: 100%;
    align-items: center;
}
.logo-nav{
    display: flex;
    justify-content: center;
}
.logo-nav img{
    width: 300px;
}
.button-container{
    width: 100%;
    display: flex;
    justify-content: center;
}
.button-nav{
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--color-white);
    width: 70%;
}
.button-nav a{
    margin: 0 15px;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    align-items: center;
    height: 15px;
    padding: 5px;
    color: var(--color-white);
    font-size: 15px;
}
.button-nav a:hover{
    transform: scale(1.1);
}
.redes{
    display: flex;
    justify-content: center;
    align-items: center;
}
.redes a{
    font-size: 25px;
    margin: 0 5px ;
    transition: 0.3s;
    color: var(--color-white);
}
.redes a:hover{
    transform: scale(1.1);
}
.bi-instagram,
.bi-whatsapp{
    transition: 0.5s;
}
.bi-instagram:hover{
    color: var(--color-purple);
}
.bi-whatsapp:hover{
    color: var(--color-green);
}



.hamburguer-container {
    width: 100%;
    display: flex;
    justify-content: end;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: 0 20px 0 0;
}
.button-menu{
    display: flex;
    flex-direction: column;
    padding: 30px;
    padding-bottom: 10px;
    margin-top: 10px;
}
.redes-menu{
    padding: 0 30px;

}
.redes-menu a{
    margin: 5px  ;
    font-size: 25px;
    color: var(--color-white);
}
.button-menu a{
    margin-top: 10px ;
    font-size: 17px;
    font-weight: bolder;
    color: var(--color-white);
    transition: 0.3s;
}
.button-menu a:hover{
    transform: scale(1.1);
}
.hamburger span {
    display: block;
    height: 4px;
    width: 30px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-mobile {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background: var(--dark-blue);
    width: 200px;
    display: flex;

    flex-direction: column;
    pointer-events: none;
    text-align: start;
    /* Impede interação enquanto o menu estiver fechado */
}

.menu-mobile.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    /* Permite interação quando o menu estiver aberto */
    box-shadow: -10px 0 100px var(--color-black);
    z-index: 150;

}

.menu-mobile a:last-child {
    border-bottom: none;
}

.menu-bar {
    width: 100%;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
}


.restricao-footer{
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--dark-blue);
    padding: 50px  0;
}

 footer{
    width: 1400px;
 }
 .footer-container{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    justify-items: end;
    color: var(--color-white);
 }
 .image-footer{
    justify-content: center;
    display: flex;
    flex-direction: column;
 }
 .image-footer img{
    width: 200px;
    width: 80%;
 }
 .contato-indi{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
 .contato-indi h1{
    font-size: 23px;
 }
 .contato-twk h1{
    font-size: 23px;
 }
 .contato-twk a{
    transition: 0.5s;
 }
 .contato-twk a i{
    transition: 0.5s;
 }
 .contato-twk a:hover{
    transform: scale(1.1);
 }
 #whats:hover{
   i{
    color: var(--color-green);
   }
 }
 #mail:hover{
    i{
        color: var(--color-blue);
    }
 }
 .contato-twk{
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
 }
 .parceiros{
    display: flex;
    flex-direction: column;
    align-items: center;
 }
 .parceiros h1{
    margin-bottom: 20px;
    background: var(--dark-more-blue);
    padding: 2px 10px;
    border-radius: 5px;
 }
.hexagono-parca {
    width: 100px;
    height: 86.6px;
    /* altura ≈ largura * √3 / 2 para hexágono regular */
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    clip-path: polygon(25% 0%, 75% 0%,
            100% 50%, 75% 100%,
            25% 100%, 0% 50%);
    margin: 50px 5px;
    
}

.hexagono-parca img {
    width: 80%;
}
.parceiro-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
#at3{
    margin-top: -20px;

}
#at3 img{
    width: 60%;
}
 .restricao-dev{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: var(--dark-more-blue);
 }
.footer-dev{
    display: flex;
    justify-content: center;
}
 .footer-dev img{
    width: 100px;
 }
 .footer-dev a{
    transition: 0.5s;
 }
 .footer-dev a:hover{
    transform: scale(1.1);
 }