#coming_soon_main {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#coming_soon_main .logo {
  height: 250px;
  width: auto;
}

body {
  height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "EB Garamond", Helvetica, Arial, sans-serif;
}

p {
  font-family: "Open Sans", Arial, sans-serif;
}

a {
  text-decoration: none !important;
}

textarea {
  resize: none;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

#toTop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 13px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
#toTop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 640px) {
  #toTop {
    bottom: 6%;
  }
}
#toTop:hover, #toTop:focus-visible {
  background: #e11d48;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35);
}
#toTop:hover #toTopHover, #toTop:focus-visible #toTopHover {
  transform: translateY(-2px);
  filter: brightness(0) invert(1);
}

#toTopHover {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

#stickyContact {
  position: fixed;
  right: 12px;
  bottom: calc(72px + env(safe-area-inset-bottom));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 640px) {
  #stickyContact {
    bottom: calc(6% + 52px);
  }
}
#stickyContact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: scale 0.2s ease, box-shadow 0.2s ease;
}
#stickyContact a svg {
  width: 24px;
  height: 24px;
}
#stickyContact a:hover, #stickyContact a:focus-visible {
  scale: 1.1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

#stickyContactBook {
  color: #e11d48;
  text-shadow: 1px 1px #fff;
  animation: stickyContactPulse 2.6s ease-in-out infinite;
}

#stickyContactCall {
  color: #2563eb;
}

#stickyContactWhatsapp {
  color: #25d366;
}

@keyframes stickyContactPulse {
  0%, 24%, 46%, 100% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.12);
  }
  35% {
    transform: scale(1.18);
  }
}
img.lozad {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
img.lozad[data-loaded=true] {
  opacity: 1;
}

.home-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

@media screen and (max-width: 480px) {
  #stickyContact a {
    width: 40px;
  }
  #stickyContact a svg {
    width: 20px;
    height: 20px;
  }
}
/* Container rules */
.image-container {
  position: relative;
  overflow: hidden;
}

/* Base image adjustments */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents stretching */
}

.image-container .default-img {
  transition: opacity 0.5s ease; /* Creates the smooth transition */
}

/* Position the hover image exactly on top and hide it by default */
.image-container img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease; /* Creates the smooth transition */
}

/* Reveal the hover image when the user mouses over the container */
.image-container:hover .hover-img {
  opacity: 1;
}

.image-container:hover .default-img {
  opacity: 0;
}

/*# sourceMappingURL=main.css.map */