@charset "UTF-8";

@font-face{
    font-family: 'Prata';
    src:url(../fontes/Prata/Prata-Regular.ttf) format('truetype');
    font-weight: normal;
}

@font-face{
    font-family: 'Inter';
    src: url(../fontes/Inter/Inter-VariableFont_slnt\,wght.ttf) format('truetype');
    font-weight: normal;
}

:root{
    --fonte-padrao: 'Inter', sans-serif;
    --fonte-destaque: 'Prata', serif;
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html,body{
    background-color: black;
    color: white;
}

a{
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

a:hover{
    opacity: 0.7;
}

.logo{
    font-family: var(--fonte-destaque);
    font-size: 1.2em;  
    font-weight: normal;  
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
    padding: 20px;
    font-family: var(--fonte-padrao);  
    background: black;  
}

.nav-list{
    list-style: none;
    display: flex;
}

.nav-list li{
    letter-spacing: 3px;
    margin-left: 30px;
}

.mobile-menu{
    display: none;
    cursor: pointer;
}

.mobile-menu div{
    width: 32px;
    height: 2px;
    background-color: white;
    margin: 8px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      display: none;
      position: absolute;
      top: 8vh;
      right: 0;
      width: 30vw;
      height: 80vh;
      background: rgb(90, 89, 89);
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
    }

    header ul#itens{
        display: none;
    }

    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }

    a#mobile-hide{
        display: none;
    }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }


main{
    padding: 20px;
}

#section1{
    font-family: var(--fonte-padrao);
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.87);
    max-width: 610px;
}

#section1 h1{
    font-family: var(--fonte-destaque);
    font-size: 2em;
    color: rgb(255, 255, 255);
    font-weight: normal;    
}

#section1 p{
    margin-top: 20px;
    line-height: 25px;
    font-weight: normal;
    font-size: 1em;
    padding-bottom: 25px;
}

#section2{
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: auto;
}

#section2 > img{
    width: 150px;
    height: 2em;    
}

#section3{    
    max-width: 100%;
}

#section3 div#spense{
    
    height: auto;     
    justify-content: right;
    padding-top: 40px;
}

#section3 div#spense > img{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

#section3 div#spense > a{
    font-family: var(--fonte-destaque);
    font-size: 2em;    
}

#section3 div#spense > p{
    font-family: var(--fonte-padrao);
    font-size: 1em;
    color: rgba(255, 255, 255, 0.87);
    font-weight: normal; 
    margin-top: 10px;   
    margin-bottom: 50px;
    line-height: 25px;
}

#section3 div#yelp{
    
    height: auto;      
}

#section3 div#yelp > img{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 25px;
}

#section3 div#yelp > a{
    font-family: var(--fonte-destaque);
    font-size: 2em;    
}

#section3 div#yelp > p{
    font-family: var(--fonte-padrao);
    font-size: 1em;
    color: rgba(255, 255, 255, 0.87);
    font-weight: normal; 
    margin-top: 10px;   
    margin-bottom: 50px;
    line-height: 25px;
}

#section4{
    background-color: rgb(90, 89, 89);
    margin-left: -20px;
    margin-right: -20px;      
}

#section4 h2{
    font-family: var(--fonte-destaque);
    font-size: 2em;
    padding-top: 40px;
    padding-left: 20px;
    padding-bottom: 10px;
    font-weight: normal;
}

#section4 p{
    font-family: var(--fonte-padrao);
    font-size: 1em;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.87);
    padding-left: 20px;
    padding-right: 20px;    
    line-height: 25px;        
}


#section4 p#dist-maior1{
    padding-bottom: 30px;
}

#section4 p#dist-maior2{
    padding-bottom: 50px;
}

#section5 > h2{
    font-family: var(--fonte-destaque);
    font-size: 2em;
    padding-top: 70px;    
    padding-bottom: 10px;
    font-weight: normal
}

#section5 > p{
    font-family: var(--fonte-padrao);
    font-size: 1em;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.87);
    padding-bottom: 20px;   
    line-height: 25px;
}

#section5 > a{
    display: block;
    background-color: rgb(235, 235, 31);
    color: black;
    font-family: var(--fonte-padrao);
    font-size: 1em;
    font-weight: normal;
    text-align: center;   
    width: 140px;
    height: 40px;
    padding-top: 10px;
    margin-bottom: 60px;     
}

footer{
    background-color: rgb(90, 89, 89);
    height: 8vh;
    width: 100vw; 
    display: flex;
    justify-content: space-between;  
    
}

footer > a{
    text-align: left;
    font-family: var(--fonte-destaque);
    font-size: 1em;
    font-weight: normal;
    margin-left: 20px;
    align-self: center;
}

footer > div#right{
    display: flex;
    gap: 7px;
    padding-right: 40px;
}

footer >div#right img{
    max-width: 100%;
    width: 1.5em;
    height: auto;
}

footer > div#right a{
    align-self: center;
}
    
