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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #dfe3e8;
  color: #111111;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

#header,
#hero,
#about,
#destinations,
#units,
#experience,
#testimonials,
#contact,
#footer {
  width: 100%;
}

.floatingWhatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow:
    0 16px 34px rgba(37, 211, 102, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.floatingWhatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 20px 40px rgba(37, 211, 102, 0.34),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.floatingWhatsapp__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .floatingWhatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .floatingWhatsapp__icon {
    width: 28px;
    height: 28px;
  }
}