html {
  scroll-behavior: smooth;
}
/* Contenedor (ajusta posición a tu layout) */
.scroll-mouse {
  position: absolute; /* cámbialo a fixed si quieres que siempre esté visible */
  left: 50%;
  bottom: 24px; /* separación del borde inferior */
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 10px;
  pointer-events: none; /* que no bloquee clics debajo */
  z-index: 40;
}

/* Mouse */
.scroll-mouse .mouse {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
  backdrop-filter: blur(0); /* seguro en navegadores modernos */
}

/* Ruedita que baja y se desvanece */
.scroll-mouse .wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  15% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translate(-50%, 14px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

/* Chevrons (flechitas) que sugieren desplazamiento */
.scroll-mouse .chevrons {
  display: grid;
  gap: 4px;
}

.scroll-mouse .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  animation: chev 1.8s ease-in-out infinite;
  opacity: 0;
}

.scroll-mouse .chev:nth-child(1) {
  animation-delay: 0s;
}
.scroll-mouse .chev:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-mouse .chev:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chev {
  0% {
    transform: translateY(-2px) rotate(45deg);
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  60% {
    transform: translateY(4px) rotate(45deg);
    opacity: 0.9;
  }
  100% {
    transform: translateY(8px) rotate(45deg);
    opacity: 0;
  }
}

/* Variante para fondos claros (opcional) */
.light .scroll-mouse .mouse {
  border-color: rgba(0, 0, 0, 0.6);
}
.light .scroll-mouse .wheel {
  background: rgba(0, 0, 0, 0.9);
}
.light .scroll-mouse .chev {
  border-color: rgba(0, 0, 0, 0.7);
}

/* Mouse con destello */
.scroll-mouse .mouse {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4),
    /* brillo exterior */ 0 0 0 1px rgba(0, 0, 0, 0.15) inset; /* sombra interior */
  backdrop-filter: blur(0);
  animation: mouse-glow 1s ease-in-out infinite alternate;
}

/* Animación del destello */
@keyframes mouse-glow {
  0% {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4),
      0 0 0 1px rgba(0, 0, 0, 0.15) inset;
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9),
      0 0 0 1px rgba(0, 0, 0, 0.15) inset;
  }
}

.service-card:hover .border-t-4 {
  border-color: #203a56 !important; /* Cambia el borde a Azul Marino */
}

.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-style: normal;
}

.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-opensans {
  font-family: "Open Sans", sans-serif;
}
.font-lato {
  font-family: "Lato", sans-serif;
}

.font-sourcesans3 {
  font-family: "Source Sans 3", sans-serif;
}

/* Opcional: un poco de estilo para diferenciar */
.demo-text {
  font-size: 24px;
  margin: 15px 0;
}
.items_head {
  color: #c18d72 !important;
}

@keyframes brillo-quemado {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.1); /* fondo semi-transparente */
  backdrop-filter: blur(12px); /* desenfoque */
  -webkit-backdrop-filter: blur(12px); /* soporte Safari */
  border: 0px solid rgba(255, 255, 255, 0.3); /* borde suave */
  border-radius: 1rem; /* redondeo */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); /* sombra ligera */
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: ""; /* elimina el ícono default */
}
/*header*/
.header-link__active::after {
  transform: scaleX(1) !important;
}

.nested-enter-active,
.nested-leave-active {
  transition: all 0.3s ease-in-out;
}

.nested-leave-active {
  transition-delay: 0.25s;
}

.nested-enter-from,
.nested-leave-to {
  opacity: 0;
}

.nested-enter-active .inner,
.nested-leave-active .inner {
  transition: all 0.3s ease-in-out;
}

.nested-enter-active .inner {
  transition-delay: 0s;
}

.nested-enter-from .inner,
.nested-leave-to .inner {
  transform: translateX(-100px);

  opacity: 0.001;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
/*header*/
.acordeon-contenido {
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
