@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&display=swap');
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Noto Sans Georgian", serif;
    text-decoration: none;
}

:root{
    --main-color: #006dff;
    --second-color: #1689F9;
    --third-color: #505050;
    --fourth-color: #000;
    --fifth-color: #fff;
}


/*Header*/
header{
background: linear-gradient(to right, var(--main-color), var(--second-color));
display: flex;
flex-direction: row;
z-index: 100;
}

.logo{
    color: var(--fifth-color);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 30vw;
    justify-content: center;
}

.logo :nth-child(2){
    text-decoration: underline;
}
.menu{
    width: 70vw;
    margin-block: auto;
}
.menu ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    gap: 15px;

}
.menu ul li{
    list-style: none;
}
.menu ul li a{
    color: var(--fifth-color);
    font-weight: 700;
}
.menu-toggle {
    display: none; /* Escondido por padrão */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    transition:  0.3s ;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    transition:  0.3s linear;
    z-index: 100;
  }
  

.menu-toggle.active .bar:nth-child(1) {
 transform: translateY(8px) rotate(45deg); 
 }

.menu-toggle.active .bar:nth-child(2) {
 opacity: 0; 
}

.menu-toggle.active .bar:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}

  @media (max-width: 768px) {
    .menu {
      display: none; 
      width: 100%;
      background:linear-gradient(to right, #0B7CFC, var(--second-color));
      position: absolute;
      top: 0px;
      right: 0px;
      width: 50vw;
      z-index: 1;
      border-radius: 10px;
    }
    .logo{
        width: 50vw;
    }
    .menu ul {
      flex-direction: column;
      width: 100%;
      text-align: center;
    }
  
    .menu li {
      margin: 10px 0;
    }
  
    .menu-toggle {
      display: flex; 
      z-index: 10;
      position: absolute;
      top: 20px;
      right: 20px;
      transition: 0.3s;
    }
  
    .menu.active {
      display: block; 
    }
    .logo{
      margin-right: auto;
    }
  }

/*Main*/
@media(min-width:1024px)  {
    .values, .sobre, .atuação{
    width: 1044px;
    margin-inline: auto;
    }
    .banner{
        width: 100vw;
        margin-inline: 0px;
    }
}

.banner{
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 70vh;
}
.banner video{
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7;
}
.banner h1{
text-align: center;
color: var(--fifth-color);
margin-top: 15vh;
font-size: 3rem;
}
.banner p{
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    color: var(--fifth-color);
    font-size: 1.3rem;
    text-shadow: #505050 1px 1px 1px;

}
.atuação{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;

}
.atuação h2{
    width: 100vw;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px ;
}
.atuação img{
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px #505050;
}

.atuação img:hover{
    transform: scale(1.1);
}

.atuação div{
    border-radius: 20px;
    text-align: center;
    position: relative;
}
.atuação p{
    position: absolute;
    top: 50%;
    width: 100%;
    margin: auto;
    color: var(--fifth-color);
    font-size: 30px;
    text-shadow: 2px 2px 2px var(--third-color);
}
.sobre{
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    box-shadow: 1px 0px 10px;
}

.metanoeoSobre{
    width: 100vw;
    max-width: 520px;
}
.sobre div div{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.sobre div div div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}
.sobre div img{
    width: 40px;
    height: 40px;
    margin: auto 0;
}
.imgsobre{
    max-width:  450px;
}
.values{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: var(--main-color);
    height: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.values h2{
    width: 100vw;
    text-align: center;
    color: var(--fifth-color);
    font-size: 2rem;
}
.values div{
    width: 130px;
    height: 130px;
    border: 2px solid var(--fifth-color);
    border-radius: 10px;
}
.values h3{
    color: var(--fifth-color);
    text-align: center;
    height: 100%;
    margin: 50px 0px;
 
}
.clientes{
    overflow: hidden;
    white-space: nowrap;
    background-color:#d8d6d6;
    padding: 20px 0;
}
.clientes h2{
    text-align: center;
    color: var(--main-color);
    font-size: 2rem;
    
}
.clientesLogo{
    display: inline-block;
    animation: slider 35s linear infinite;
    vertical-align: middle;
    margin: 0px 0px;

}

.clientes div{
    width: 90%;

}
.clientesLogo img{
    width: 150px;
    margin: 0 11px;
    vertical-align: middle;
}


@keyframes slider{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
.whatsappButton{
    width: 80px;
    position: fixed;
    bottom: 30px;
    right: 30px;
}

@media(max-width:1024px){
    .sobre div, .sobre img{
        margin-inline: auto;
    }
}
@media(max-width:425px){
    .imgsobre{
        width: 400px;
    }
    .atuação h2, .sobre h2, .values h2{
        font-size: 1.5rem;

    }
    .banner h1{
        font-size: 1.5rem;
        width: 90vw;
    }
    .banner p{
        font-size: 1rem;
        width: 90vw;
    }
}
@media(max-width:375px){
    .imgsobre{
        width: 300px;
    }
    footer p{
        font-size: 90%;
    }
    footer div{
        width: 90vw;
    }
}
/*Footer*/
footer{
    background-color: #272727;
    padding-top: 10px;
}
footer div{
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: space-around;
 padding: 10px;
 align-items: flex-start;
}

footer div div{
 display: flex;
 flex-direction: column;
 max-width: 320px;
 margin-inline: auto;
}

footer img{
    width: 40px;
    margin: 0px 5px;
}
.social{
    display: inline;
    padding: 0px;
    margin: 15px auto;
}
.developed{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--fourth-color);
    width: 100%;
}
footer h2, footer p, footer a{
    color: var(--fifth-color);

}
footer h2{
    margin-bottom: 15px;
}
footer ul{
    list-style: none;
    text-decoration: none;
}
footer p {
    color: #fff;
    font-weight: 500;
}
footer p a{
    color: var(--fifth-color);
    font-weight: 500;
}
footer p a:hover{
    text-decoration: underline;
}
footer .logo{
    justify-content: flex-start;
}