* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;

}

body {

   background-color: #ffffff;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

html {
  scroll-behavior: smooth;
}

.snap-section {
  scroll-snap-align: start;
}

.section.about,
.section-pilar,
#distribution,
#solutions-section,
#mark-details-section,
#why-us-section {
  min-height: 75vh;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;

  width: 58px;
  height: 58px;

  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,.25);

  z-index: 9999;

  transition: .25s;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

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

/* Esconde no desktop */
@media (min-width: 769px) {
  .whatsapp-float {
    display: none;
  }
}

.bg-alt {
  background-color: #EEF2F7;
}