/* header - footer */
.hero-header,
header.min,
.site-footer {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translate(0, 0) !important;
}

header.hero-header {
	position: fixed;
	inset: 0;
	z-index: 100;
	pointer-events: none;
}

header.hero-header div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 27%;
	text-align: right;
	color: rgb(var(--b) / 1);
	text-align: center;
}
header.hero-header div span.lead {
	font-size: 1.5rem;
	font-weight: 700;
}
header.hero-header div span.caption {
	font-size: 1.25rem;
	font-weight: 500;
}
header.hero-header div img {
	width: 60%;
	margin: 0 auto;
}


header.hero-header.is-visible {
	transform: scale(1);
}

header.min {
	position: fixed;
	top: 0;
	left: 9%;
	display: flex;
	align-items: center;
	width: 6%;
	height: 10dvh;
	padding: 0 0 1rem 0;
	border-radius: 0 0 1rem 1rem;
	z-index: 200;
	background: rgb(var(--n-dark) / .6);
}

header.min .header-iso {
	position: absolute;
	width: 100%;
	height: 80%;
	display: block;
	background: linear-gradient(130deg, #e88 0%, #911 80%);

	-webkit-mask-image: url("/assets/img/iso.webp");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;

	mask-image: url("/assets/img/iso.webp");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

/* footer */
.site-footer {
	position: fixed;
	width: 100%;
	height: 100dvh;
	top: 0;
	left: 0;
	display: flex;
	color: rgb(var(--b) / 1);
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-footer.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

footer.site-footer {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	min-height: 100dvh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	isolation: isolate;
	border-radius: 0;
	background: linear-gradient(
		30deg,
		rgb(var(--n) / 0.1) 0%,
		rgb(var(--n-light) / 0.15) 100%
	);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 300;
}

footer.site-footer .is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

footer.site-footer::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url("../../assets/img/patternblack.png") repeat;
	background-size: 2px;
	filter: invert(1);
	opacity: 0.35;
	border-radius: 0;
	z-index: 0;
}

footer.site-footer > * {
	position: relative;
	z-index: 1;
}

.site-footer .footer-container {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 80%;
	min-height: 15dvh;
	padding: 3rem 10% !important;
	color: rgb(var(--b) / 1);
	border-radius: 1rem 1rem 0 0;
	z-index: 50;
	pointer-events: none;
	background: rgb(var(--n-dark) / 1);
}

.site-footer.is-visible .footer-container {
	pointer-events: auto;
}

.site-footer .footer-container ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer .footer-container ul li {
	cursor: pointer;
}

.site-footer .stamp {
	position: absolute;
	top: 20%;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 27%;
	gap: 0.75rem;
	text-align: center;
	transform: translate(-50%, 0);
	z-index: 10;
}

.site-footer .stamp .iso {
	display: block;
	width: 20%;
	height: auto;
	filter: invert(0);
}

.site-footer .stamp span.lead {
	font-size: 1.5rem;
	font-weight: 700;
}
.site-footer .stamp span.caption {
	font-size: 1.25rem;
	font-weight: 500;
}

.site-footer .footer-container .easy-menu {
	justify-content: flex-start;
	width: 25%;
	gap: 0;
}

.site-footer .footer-container .easy-menu a {
	color: rgb(var(--b) / 1);
	font-size: 1.05rem;
	font-weight: 600;
}

.site-footer .footer-container .soporte {
	justify-content: center;
	align-items: flex-end;
	width: 25%;
	text-align: right;
}

.site-footer .footer-container .soporte li p {
	margin: 0.5rem 0 0;
}

.site-footer .footer-container .soporte .brand {
	position: relative;
	width: 100%;
	text-align: right;
}

.site-footer .footer-container .soporte .brand .header-logo {
	display: block;
	width: auto;
	height: 5rem;
	margin: 0 0 0 auto;
	background: linear-gradient(90deg, rgb(var(--c2-light) / 1) 0%, rgb(var(--c2-dark) / 1) 100%);

	-webkit-mask-image: url("/assets/img/logo.webp");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;

	mask-image: url("/assets/img/logo.webp");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.site-footer .footer-container a::before {
	content: "-";
	margin-right: 1rem;
	color: rgb(var(--c1) / 1);
}

.site-footer .footer-container hr {
	width: 100%;
	height: 1px;
	margin: 1rem 0;
	border: 0;
	opacity: 1;
}

.site-footer .footer-container .social {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
}

.site-footer .footer-container .social span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.site-footer > i {
	position: absolute;
	left: 10%;
	bottom: 1rem;
	margin: 0;
	color: rgb(var(--c1) / 1);
}