/* ===== Sensacioones — slider hero ===== */

#section-slider.home-rev-fallback {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0a0a0a;
}

#section-slider.home-rev-fallback .home-rev-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease-out;
  z-index: 1;
  will-change: opacity, transform;
}

#section-slider.home-rev-fallback .home-rev-slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.14);
}

#section-slider.home-rev-fallback .home-rev-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.32) 38%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

#section-slider.home-rev-fallback .home-rev-inner {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 20px 100px;
  max-width: 820px;
  margin: 0 auto;
  left: 0;
  right: 0;
  pointer-events: none;
}

#section-slider.home-rev-fallback .home-rev-inner .btn-line,
#section-slider.home-rev-fallback .home-rev-inner a {
  pointer-events: auto;
}

/* Teaser, título y cuerpo en blanco sobre el hero */
#section-slider.home-rev-fallback .home-rev-inner.text-light .hr-teaser span,
#section-slider.home-rev-fallback .home-rev-inner.text-light .hr-title,
#section-slider.home-rev-fallback .home-rev-inner.text-light .hr-text {
  color: #fff;
}

/* CTA hero: vidrio esmerilado (sin fondo blanco sólido al hover) */
#section-slider.home-rev-fallback .home-rev-inner.text-light a.btn-line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

#section-slider.home-rev-fallback .home-rev-inner.text-light a.btn-line::before {
  display: none;
}

#section-slider.home-rev-fallback .home-rev-inner.text-light a.btn-line:hover {
  /* Mismo vidrio blanco que en reposo — sin tinte naranja/rojo al hover */
  background: rgba(255, 255, 255, 0.12) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 110, 64, 0.65);
  color: #ff6e40;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
}

/* Flecha (::after): mismo color que el texto — ver body.sens-theme a.btn-line::after { color: inherit } */

.hr-layer {
  opacity: 0;
  transform: translateY(40px);
  animation: hrLayerIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hr-layer.hr-teaser {
  animation-delay: 0.15s;
  margin-bottom: 6px;
}
.hr-layer.hr-sep {
  animation-delay: 0.35s;
  margin-bottom: 4px;
}
.hr-layer.hr-title {
  animation-delay: 0.55s;
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 72px);
  margin: 10px 0 22px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hr-layer.hr-text {
  animation-delay: 0.75s;
  font-size: 18px;
  line-height: 26px;
  margin: 0 auto 30px;
  max-width: 620px;
  opacity: 0.92;
}
.hr-layer.hr-btn {
  animation-delay: 1s;
}

.hr-layer.hr-teaser span {
  letter-spacing: 7px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes hrLayerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Arrows */
.hr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(4px);
}
.hr-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}
.hr-prev {
  left: 28px;
}
.hr-next {
  right: 28px;
}
.hr-arrow span {
  width: 10px;
  height: 10px;
  display: block;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}
.hr-prev span {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.hr-next span {
  transform: rotate(45deg);
  margin-right: 4px;
}
@media (max-width: 767px) {
  .hr-arrow {
    width: 44px;
    height: 44px;
  }
  .hr-prev {
    left: 12px;
  }
  .hr-next {
    right: 12px;
  }
}

/* Dots */
.hr-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  z-index: 10;
}
.hr-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
}
.hr-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hr-dot.is-on {
  background: transparent;
  border-color: #fff;
  transform: scale(1.3);
}
