* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #060606;
  font-family: 'Lato', Arial, sans-serif;
}

.page {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 40px;
}

.logo-link {
  display: block;
  margin-bottom: 24px;
}

.logo {
  width: 128px;
  height: auto;
  display: block;
}

.banner-link {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  transition: transform 0.15s ease;
}

.banner-link:hover {
  transform: scale(1.01);
}

.banner {
  width: 100%;
  height: auto;
  display: block;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 508px;
  height: 85px;
  background-color: #0AA816;
  color: #FFFFFF;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-decoration: none;
  border-radius: 900px;
  margin-top: 8px;
  text-align: center;
  transition: background-color 0.15s ease;
}

.whatsapp-btn:hover {
  background-color: #19FFAF;
  color: #13016C;
}

.footer-text {
  color: #FFFFFF;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  margin-top: 32px;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .whatsapp-btn {
    height: 70px;
    font-size: 22px;
  }
}
