/* Container centralizado verticalmente */
.container {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 5;
}

/* Conteúdo abaixo da logo */
h1 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 600;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.subtitlesmall {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  bottom: 0;
  position: fixed;
}

button {
  background-color: #e66a1c;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 
    transform 0.1s ease-in-out, 
    background-color 0.3s ease, 
    box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Hover: animação e realce */
button.hovered  {
  background-color: #ff812b;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Active (clique): mantém a sombra menor */
button:active {
  transform: scale(0.97);
  background-color: #d4550e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Remove foco azul */
button:focus {
  outline: none;
}


/* Responsividade para telas maiores */
@media (min-width: 768px) {
  .logo {
    max-width: 500px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .subtitlesmall {
    font-size: 0.6rem;
  }

  button {
    font-size: 1.5rem;
    padding: 20px 40px;
  }

  .note {
    font-size: 0.95rem;
  }
}

#resultado {
  background-color: white;
  padding: 20px 20px;
  border-radius: 12px;
  visibility: hidden;
}