@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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Header */
body{
    overflow: hidden;
    background-color: #ffffff;
}
header{
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

/*Barra de Navegação*/

.navbar {
    background-color: #ffffff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 50px;
    z-index: 1000;
  }
  
  .logo img{
    width: 140px;
    position: relative;
    top: 12px;
    margin: 70px;
  }
  
  .nav-links-desktop {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 15px;
  }
  
  .nav-links-desktop li {
    padding: 10px;
    display: inline;
  }
  
  .nav-links-desktop a,
  .nav-links-mobile a {
    color: #555555;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    margin: 10px;
  }
  
  .nav-links-desktop a:hover {
    color: #FFD700;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 50px;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
    z-index: 1000;
  }
  
  .nav-links-mobile {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    width: 80%;
    list-style: none;
    padding: 0;
  }
  
  .nav-links-mobile li {
    border-bottom: 1px solid #555555;
    padding-bottom: 1.2rem;
  }
  
  .hamburger,
  .close {
    font-size: 24px;
    background: none;
    border: none;
    color: #555555;
    cursor: pointer;
    display: none;
  }
  
  .close {
    margin-top: 20px;
    margin-right: 20px;
    display: block;
    align-self: end;
  }
  
  .flex {
    display: flex;
  }

a.active{
    background: #14ff72cb;
    border-radius: 2px;
}

a.active:hover{
    color: #fff;
    transition: .3s;
}

/*Carousel do Body*/

.carousel{
    width: 100vw;
    height: 100vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
}

.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 45%;
}

.carousel .list .item:nth-child(4){
    left: calc(45% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(45% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(45% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(45% + 800px);
    opacity: 0;
}

/*fim do carousel*/

/*Conteudo e textos laterais*/

.list .item .content{
    position: absolute;
    top: 40%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    width: 200vh;
    justify-content: center;
    font-size: 60px;
    text-transform: uppercase;
    color: #ffd900;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    width: 100vh;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    margin-left: 5px;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: #FFD700;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/*fim do conteudo de texto e animações*/




/* setas passadoras do carousel */

.arrows{
    position: absolute;
    top: 72%;
    right: 55%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.8);
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffd900de;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.8);
}

.arrows button:hover{
    background: #fff;
    color: #000;
}

/*fim das setas*/

/* contador de tempo */
.carousel .timeRunning{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #FFD700;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    
    from{width: 0%;}
    to{width: 100%;}

}


/*fim do contador*/

/*botao whatsapp*/

.whatsapp{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}

.fa-whatsapp{
    margin-top: 16px;
}

/* habilitação da responsividade */

@media screen and (max-width: 999px){
    
    header{
        padding-left: 50px;
    }

    .list .item .content{
        left: 50px;
    }

    .content .title, .content .name{
        font-size: 70px;
    }

    .content .des{
        font-size: 16px;
    }

}

@media screen and (max-width: 775px) {
    header nav a{
    font-size: 14px;
    margin-right: 0;
    }

    .nav-links-desktop {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
}

@media screen and (max-width: 690px){
    .list .item .content{
        top: 30%;
    }

    .content .title, .content .name{
        font-size: 35px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 10px;
    }
    
}