

/* Menu principal */
.menu-container {
  position: fixed;
  top: 2%;
  left: 2%;
  z-index: 1000; /* Garante que o menu fique acima de outros elementos */
}

.menu-button {
  position: fixed;
  top: 2%;
  left: 2%;
  height: 8%;
  cursor: pointer;
  animation: pulse 5s infinite ease-in-out;
}

.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: block;
  max-width: 15%;
  margin: 0 auto; /* Centraliza o logo */
  animation: pulse 5s infinite ease-in-out;
  cursor: pointer;
}






/* Animação */
@keyframes pulse {
  0% {
    transform: scale(1);
    color: #f1f1eb;
  }
  33% {
    transform: scale(1.1);
    color: #f2f5f2;
  }
  66% {
    transform: scale(1.1);
    color: #f4f6f8;
  }
  100% {
    transform: scale(1.1);
    color: #f5f0ef;
  }
}

  /* Contêiner principal */
  .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 768px;
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 10px;
    text-align: center;
    overflow: hidden; /* Permite rolagem interna */
  }

/* Itens */
.item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #000;
  color: white;
  border-radius: 10px;
  padding: 10px; /* Reduz o padding */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 5px solid #ffcc00;
  width: 100%;
  max-width: 600px;
}

.container-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 30px;
  border: 3px solid #67da1b;
  text-align: center;
  font-size: 2vw;
}

.content-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0; /* Reduz as margens */
  width: 100%;
  border-radius: 30px;
  border: 4px solid #ff0000;
  background-color: #ff9090;
  color: #000;
  font-weight: bold;
  padding: 10px; /* Reduz o padding */
  justify-content: center;
  align-items: center;
  font-size: 2vh;
}

.content-row span {
  font-size: 4VH;
}

.input-config {
  display: flex;
  width: 100%;
  border-radius: 30px;
  border: 4px solid #00cc66;
  background-color: #e0dfd0;
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 4VH;
  font-weight: 900;
}

.input-config:hover {
  background-color: #c5872b;
}


#precificacao {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  font-size: 6VH;
  color: #ee1109 !important; /* Força a cor vermelha */
  animation: pulse 2s infinite ease-in-out;
}

.content-select {
  width: 96%;
  border-radius: 20px;
  background-color: #00cc66;
  color: #000;
  font-weight: bold;
  font-size: 24px;
  padding: 5px;
text-align: center;
  align-self: center;
  margin-top: 5%;
  margin-bottom: 5%;
  cursor: pointer;
  border: 4px solid #fa0b02;
}

.content-select:hover {
  background-color: #c5872b;
}

.description {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 4VH;

  font-weight: 700;
}

#youtubegif {
  max-width: 100%;
  max-height: 200px;
}
section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 300px;
  margin-bottom: 10%;
  width: 100%;
  text-align: center;
  overflow: auto;
}
/* Remova as propriedades color que estão em conflito */
/* Estilo base do botão */
.action-button {
  width: 100%;
  max-width: 300px; /* Limita a largura máxima */
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  background-color: #fc0909;
  border: 5px solid #ffffff;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  margin: 10px auto; /* Centraliza o botão */
  animation: pulse 5s infinite ease-in-out;
}

/* Estilo do botão no hover */
.action-button:hover {
  background-color: #7df506 !important; /* Cor de fundo no hover */
  color: #000000 !important; /* Cor do texto no hover */
}



/* Media Queries para smartphones */
/* Ajustes para dispositivos móveis */
@media screen and (max-width: 768px) {
 

  #main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alinha o conteúdo no topo */
    padding: 20px;
    box-sizing: border-box;
    overflow: auto; /* Permite rolagem interna */
    margin-top: 20px; /* Adiciona uma margem no topo para evitar que o conteúdo fique cortado */
  }

  .content {
    margin-left: 1%;
    margin-right: 1%;
  }

  .item {
    width: 99%;
    padding: 10px;
  }

  .input-config {
    font-size: 3vh;
  }

  .action-button {
    width: 80%;
    font-size: 4vw;
  }
  section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 300px;
    margin-bottom: 10%;
width: 768px;
    text-align: center;
    overflow: auto;
  }
  .content-row span {

    font-size: 20px;
  }
}