*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f2f2f2;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:100vh;
  padding:20px;
}

/* CONTAINER */
.container{
  width:100%;
  max-width:380px;
  position:relative;
}

/* IMAGEM */

.banner{
  width:100%;
  border-radius:18px;
  box-shadow:0 5px 20px rgba(0,0,0,0.25);
}

/* LINKS */
.links{
  position:absolute;
  bottom:7%;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

/* BOTÕES */
.links a{
  width:72%;
  text-align:center;
  padding:12px;
  border-radius:40px;
  text-decoration:none;
  font-family: 'Times New Roman', Times, serif;
  font-weight:300;
  font-size:clamp(16px, 4vw, 24px);

  background:#a4a3a7;
  color:white;

  transition:0.3s;
  box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

/* EFEITO HOVER */
.links a:hover{
  transform:scale(1.05);
  background:#c5c5c5;
}

/* RESPONSIVO */
@media(max-width:480px){

  .links{
    gap:12px;
    bottom:6%;
  }

  .links a{
    width:75%;
    padding:11px;
  }

  .whatsapp-float{
    width:58px;
    height:58px;
    line-height:58px;
    font-size:30px;
  }

}