* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 20px;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 1100px;
}

.btn-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  transition: transform 0.15s ease;
}

.btn-img:hover {
  transform: scale(1.03);
}

/* efeito de pulsação do último botão ("Links que você quer!"),
   igual ao efeito "Floating Effects" do Happy Addons no site original:
   escala de 1x até 1.2x, 1s pra cada lado, em loop */
@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.btn-pulse {
  animation: btnPulse 2s ease-in-out infinite;
}

.btn-pulse:hover {
  animation-play-state: running;
}

/* botão "Laranjinha" feito em HTML/CSS (mesma cor/estilo do botão
   original, só que com o texto editável) */
.pulse-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 240px;
  height: 49px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cc9933 0%, #9d0a33 100%);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.pulse-btn .icon-circle {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 41px;
  height: 41px;
  min-width: 41px;
  border-radius: 50%;
  background: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.pulse-btn .btn-text {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.footer {
  color: #fff;
  font-size: 13px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

@media (max-width: 600px) {
  .btn-img {
    max-width: 200px;
  }
  .links {
    margin-bottom: 40px;
  }
}
