/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-image: url('https://i.gifer.com/5Btj.gif');
}

/* Menu principal */
.menu-container {
  position: relative;
}

.menu-button {
  position: fixed;
  top: 2%;
  left: 2%;
  height: 8%;

  cursor: pointer;
  animation: pulse 5s infinite ease-in-out;
}

.menu-options {
  display: none;
  position: fixed;
  top: 10%; 
  left: 5%;
  width: 100VH;
  max-height: 80vh; /* Limita a altura máxima a 80% da altura da viewport */
  overflow-y: auto; /* Habilita a barra de rolagem vertical quando necessário */
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 2%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000; 
}

.menu-options.visible {
  display: block;
  color: #b5f8b8;
}


.menu-options a {
  display: block;
  padding: 2%;
  font-size: 2vw;
  text-decoration: none;
  color: #b5f8b8;
}

.menu-options a:hover {
  background-color: #b6b16d;
}


/* Logo */
#logo {
  display: flex;
  margin-left: 45%;
  max-width: 15%;
  animation: pulse 5s infinite ease-in-out;
  cursor: pointer;
}

/* Rodapé fixo */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8%;
  background: #034b27;
  color: white;
  text-align: center;
  padding: 1%;
  z-index: 1000;
}
#foostertext {
  font-size: 12px;
  text-align: center;
  top: 0%;
}

#whatsapp {
  position: fixed;
  bottom: 15%;
  right: 1%;
  width: 80px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 1000;
}
#instagram {
  position: fixed;
  bottom: 30%;
  right: 0%;
  width: 60px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 1000;
}
#youtube {
  position: fixed;
  bottom: 15%;
  left: 0.2%;
  width: 90px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 1000;
}
#calcular {
  display: flex;
  margin-left: 30%;
  max-width: 50%;
  
  cursor: pointer;
  background-color: #ffcc00;
  color: #000;
  border: 5px solid #fa0303;
  border-radius: 30%;
  font-size: 2vw;
  font-weight: 700;
  padding: 2%;
  z-index: 1000;
  animation: tremendo 0.5s infinite;
}

@keyframes tremendo {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(2px);
  }
  40% {
    transform: translateX(-2px);
  }
  60% {
    transform: translateX(2px);
  }
  80% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
/* Animação */
@keyframes pulse {
  0% {
      transform: scale(1);
      color: #f6fa03;
  }
  33% {
      transform: scale(1.1);
      color: #0af81e;
  }
  66% {
      transform: scale(1.1);
      color: #0184ff;
  }
  100% {
      transform: scale(1.1);
      color: #e74c3c;
  }
}

/* Contêiner principal */
.content {
  display: flex;
  flex-direction: column;
  gap: 2%;
  justify-content: center;
  align-items: center;
  margin: 5% 20%;
  text-align: center;
  overflow-y: auto;
}

/* Itens */
.item {
  background-color: #000;
  color: white;
  border-radius: 30%;
  padding: 2%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 5px solid #ffcc00;
  margin-bottom: 15%;
}

.container-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 50%;
  border-radius: 30%;
  border: 5px solid #fa0b02;
  text-align: center;
  font-size: 2vw;
  margin-bottom: 20%;
}

.linhainput {
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  margin-top: 15%;
  gap: 1%;
  width: 80%;
  text-align: center;
  padding: 5%;
  border: 5px solid green;
  border-radius: 15%;

}
#imput {
  margin: 2% auto;
  width: 100%;
  text-align: center;

}

#remuneracao  {
  margin: 2% auto;
  width: 100%;
  text-align: center;
  padding: 2%;
  border: 5px solid green;
  border-radius: 15px;
  font-size: 4vh;
  font-weight: bold;
}

#horassemanais, #minutosnotrono {
  margin: 2% auto;
  width: 50%;
  text-align: center;
  padding: 2%;
  border: 5px solid green;
  border-radius: 15px;
  font-size: 4vh;
  font-weight: bold;
}


.description {
  margin: 3%;
  font-size: 4vh;
  text-align: center;
  font-weight: 700;
}

/* GIF do YouTube */
#youtubegif {
  width: 100%;
  height: 150px;
  border: 0.5vw solid #ff0000;
  border-radius: 5%;
  max-width: 100%;
}




.cagada-text {
  font-size: 4.2vh; /* Aumenta o tamanho da fonte */
  color: red; /* Define a cor como vermelho */
  font-weight: bold; /* Deixa o texto em negrito */
  display: inline-block; /* Necessário para a animação */
  animation: moveText 1s infinite alternate; /* Animação contínua */
}

@keyframes moveText {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px); /* Move 10px para a direita */
  }
  100% {
    transform: translateX(0); /* Retorna à posição original */
  }
  
}

@media screen and (max-width: 768px) {
  .item {
  margin-bottom: 5%  ;
  }
  #calcular {
    font-size: 4vw;
    margin: auto;
  }
}