* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
}

header {
  margin-bottom: 30px;
}

.logo {
  width: 180px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.titulo {
  font-size: 3rem;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.frase {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 40px;
  max-width: 600px;
}

.vaga-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 25px 20px;
  width: 100%;
  max-width: 600px;
  text-align: left;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

.vaga-info h2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.vaga-info ul {
  list-style: none;
}

.vaga-info li {
  padding: 8px 0;
  font-size: 1rem;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vaga-info li:last-child {
  border-bottom: none;
}

#whatsapp-btn {
  display: none;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.5s ease;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  position: fixed;
  bottom: 40px;
  right: 40px;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.show-button {
  display: inline-block;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

