/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #1a1a1a, #000);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 500px;
  padding: 20px;
}

.logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.6);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffbf00;
}

p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ccc;
}

.btn-whatsapp {
  display: inline-block;
  background: #ffbf00;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.5);
}

.btn-whatsapp {
  display: inline-block;
  background: #ffbf00;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.5);
  margin-bottom: 60px; /* <<< espaço depois do botão */
}


footer {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}
