* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imagem-tela {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .imagem-tela {
    width: 35%;
  }
}

.botao-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0 40px 0;
  pointer-events: auto;
}

.botao-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  padding: 12px 24px;
  font-size: 1.2rem;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  pointer-events: auto;
  animation: pulsar 2.5s ease-in-out infinite;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.botao-link:hover {
  background-color: #1ebd5a;
}

.icone-whatsapp {
  width: 20px;
  height: 20px;
  fill: white;
}



