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

*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
   
}

:root{
    --green-color: #3cb815;
    --light-green-color: #c0eb7b;
    --orange-color: #ff7e00;
    --light-orange-color: #f75f1d;
    --text-color: #1a2428;
    --bg-color: #fff;
}
img{
    width: 100%;
}

/*header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    background: transparent;
    box-shadow: 0 8px 11px rgb(14 55 54 / 15%);
    padding: 20px 100px;
    transition: 0.5s;
    max-height: 150px;
}*/
.profile{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    cursor: pointer;
}
.profile img{
    width: 200px;
    object-fit: cover;
    object-position: center;
    
}
.profile span{
    font-size: 13px;
    font-weight: 500;
}
.logo{
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    column-gap: 0.5rem;
}
.logo .bx{
    font-size: 24px;
    color: var(--orange-color);
}
/*VIDEO*/
/* Estilo para o vídeo */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Isso garante que o vídeo preencha a div mantendo a proporção */
    z-index: -1;
   
  }
  .whatsapp{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    
}
.whatsapp img{
    width: 70px;
    border-radius: 50%;
    border: 3px solid #180F4A;
}
.movel{
    display: none;
}
.navbar {
    display: flex;
    column-gap: 0.5rem;
   
}
.navbar a {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem;
}
.navbar a:hover, .navbar .home-active{
    background: var(--green-color);
    border-radius: 5rem;
    color: #fff;
    transition: background 0.5s;
}

#menu-icon{
    font-size: 24px;
    cursor:pointer;
    z-index: 10001;  
    display: none;
}
/* section-box*/
section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}
.section-box{
    background-image: rgb(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(15px);
    border: 1px solid rgb(255, 255, 255, 0.2);
    box-shadow: inset 0 0 5px rgb(255, 255, 255, 0.2);
    border-radius: 30px;
    height: 85vh;
    width: 85%;
    overflow: hidden;
}
#hero .section-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 50%, rgb(0, 0, 0, 0.73));
    z-index: 1;
}

.content-wrap{
    padding: 20px 50px;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}
nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-items{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    text-decoration: none;
}
nav .active{
    color: #00ff00;
}
.nav-items::after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    box-shadow: 0 0 5px #fff;
    transform: scale(0);
    transform-origin: left;
    transition: 0.3s;
}
.nav-items:hover::after{
    transform: scale(1);
}
.active:hover::after{
    background-color: #00ff00;
    box-shadow: 0 0 5px #00ff00;
}
.hero-content h3{
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 50px;
    text-align: center;
    color: #fff;
}

.hero-content h1{
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 30px;
    text-transform: uppercase;
    margin-top: -10px;
    color: #fff;
}
.hero-content{

    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-img{
    width: 40%;
    margin-top: -150px;
    animation: planetAn 120s linear infinite;
}
.hero-btn{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    height: 45px;
    width: 220px;
    margin-top: -100px;
    z-index: 1;
    transition: 0.3s;
    color: #fff;
}
.hero-btn:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}
.internetInformacao{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    height: 45px;
    width: 220px;
    z-index: 1;
    transition: 0.3s;
    color: #fff;
}
.internetInformacao:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}
@media (max-height: 1100px) {
  .hero-content h1{
    font-size: 3rem;
  }
}
@media (max-height: 900px) {
  .hero-content h1{
    font-size: 1rem;
  }
}

@media (max-width: 852px){
   /* header {
        padding: 12px 4%;
    }*/
    #menu-icon{
        display: initial;
        margin-left: 3%;
    }
    .navbar{
        position: absolute;
        top: -570px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        box-shadow: 4px 4px 0 4px rgb(14 55 54 / 15%);
        transition: 0.2s all linear;
        text-align: left;
        border-radius: 10px;
     width: 100%;
    }
    .navbar a{
        padding: 0.7rem;
        margin: 0.3rem;
        display: block;
    }
    .navbar a:hover, .navbar .home-active{
        border-radius: 0.5rem;
        color: var(--bg-color);
    }
    .navbar.active{
        top: 90%;
        left: 0%;
    }
  
}
@media screen and (max-width: 800px) {
  .hero-content  .hero-img{
        display: none;
        background-color: #00ff00;
    }
    .section-box{
        display: flex;
        align-items: center;
           flex-direction: column;
    }
    .content-wrap{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    header{
    display: flex;
     flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.hero-content{
     display: flex;
     flex-direction: column;
        align-items: center;
        position: absolute;
        top: 570px;
}
.hero-content h3, .hero-content h1{
    display: none;
}
   
}