html {
    overflow: auto; /* Permite rolar */
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para Internet Explorer 10+ */
    font-family: 'Roboto', sans-serif;
}

html::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari e Edge */
}
body {
    background: #272727;
    display: flex; /* Ativa o layout flexível */
    flex-direction: column;
    align-items: start; 
    justify-content: flex-start; /* Alinha o conteúdo à esquerda */
    height: 125vh;
    margin: 0;
    overflow-x: hidden; 
    overflow-y: scroll; 
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para Internet Explorer 10+ */
    color: white;
    background: url('fundo-n.png') no-repeat center center fixed;
    background-size: cover; /* Faz a imagem cobrir todo o fundo */
}
.separador {
    height: 20vh;
}
header {
    padding: 20px;
    height: 60vh;
    color: white;
    font-size: 6vh;
}
.texty {
    height: 50%;
    padding: 20px;
    font-size: 3vh;
}

.use {
    display: inline; 
    white-space: nowrap; 
}

.rodape {
  background-color: #002d62; /* Cor do fundo */
  color: #ffffff; /* Cor do texto */
  font-family: 'Roboto', sans-serif;
  padding: 1px;
  display: flex;
  flex-wrap: wrap; /* Permite quebra de linha se necessário */
  justify-content: space-between; /* Espaçamento entre os itens */
  align-items: center; /* Alinhamento vertical */
  width: 100%; /* Garante que ocupe toda a largura */
  box-sizing: border-box; /* Inclui padding na largura */
}
.rodape div {
  text-align: center; /* Centraliza o conteúdo dentro de cada div */
  margin: 5px; /* Espaçamento entre os elementos */
  padding: 1vh;
}
.btn {
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 250px;
    cursor: pointer;
    border-radius: 10px;
  }
.btn-three {
    color: white;
    transition: all 0.5s;
    position: relative;
    border-radius: 10px;
  }
.btn-three:hover {
      color: white; /* Cor branca ao passar o mouse */
  }
  .btn-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.452);
    transition: all 0.3s;
    border-radius: 10px;
  }
  .btn-three:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
  }
  .btn-three::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.822);
    transform: scale(1.2,1.2);
    border-radius: 10px;
  }
  .btn-three:hover::after {
    opacity: 1;
    transform: scale(1,1);
  }