html {
  box-sizing: border-box;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: #000;

  display: flex;
  justify-content: center;
  align-items: center;

  height: 100%;
  overflow: hidden;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  box-sizing: border-box;
}

.logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 20px rgba(255, 0, 130, 0.4);
}

h1 {
  margin-bottom: 25px;
  font-size: 22px;
  color: #fff;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: block;
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  background: #fff;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.btn:hover {
  transform: scale(1.05);
  background: #ff007f;
  color: #fff;
  border-color: #ff007f;
}

.btn:active {
  transform: scale(0.97);
}

.destaque {
  background: #ff007f;
  color: #fff;
}

.destaque:hover {
  background: #e60073;
}

.whatsapp {
  background: #25D366;
  color: #fff;
}

.whatsapp:hover {
  background: #1ebe5d;
}

.disabled {
  background: #444;
  color: #aaa;
  pointer-events: none;
  opacity: 0.6;
}