/**
 * Landings — cabecera Slick (inc/landings.-hero-slider.php).
 *
 * Puntos del hero: mismo criterio que css/home/skema-home-hero.css (fixed + viewport + scroll en main.js).
 *
 * Convención: CSS mobile-first (estilos base = móvil; @media (min-width: …) amplía desktop).
 *
 * Orden: landings-shared → skema-landing-hero → footer-landings → skin → phase.
 */

.site-main--landings .landing-hero .slider-banner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	aspect-ratio: unset;
	height: auto;
	overflow: hidden;
	border-radius: 0 0 80px 80px;
	background: #000;
}

/* Puntos: centrados en vertical al viewport; ocultos al salir el .slider-banner (main.js + .home-hero-dots--hero-off) */
.site-main--landings .landing-hero .home-hero-dots {
	position: fixed;
	top: 50%;
	left: 2.5rem;
	right: auto;
	z-index: 100;
	transform: translateY(-50%) rotate(90deg);
	min-width: 30px;
	min-height: 30px;
	padding: 10px 18px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(5px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-main--landings .landing-hero .home-hero-dots.home-hero-dots--hero-off {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-main--landings .landing-hero .home-hero-dots .slick-dots {
	position: static;
	bottom: auto;
	left: auto;
	width: auto;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.site-main--landings .landing-hero .home-hero-dots .slick-dots li {
	width: auto;
	height: auto;
	margin: 0;
}

.site-main--landings .landing-hero .home-hero-dots .slick-dots li button {
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.site-main--landings .landing-hero .home-hero-dots .slick-dots li button::before {
	display: none;
}

.site-main--landings .landing-hero .home-hero-dots .slick-dots li.slick-active button {
	width: 25px;
	border-radius: 10px;
	opacity: 1;
}

@media (min-width: 992px) {
	.site-main--landings .landing-hero .home-hero-dots {
		display: flex;
	}
}
