* {
  margin: 0;
  padding: 0;

}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.logo {
  font-size: 24px;* {
    margin: 0;
    padding: 0;
  
  }
  
  a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  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: #23232e;
    height: 8vh;
  }
  
  .slider {
    margin: 0 auto;
    width: 800px; 
    height: 800px;
    overflow: hidden;
    margin-top: 100px;
    border-radius: 2%;
   
    
  }
  
  .slides {
    width: 400%;
    height: 520px;
    display: flex;
    
  }
  
  .slides input {
    display: none;
  }
  
  .slide {
    width: 25%;
    position: relative;
    transition: 2s;
  }
  
  .slide img{
   width: 800px;
  }
  
  .manual-navigation {
    position: absolute;
    width: 800px;
    margin-top:  -40px;
    display: flex;
    justify-content: center;
  }
  
  .manual-btn {
    border: 2px solid white;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.7s;
  }
  
  .manual-btn:not(:last-child){
    margin-right: 40px;
  }
  
  .manual-btn:hover {
    background-color: white;
  }
  
  #radio1:checked ~ .first {
    margin-left: 0;
  }
  
  #radio2:checked ~ .first {
    margin-left: -25%;
  }
  
  #radio3:checked ~ .first {
    margin-left: -50%;
  }
  
  #radio4:checked ~ .first {
    margin-left: -75%;
  }
  
  .navigation-auto div{
    border: 2px solid #20a6ff;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }
  
  .navigation-auto {
    position: absolute;
    width: 800px;
    margin-top: 480px;
    display: flex;
    justify-content: center;
  }
  
  .navigation-auto div:not(:last-child) {
    margin-right: 40px;
  }
  
  #radio1:checked ~ .navigation-auto .auto-btn1{
    background-color: white;
  }
  
  #radio2:checked ~ .navigation-auto .auto-btn2{
    background-color: white;
  }
  
  #radio3:checked ~ .navigation-auto .auto-btn3{
    background-color: white;
  }
  
  #radio4:checked ~ .navigation-auto .auto-btn4{
    background-color: white;
  }
  
  main {
    background-size: cover;
    height: 92vh;
    
  }
  
  .nav-list {
    list-style: none;
    display: flex;
  }
  
  .nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
  }
  
  .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;
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      
      
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: #23232e;
      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);
  }
  
   /* Estilos para o rodapé */
   footer {
    background-color: #333; /* Cor de fundo do rodapé */
    color: #fff; /* Cor do texto no rodapé */
    padding: 20px; /* Espaçamento interno no rodapé */
    text-align: center; /* Alinhamento de texto ao centro */
    margin-top: 20px; /* Margem superior para separar o rodapé do conteúdo */
  }
  
  main {
    
    background-size: cover;
    height: 90vh;
  }
  .rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
  
  }
  
  /* Estilos para as redes sociais */
  .redes-sociais a {
    text-decoration: none;
    color: #fff; /* Cor dos ícones das redes sociais */
    margin: 0 10px; /* Espaçamento entre os ícones das redes sociais */
  }
  
  .redes-sociais a:hover {
    color: #f7b731; /* Cor dos ícones das redes sociais ao passar o mouse */
  }
  
  /* Estilos para o texto de direitos autorais */
  footer p {
    font-size: 14px; /* Tamanho da fonte do texto de direitos autorais */
    margin-top: 10px; /* Espaçamento superior */
  }
  
  /* Estilos para as redes sociais */
  .redes-sociais a {
    text-decoration: none;
    color: #fff; /* Cor dos ícones das redes sociais */
    margin: 0 10px; /* Espaçamento entre os ícones das redes sociais */
    transition: color 0.3s; /* Efeito de transição para a cor ao passar o mouse */
  
    /* Estilos para as imagens */
    display: inline-block;
    width: 30px; /* Largura das imagens */
    height: 30px; /* Altura das imagens */
  }
  
  .redes-sociais a img {
    width: 100%; /* Certifique-se de que a imagem preencha todo o espaço disponível */
    height: 100%; /* Certifique-se de que a imagem preencha todo o espaço disponível */
  }
  
  .redes-sociais a:hover {
    color: #f7b731; /* Cor dos ícones das redes sociais ao passar o mouse */
  }
  
  .hist {
  
    height: 0px;
    color: whitesmoke;
    font-family: OCR A Std, monospace;
    font-size: x-large;
    width: 1000px;
    padding-left: 36%;
    padding-top: 0%;
    margin-left: 3%;
    margin-top: 3%;
    text-transform: uppercase;
  
  }
  
  .hist2 {
    height: 0px;
    color: whitesmoke;
    font-family: OCR A Std, monospace;
    font-size: x-large;
    width: 1000px;
    padding-left: 36%;
    padding-top: 0%;
    margin-left: 3%;
    margin-top: 120px;
    text-transform: uppercase;
  
  }
    
  
  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: #23232e;
  height: 8vh;
}

