/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background-color: #c9f8e3;
  font-family: "Poppins", sans-serif;
  padding-bottom: 40px;
}

/* TÍTULO PRINCIPAL */
.titulo {
  background-color: #fffb0077;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(22, 22, 22, 0.589);
}

/* SUBTÍTULO */
.subtitulo {
  text-align: center;
  margin: 25px 10px 40px 10px;
  font-size: 26px;
  font-weight: 700;
  color: #0a2e1b;
}

/* CONTAINER DOS BOTÕES */
.botoes-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}

/* BOTÕES COM LOGO */
.botao-logo {
  width: 220px;
  height: 90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* EFEITO PROFISSIONAL */
.botao-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .titulo {
    font-size: 18px;
    padding: 18px;
  }

  .subtitulo {
    font-size: 22px;
    margin: 20px;
  }

  .botao-logo {
    width: 85%;
    max-width: 320px;
    height: 120px;
  }

  .botoes-container {
    gap: 25px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* Ícone */
.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

/* Efeito hover no ícone */
.whatsapp-float:hover img {
  transform: scale(1.1);
}

/* ------- TOOLTIP -------- */
.whatsapp-float::after {
  content: "Esta com duvida? Fale conosco";
  position: absolute;
  right: 75px; /* distância do ícone */
  bottom: 50%; 
  transform: translateY(50%);
  background: #25D366; /* cor do WhatsApp */
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

/* Mostrar ao passar o mouse */
.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateY(50%) translateX(-5px);
}

