



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}


html {
    overflow-x: hidden; /* Remove o scroll horizontal */
    overflow-y: scroll; /* Garante que o scroll vertical esteja presente */
}

html::-webkit-scrollbar {
    width: 12px; /* Largura do scrollbar */
}

html::-webkit-scrollbar-track {
    background: #202020; /* Cor da trilha do scrollbar */
}

html::-webkit-scrollbar-thumb {
    background-color: #FF0077; /* Cor do polegar do scrollbar */
    border-radius: 20px; /* Borda arredondada do polegar */
    border: 3px solid #202020; /* Borda do polegar */
}

  
  a {
    color: #ff0000;
    text-decoration: none;
    transition: 0.5s;
  }
  
  a:hover {
    opacity: 0.7;
  }
  
  .logo {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    background: #000000;
    height: 10vh;
  }
  
  main {
    background: url("#") ;
    background-size: cover;
    height: 10vh;
    background-repeat: no-repeat; /* Impede que a imagem se repita */
    background-size: cover;
    background-position: center;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    z-index: 2;
  }
  
  .nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
        box-shadow: #ff0054;
   
  }
  
  .mobile-menu {
    display: none;
    cursor: pointer;

    
  }
  
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
    
 
  }
  
  @media (max-width: 999px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: #0c0c0c;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }
  }
  
  .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);
  }




section.slider{
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 0 in !important;
    overflow: hidden;
}

.slider-content{
    width: 400%;
    height: auto;
    display: flex;

}

.slider-content input, .img-mobile{
    display: none; 

}


.slide-box{
    width: 25%;
    height: auto;
    position: relative;
    text-align: center;
    transition: 1s;
}

.slide-box img{
    width: 100%;
}

.nav-manual, .nav-auto{
    position: absolute;
    width: 100%;
    margin-top: 35%;
    display: flex;
    justify-content:center ;
}

.nav-manual .manual-btn, .nav-auto div{
    border: 1px solid #ff0054;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 23px;
}

.nav-manual .manual-btn:not(:last-child), .nav-auto div:not(:last-child){
    margin-right: 10px;
}

.nav-manual .manual-btn:hover{
     background-color:#ff0054 ;
     
}

#radio1:checked ~ .nav-auto .auto-btn1 {
background-color:#ff0054 ;
}

#radio2:checked ~ .nav-auto .auto-btn2{
    background-color:#ff0054 ;
}

#radio3:checked ~ .nav-auto .auto-btn3{
    background-color:#ff0054 ;
}


#radio1:checked ~ .primeiro{
    margin-left: 0%;
}
#radio2:checked ~ .primeiro{
    margin-left: -25%;
}
#radio3:checked ~ .primeiro{
    margin-left: -50%;
}


body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('img/img.bannerindex/Night\ Sky\ Mountain\ Range.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: #f4f4f4;
}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');



* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1px;
}



.footer {
    background-color: #1a1a1a; /* Combina com o fundo escuro da página */
    color: #ffd700; /* Dourado para o texto */
    padding: 40px 20px;
    font-family: 'Outfit', sans-serif;
}

.footer-logo h3 {
    color: #ff4c4c; /* Tom quente de vermelho */
    font-family: 'Cinzel', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex-basis: 30%;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #ff0077;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p, .footer-section ul, .footer-section a {
    color: #f0e1d1;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: #00ffc8; /* Cor do link combina com os elementos já existentes */ /* Destaque ao passar o mouse */
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ff7b7b;
    margin-top: 20px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #ff7b7b;
}

.social-icons a:hover {
    color: #ff4c4c;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        flex-basis: 100%;
    }

    .social-icons a {
        margin-right: 10px;
    }
}


/* Responsividade */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        align-items: center;
    }

    .info-section .text,
    .info-section .image {
        width: 100%;
        text-align: center;
    }
}


