/* The map remains visible in this proposal but cannot be interacted with. */
.visit-map iframe {
  pointer-events: none;
}

.whatsapp-float {
  bottom: calc(24px + 15mm);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

.whatsapp-float b {
  display: none;
}

@media (max-width: 800px) {
  .whatsapp-float {
    bottom: calc(17px + 15mm);
  }
}

/* A slow, subtle zoom gives the opening landscape a living quality. */
.hero-image {
  animation: hero-breath 16s ease-in-out infinite alternate;
}

@keyframes hero-breath {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }
}