.slider {
  margin: 0 auto;
  width: 800px; 
  height: 800px;
  overflow: hidden;
  margin-top: 100px;
  border-radius: 2%;
 
  
}

.slides {
  width: 400%;
  height: 520px;
  display: flex;
  
}

.slides input {
  display: none;
}

.slide {
  width: 25%;
  position: relative;
  transition: 2s;
}

.slide img{
 width: 800px;
}

.manual-navigation {
  position: absolute;
  width: 800px;
  margin-top:  -40px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.7s;
}

.manual-btn:not(:last-child){
  margin-right: 40px;
}

.manual-btn:hover {
  background-color: white;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -25%;
}

#radio3:checked ~ .first {
  margin-left: -50%;
}

#radio4:checked ~ .first {
  margin-left: -75%;
}

.navigation-auto div{
  border: 2px solid #20a6ff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.navigation-auto {
  position: absolute;
  width: 800px;
  margin-top: 480px;
  display: flex;
  justify-content: center;
}

.navigation-auto div:not(:last-child) {
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background-color: white;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
  background-color: white;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
  background-color: white;
}

#radio4:checked ~ .navigation-auto .auto-btn4{
  background-color: white;
}

main {
  background-size: cover;
  height: 92vh;
  
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
}

.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;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
  }
  .nav-list {
    position: absolute;
    top: 8vh;
    right: 0;
    width: 50vw;
    height: 92vh;
    background: #23232e;
    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);
}

 /* Estilos para o rodapé */
 footer {
  background-color: #333; /* Cor de fundo do rodapé */
  color: #fff; /* Cor do texto no rodapé */
  padding: 20px; /* Espaçamento interno no rodapé */
  text-align: center; /* Alinhamento de texto ao centro */
  margin-top: 20px; /* Margem superior para separar o rodapé do conteúdo */
}

main {
  
  background-size: cover;
  height: 90vh;
}
.rodape {
  display: flex;
  flex-direction: column;
  align-items: center;

}

/* Estilos para as redes sociais */
.redes-sociais a {
  text-decoration: none;
  color: #fff; /* Cor dos ícones das redes sociais */
  margin: 0 10px; /* Espaçamento entre os ícones das redes sociais */
}

.redes-sociais a:hover {
  color: #f7b731; /* Cor dos ícones das redes sociais ao passar o mouse */
}

/* Estilos para o texto de direitos autorais */
footer p {
  font-size: 14px; /* Tamanho da fonte do texto de direitos autorais */
  margin-top: 10px; /* Espaçamento superior */
}

/* Estilos para as redes sociais */
.redes-sociais a {
  text-decoration: none;
  color: #fff; /* Cor dos ícones das redes sociais */
  margin: 0 10px; /* Espaçamento entre os ícones das redes sociais */
  transition: color 0.3s; /* Efeito de transição para a cor ao passar o mouse */

  /* Estilos para as imagens */
  display: inline-block;
  width: 30px; /* Largura das imagens */
  height: 30px; /* Altura das imagens */
}

.redes-sociais a img {
  width: 100%; /* Certifique-se de que a imagem preencha todo o espaço disponível */
  height: 100%; /* Certifique-se de que a imagem preencha todo o espaço disponível */
}

.redes-sociais a:hover {
  color: #f7b731; /* Cor dos ícones das redes sociais ao passar o mouse */
}

.hist {

  height: 0px;
  color: whitesmoke;
  font-family: OCR A Std, monospace;
  font-size: x-large;
  width: 1000px;
  padding-left: 36%;
  padding-top: 0%;
  margin-left: 3%;
  margin-top: 3%;
  text-transform: uppercase;

}

.hist2 {
  height: 0px;
  color: whitesmoke;
  font-family: OCR A Std, monospace;
  font-size: x-large;
  width: 1000px;
  padding-left: 36%;
  padding-top: 0%;
  margin-left: 3%;
  margin-top: 120px;
  text-transform: uppercase;

}
  

