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

body {
  background: #040911;/* linear-gradient(145deg, #0f172a, #1e293b)*/
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}


/*
html {
  scroll-behavior: smooth;
}
*/

 @media screen and (min-width: 768px) and (max-width: 991px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
 }

.whatsapp-float {
  position: fixed;
  bottom: 20px; /* Mesmo que o .whatsapp-button */
  right: 20px;  /* Mesmo que o .whatsapp-button */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
}

/*
.notification-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid white;
}*/


/* Em telas pequenas, mostra só o ícone */
@media (max-width: 600px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
  }

  .whatsapp-icon {
    width: 25px;
    height: 25px;
  }

}

















