/**
 * SauraTrans · Slider principal Avia
 */

.st-hero {
	--st-hero-height-desktop: 760px;
	--st-hero-height-tablet: 640px;
	--st-hero-height-mobile: 590px;
	--st-hero-overlay: 0.56;
	--st-hero-transition: 700ms;
	--st-hero-content-width: 720px;
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: var(--st-hero-height-desktop);
	overflow: hidden;
	background: var(--st-dark, #0b1720);
	color: #fff;
}

.st-hero__slides,
.st-hero__slide {
	position: absolute;
	inset: 0;
}

.st-hero__slide {
	z-index: 1;
	min-height: var(--st-hero-height-desktop);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--st-hero-transition) ease;
}

.st-hero__slide.is-active {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
}

.st-hero__picture,
.st-hero__image,
.st-hero__fallback,
.st-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.st-hero__image {
	object-fit: cover;
	object-position: center;
	transform: scale(1.025);
	transition: transform 7s ease;
}

.st-hero__slide.is-active .st-hero__image {
	transform: scale(1);
}

.st-hero__fallback {
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 30%, rgba(255,255,255,0.16), transparent 28%),
		linear-gradient(120deg, var(--st-primary, #12304a), var(--st-dark, #0b1720) 72%);
}

.st-hero__fallback::before,
.st-hero__fallback::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 50%;
	content: "";
}

.st-hero__fallback::before {
	top: -22%;
	right: -6%;
	width: min(52vw, 760px);
	aspect-ratio: 1;
}

.st-hero__fallback::after {
	right: 8%;
	bottom: -34%;
	width: min(42vw, 620px);
	aspect-ratio: 1;
}

.st-hero__road {
	position: absolute;
	right: -6%;
	bottom: 7%;
	width: 58%;
	height: 6px;
	border-radius: 999px;
	background: rgba(255,255,255,0.18);
	transform: rotate(-16deg);
	transform-origin: right center;
}

.st-hero__road::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: repeating-linear-gradient(
		90deg,
		transparent 0 24px,
		rgba(255,255,255,0.62) 24px 52px
	);
	content: "";
	transform: translateY(-50%);
}

.st-hero__road--two {
	right: -9%;
	bottom: 14%;
	width: 46%;
	opacity: 0.55;
}

.st-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(5, 12, 18, calc(var(--st-hero-overlay) + 0.18)) 0%,
			rgba(5, 12, 18, var(--st-hero-overlay)) 48%,
			rgba(5, 12, 18, 0.20) 100%
		);
}

.st-hero--center .st-hero__overlay {
	background: rgba(5, 12, 18, var(--st-hero-overlay));
}

.st-hero--right .st-hero__overlay {
	background:
		linear-gradient(
			270deg,
			rgba(5, 12, 18, calc(var(--st-hero-overlay) + 0.18)) 0%,
			rgba(5, 12, 18, var(--st-hero-overlay)) 48%,
			rgba(5, 12, 18, 0.20) 100%
		);
}

.st-hero__container {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	width: min(calc(100% - 64px), 1440px);
	min-height: var(--st-hero-height-desktop);
	margin-inline: auto;
	padding-block: 110px 100px;
}

.st-hero--left .st-hero__container {
	justify-content: flex-start;
}

.st-hero--center .st-hero__container {
	justify-content: center;
	text-align: center;
}

.st-hero--right .st-hero__container {
	justify-content: flex-end;
	text-align: right;
}

.st-hero__content {
	width: min(100%, var(--st-hero-content-width));
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 620ms ease 160ms,
		transform 620ms ease 160ms;
}

.st-hero__slide.is-active .st-hero__content {
	opacity: 1;
	transform: translateY(0);
}

.st-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--st-accent, #e6a321);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.st-hero__eyebrow::before {
	width: 42px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
}

.st-hero--center .st-hero__eyebrow::before {
	display: none;
}

