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

body {
  overflow-x: hidden;
  background: #f3f1f1;
  padding-bottom: 0;
}

.big-title {
  font-size: clamp(3.8rem, 11vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-bg {
  background-image:
    linear-gradient(rgba(0, 22, 18, 0.35), rgba(0, 22, 18, 0.35)),
    url('assets/ImageHome.png');

  background-size: cover;
  background-position: center;
}

.glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.nav-item {
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}

.nav-item:hover,
.nav-item.active {
  background: white;
  color: #0d0d0d;
}

.big-title {
  font-size: clamp(5rem, 15vw, 15rem);
  line-height: 0.78;
  letter-spacing: -0.08em;
}

@media (max-width: 768px) {
  .big-title {
    letter-spacing: -0.06em;
  }
}

/* animações */

[data-animate] {
  opacity: 0;
  translate: 0 35px;
  transition: opacity 0.8s ease, translate 0.8s ease;
}

[data-animate].show {
  opacity: 1;
  translate: 0 0;
}

img,
.glass,
a,
button {
  transition: all 0.35s ease;
}

img:hover {
  scale: 1.04;
}

.glass:hover {
  translate: 0 -8px;
}

a:hover,
button:hover {
  translate: 0 -3px;
}

.cards-floating {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cards-floating {
    transform: translateX(-50%) translateY(50%);
  }
}

.whatsapp-fixed {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  opacity: 1 !important;
  translate: 0 0 !important;
  transform: none;
  animation: whatsappSoft 2.6s ease-in-out infinite;
}

.whatsapp-fixed svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-fixed:hover {
  translate: 0 0 !important;
  transform: scale(1.06);
}

@keyframes whatsappSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .whatsapp-fixed {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-fixed svg {
    width: 30px;
    height: 30px;
  }
}