* {
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

.cabecalho {
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 5%;
    padding-bottom: 20px; /* Reduzi o espaçamento no cabeçalho */
}

.cabecalho img {
    width: 115px;
}

.formulario {
    width: 20%;            /* Ajustei a largura do formulário */
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #8a8a8a;    /* Adicionei uma borda para destacar o formulário */
    border-radius: 15px;
}

.formulario input {
    text-transform: uppercase;
}

.formulario div {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 900;
}

input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-top: 4px; /* Adicionei um pequeno espaçamento acima do input */
    border-radius: 5px;
}

.btnForm {
    display: flex;
    justify-content: center;
}

.btnForm button {
    margin-top: 20px;
    width: 150px;
    height: 40px;
    font-size: 18px; /* Reduzi um pouco o tamanho da fonte */
    font-weight: bold;
    background-color: #ab2222; /* Mantive a cor original */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

footer {
    bottom: 0;
    position: fixed;
    width: 100%;
    height: 20px; /* Aumentei a altura do rodapé para dar mais destaque */
    text-align: center;
    justify-content: center;
    background-color: #23232e; /* Ajustei a cor do rodapé */
    color: white;
    padding-top: 2px; /* Adicionei um espaçamento superior no rodapé */
    font-size: 10px;
}


  
  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;
  }
  

  
  .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;
    }
    .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);
  }