.st-hero__title {
	max-width: 100%;
	margin: 0;
	color: #fff !important;
	font-size: clamp(42px, 5.1vw, 78px);
	font-weight: 800;
	line-height: 0.99;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.st-hero__text {
	max-width: 650px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(17px, 1.45vw, 21px);
	line-height: 1.55;
}

.st-hero--center .st-hero__text {
	margin-inline: auto;
}

.st-hero--right .st-hero__text {
	margin-left: auto;
}

.st-hero__text p {
	margin: 0;
}

.st-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.st-hero--center .st-hero__actions {
	justify-content: center;
}

.st-hero--right .st-hero__actions {
	justify-content: flex-end;
}

.st-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 13px 18px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.st-hero__button:hover,
.st-hero__button:focus-visible {
	transform: translateY(-2px);
}

.st-hero__button--primary {
	border-color: var(--st-accent, #e6a321);
	background: var(--st-accent, #e6a321);
	color: var(--st-dark, #0b1720);
}

.st-hero__button--primary:hover,
.st-hero__button--primary:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--st-dark, #0b1720);
}

.st-hero__button--secondary {
	border-color: rgba(255,255,255,0.72);
	background: rgba(255,255,255,0.05);
	color: #fff;
	backdrop-filter: blur(8px);
}

.st-hero__button--secondary:hover,
.st-hero__button--secondary:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--st-dark, #0b1720);
}

.st-hero__arrows {
	position: absolute;
	right: max(24px, calc((100% - 1440px) / 2 + 32px));
	bottom: 34px;
	z-index: 5;
	display: flex;
	gap: 8px;
}

.st-hero__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255,255,255,0.36);
	border-radius: 50%;
	background: rgba(5,12,18,0.26);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

.st-hero__arrow:hover,
.st-hero__arrow:focus-visible {
	border-color: var(--st-accent, #e6a321);
	background: var(--st-accent, #e6a321);
	color: var(--st-dark, #0b1720);
}

.st-hero__dots {
	position: absolute;
	bottom: 46px;
	left: max(24px, calc((100% - 1440px) / 2 + 32px));
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 8px;
}

.st-hero__dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 18px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.st-hero__dot span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255,255,255,0.56);
	transition:
		width 180ms ease,
		background-color 180ms ease;
}

.st-hero__dot.is-active span {
	width: 26px;
	background: var(--st-accent, #e6a321);
}

@media (max-width: 1100px) {
	.st-hero,
	.st-hero__slide,
	.st-hero__container {
		min-height: var(--st-hero-height-tablet);
	}

	.st-hero__container {
		width: min(calc(100% - 44px), 980px);
		padding-block: 90px;
	}

	.st-hero__title {
		font-size: clamp(40px, 6vw, 64px);
	}
}

@media (max-width: 767px) {
	.st-hero,
	.st-hero__slide,
	.st-hero__container {
		min-height: var(--st-hero-height-mobile);
	}

	.st-hero__container {
		align-items: flex-end;
		width: calc(100% - 30px);
		padding-block: 88px 96px;
	}

	.st-hero--left .st-hero__container,
	.st-hero--center .st-hero__container,
	.st-hero--right .st-hero__container {
		justify-content: flex-start;
		text-align: left;
	}

	.st-hero__overlay,
	.st-hero--center .st-hero__overlay,
	.st-hero--right .st-hero__overlay {
		background:
			linear-gradient(
				0deg,
				rgba(5,12,18,0.92) 0%,
				rgba(5,12,18,calc(var(--st-hero-overlay) + 0.10)) 58%,
				rgba(5,12,18,0.20) 100%
			);
	}

	.st-hero__content {
		width: 100%;
	}

	.st-hero__eyebrow {
		margin-bottom: 12px;
		font-size: 11px;
	}

	.st-hero__eyebrow::before {
		width: 28px;
	}

	.st-hero__title {
		font-size: clamp(35px, 10vw, 50px);
		line-height: 1.02;
	}

	.st-hero__text {
		margin-top: 17px;
		font-size: 16px;
		line-height: 1.45;
	}

	.st-hero__actions,
	.st-hero--center .st-hero__actions,
	.st-hero--right .st-hero__actions {
		justify-content: flex-start;
		margin-top: 23px;
	}

	.st-hero__button {
		min-height: 47px;
		padding: 12px 15px;
		font-size: 14px;
	}

	.st-hero__arrows {
		right: 15px;
		bottom: 24px;
	}

	.st-hero__arrow {
		width: 42px;
		height: 42px;
	}

	.st-hero__dots {
		bottom: 34px;
		left: 15px;
	}

	.st-hero__road {
		width: 82%;
	}
}

@media (max-width: 430px) {
	.st-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.st-hero__button {
		width: 100%;
	}

	.st-hero__arrows {
		display: none;
	}

	.st-hero__dots {
		bottom: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.st-hero__slide,
	.st-hero__image,
	.st-hero__content,
	.st-hero__button,
	.st-hero__arrow,
	.st-hero__dot span {
		transition: none;
	}
}


/* Ajustes v1.1.0 */
.st-hero{
	width:100vw!important;
	max-width:100vw!important;
	margin-left:calc(50% - 50vw)!important;
	margin-right:calc(50% - 50vw)!important;
	min-height:clamp(620px,74vh,780px)!important;
}
.st-hero__slide,
.st-hero__container{
	min-height:clamp(620px,74vh,780px)!important;
}
.st-hero__container{
	width:min(calc(100% - 64px),1440px)!important;
	padding-block:100px 88px!important;
}
.st-hero__content{
	width:min(100%,680px)!important;
}
.st-hero__title{
	font-size:clamp(44px,5vw,76px)!important;
	line-height:.97!important;
	letter-spacing:-.045em!important;
}
.st-hero__text{
	font-size:clamp(17px,1.3vw,20px)!important;
}
.st-hero__button{
	min-height:50px!important;
	padding:14px 20px!important;
	border-radius:12px!important;
}
.st-hero__button--primary{
	background:linear-gradient(180deg,var(--st-accent,#f5b433),#e19c21)!important;
	border-color:var(--st-accent,#f5b433)!important;
	color:#081420!important;
}
.st-hero__button--primary:hover{
	background:#fff!important;
	border-color:#fff!important;
	color:#081420!important;
}
.st-hero__button--secondary{
	background:rgba(6,18,29,.34)!important;
	border-color:rgba(255,255,255,.52)!important;
	color:#fff!important;
}
.st-hero__fallback{
	background-position:center!important;
	background-size:cover!important;
}
.st-hero__slide:nth-child(1) .st-hero__fallback{
	background-image:url("../images/hero-1.svg")!important;
}
.st-hero__slide:nth-child(2) .st-hero__fallback{
	background-image:url("../images/hero-2.svg")!important;
}
.st-hero__slide:nth-child(3) .st-hero__fallback{
	background-image:url("../images/hero-3.svg")!important;
}
.st-hero__fallback::before,
.st-hero__fallback::after,
.st-hero__road{
	display:none!important;
}
.st-hero__overlay{
	background:linear-gradient(90deg,rgba(4,13,21,.88) 0%,rgba(4,13,21,.70) 38%,rgba(4,13,21,.22) 70%,rgba(4,13,21,.08) 100%)!important;
}
@media(max-width:767px){
	.st-hero,
	.st-hero__slide,
	.st-hero__container{min-height:620px!important;}
	.st-hero__container{
		width:calc(100% - 30px)!important;
		padding-block:92px 96px!important;
	}
	.st-hero__title{font-size:clamp(36px,11vw,52px)!important;}
	.st-hero__overlay{
		background:linear-gradient(0deg,rgba(4,13,21,.92) 0%,rgba(4,13,21,.72) 58%,rgba(4,13,21,.20) 100%)!important;
	}
}
