@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Anton', sans-serif;
}
section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(9, 27, 30);
    clip-path: circle(50% at bottom right);
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo{
    position: relative;
    max-width: 100px;
    

}
header .navegation ul{
    position: relative;
    display: flex;

}
header .navegation li{
    
    list-style: none;
}

header .navegation li a{
    opacity: 0.5;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    margin-left: 100px;
}
header .navegation li a:hover{
    opacity: 1;
}
.container{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container .text{
    position: relative;
    max-width: 600px;
    margin-right: 20px ;

}
.container .text h2{
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 8px;
    line-height: 2em;
    font-weight: 700;

}
.container .text h2 span{
    font-size: 2.5em;
    color: rgb(18, 52, 58);
}
.container .text p{
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Anton', sans-serif;
}
.container .text a{
    display: inline-block;
    margin-top: 50px;
    padding: 10px 25px;
    background:  rgb(18, 52, 58);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 40px;
    transition: 0.3s ease-in-out;
}
#destino {
    margin-top: 400px; /* Ajuste conforme necessário */
    color: #fff;
  }
.container .text a:hover{
    transform: translateY(-10px);
}
.icons{
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons li{
    list-style: none;
    
}
.icons li a{
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50% ;
    background: #222;
    margin-left: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    
}
.icons li a:hover{
    background: rgb(18, 52, 58) ;
    transform: translateY(-10px);
}

.icons li a img{
     transform: scale(0.25); 
     filter: invert(1);  
     max-width: 180px;
}
.boxImg{
    position: absolute ;
    right: -20px;
    bottom: 23px;
    
}
.boxImg img{
    width: 600px;
    
}
.boxImg .img1{
    transform: rotate(-15deg) scale(1);
    position: relative;
    left: 0;
    transition: left 0.3s ease;
    
}
.boxImg .img1:hover{
    transform:  rotate(-15deg) scale(1.1);
    left: 20px;
}
.circle2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(9, 27, 30);
    clip-path: circle(50% at top right);
}
.botao-topo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: rgb(18, 52, 58) ;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
  }
  form{
    margin: 6px;
    padding: 5px;
    color: #fff;
    text-shadow: 22,5px;
    text-align: center;
    background-color: #222;
    opacity: 90%;
    height: 40px;
  }
  footer{
    background-color: #222;
    color: rgb(0, 0, 0);
    height: 85px;
    text-align: center;
    background-image: url(images/gpu.webp);
    opacity: 90%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    

}