.botao-chamativo {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    padding: 20px 30px;
    background-color: #2ecc71; /* Verde brilhante */
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-chamativo:hover {
    background-color: #27ae60;
    transform: scale(1.02);
}

.btn-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.btn {
  padding: 12px 28px;
  border: 3px solid #e63946; /* borda vermelha */
  background-color: transparent !important; /* fundo transparente */
  color: black; /* texto branco */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 12px; /* bordas arredondadas */
  cursor: pointer;
  text-decoration: none;
  flex: 1 1 160px;
  max-width: none;
  min-width: 160px;
  text-align: center;
  user-select: none;
}

.btn:hover {
  /* só muda o cursor, nada de animação */
  cursor: pointer;
}

@media (max-width: 480px) {
  .btn {
    flex: 1 1 100%;
    max-width: 100%;
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}