/* BASE */
:root {
  font-size: 16px;
}
* {
	box-sizing: border-box;
}
html,
body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	  font-weight: 400;
	  font-style: normal;
	font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-overflow-scrolling: touch;
	color: rgba(41, 41, 41, 1);
	min-height: 100vh;
	/* background-image: url("../../assets/img/bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;  */
	background: rgba(236, 236, 236, 1);
}
h1,
h2,
h3 {
	line-height: 1.4;
}
h1 {
	font-size: 1rem;
	font-weight: 200;
}
h2 {
	font-size: 2.62rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	text-shadow: 2px 2px 2px rgba(33, 33, 33, .1), -1px -1px 1px rgba(255, 255, 255, 1);
	color: #eee
}
h2.xl {
	font-size: 4.24rem;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1;
}
h2.xxl {
	font-size: 6.85rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: .85;
}
dt span {
	font-size: 2.06rem;
	font-weight: 300;
	opacity: 1;
	line-height: 1;
}
h3 {
	font-size: 1.62rem;
	font-weight: 500;
	text-indent: 1rem;
}
i {
	font-size: 0.7rem;
	opacity: .75;
}
i::before {
	content: '*';
	margin-right: .25rem;
}


p {
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
	text-indent: 1.5rem;
	margin-top: 1rem;
}
p.col{
	column-count: 2;
	column-gap: 1rem;
	column-fill: balance;
}
p:last-child {
	margin-bottom: 0;
}
p::first-letter, h3::first-letter {
	text-transform: uppercase;
}
a {
	cursor: pointer;
	font-size: 1rem;
	color: rgba(255, 94, 0, 1);
}
a:hover {
	cursor: pointer;
	font-size: 1rem;
	color: rgba(125, 49, 175, 1);
}
button{
	font-size: 1rem;
	font-weight: 400;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	display: inline-flex;
	width: fit-content;
	justify-self: start;
	align-self: start;
	padding: .5rem 1rem;
	z-index: 20;
	position: relative;
	background: linear-gradient(
		30deg,
		rgba(33, 33, 33, 1),
		rgba(0, 208, 223, 1)
	);
	overflow: hidden;
}



button:hover{
	font-size: 1rem;
	font-weight: 400;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	display: inline-flex;
	width: fit-content;
	justify-self: start;
	align-self: start;
	padding: .5rem 1rem;
	z-index: 20;
	position: relative;
	background: linear-gradient(
		30deg,
		rgba(0, 208, 223, 1),
		rgba(33, 33, 33, 1)
	);
	overflow: hidden;
}

/*txt*/
.artxt{
	position: relative;
	width: 100%;
	padding:2rem;          /* ÚNICO control del fondo */
	--lines: 6;
	--lh: 1.4;
	--max-height: 15;
	box-sizing: border-box;
}
.artxt hr {
	margin: 1rem 0;
	display: block;
}
.artxt .colapse {
	position: relative;
	overflow: hidden;
	max-height: calc(var(--lines) * var(--lh) * 1rem);
	transition: max-height 1s ease;
	padding: 0;
	margin: 0;
}
.artxt .colapse.expanded {
	max-height: calc(var(--max-height) * var(--lh) * 1rem);
	overflow-y: auto;
	scrollbar-width: none;
}
.artxt .colapse.expanded::-webkit-scrollbar {
	display: none;
}
.artxt .colapse-toggle {
	cursor: pointer;
	color: rgba(0, 209, 224, 1);
	display: none;
	width: 100%;
	font-size: 2rem;
	margin: 0;
}
.artxt .colapse-toggle::before {
	font-family: "icomoon";
	content: "\e900";
}
.artxt .colapse-toggle.is-expanded::before {
	content: "\e903";
}
.artxt .colapse {
	position: relative;
}
.artxt .colapse::after {
	content: "----------- / -----------";
	position: absolute;
	left: 0;
	right: 0;
	bottom: .35rem;
	display: block;
	text-align: center;
	line-height: 1;
	font-size: .9rem;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .25s ease, transform .25s ease;
	pointer-events: none;
}
.artxt .colapse.expanded.at-end::after {
	opacity: .7;
	transform: translateY(0);
}
.artxt button{
	margin-top: 1rem;
}

/* media */
figure {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	aspect-ratio: 3/2;
	padding: 0;
}
figure figcaption {
	position: absolute;
	bottom: .5%;
	left: 1%;
	font-size: .7rem;
	font-style: italic;
	z-index: 2;
	color: rgba(255,255,255,.6);
}
figure figcaption::before {
	content: '*';
	margin-right: .25rem;
}
figure img.responsive-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
video.responsive-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	aspect-ratio: 2/ 1;
}
/* grilla */
section {
	width: 100vw;
	max-width: 2048px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	background-image: url("../../assets/img/bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 20;
	position: relative;
	padding: 0;
}

section.sticky{
	position: sticky;
	top: 0;
	z-index: var(--z, 1);
}

section>article {
	position: relative;
	display: block;
	background: none;
}

.bg {
	background-image:
		linear-gradient(120deg,
			#00d1e0 0%,
			#00d1e0 35%,
			#fff 35%,
			#fff 100%),
		url("../../assets/img/bg.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-blend-mode: multiply;
}

.bgdeg,
.bgpic,
.bgmix {
	position: relative;
	isolation: isolate;
}

.bgdeg>*,
.bgpic>*,
.bgmix>* {
	position: relative;
	z-index: ;
}

.bgdeg::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	background: radial-gradient(circle at 0% 0%,
			rgba(51, 45, 33, 1) 0%,
			rgba(245, 242, 237, 1) 100%);
	mix-blend-mode: soft-light;
}

.bgpic::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("../../assets/img/mont.webp");
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 50% auto;
	mix-blend-mode: multiply;
	opacity: .75;
	z-index: -1;
}

.bgmix::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(circle at 0% 0%,
			rgba(220, 255, 0, .25) 0%,
			rgba(33, 33, 33, .75) 55%,
			rgba(0, 208, 223, 1) 100%);
	mix-blend-mode: overlay;
}

.bgmix::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background-image: url("../../assets/img/mont.webp");
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 61% auto;
	mix-blend-mode: multiply;
	opacity: .75;
}

.module>article:nth-child(1){
	width: 38%;
}
.module>article:nth-child(1) dl{
	width: 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: right;
	padding: 0 2rem 0 38%;
	border-left: 50px solid rgba(220, 255, 0, 1);
}
.module>article:nth-child(2) {
	width: 62%;
}

.module_f>article:nth-child(1){
	width: 38%;
}
.module_f>article:nth-child(1) dl{
	width: 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: right;
	z-index: 3;
	padding: 0 2rem 0 38%;
	border-left: 50px solid rgba(220, 255, 0, 1);
}
.module_f>article:nth-child(1) dl dt{
	width: 300%;
	text-align: left;
	background: rgba(255, 255, 255, 0.1);
	padding: .3rem 0;
}
.module_f>article:nth-child(2) {
	width: 62%;
}

.module_r>article:nth-child(1){
	width: 62%;
}
.module_r>article:nth-child(2) dl{
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
	padding: 0 38% 0 2rem;
	border-right: 50px solid rgba(220, 255, 0, 1);
}
.module_r>article:nth-child(2) {
	width: 38%;
}
.module_rf>article:nth-child(1){
	width: 62%;
}
.module_rf>article:nth-child(2) dl{
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
	padding: 0 38% 0 2rem;
	border-right: 50px solid rgba(220, 255, 0, 1);
}
.module_rf>article:nth-child(2) dl dt{
	width: 300%;
	transform: translateX(-62%);
	text-align: right;
background: rgba(255, 255, 255, 0.1);
	padding: .3rem 0;
}
.module_rf>article:nth-child(2) {
	width: 38%;
}
/*menu*/
.menu {
	position: fixed;
	top: 0;
	left: -25%;
	width: 25%;
	height: 100vh;
	background: #dcff00;
	padding: 2rem;
	transition: left .3s ease;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 100;
}
#navmenu {
	position: fixed;
	top: 2%;
	right: 2%;
	z-index: 100;
	display: none;
}
.btn-open-menu,
.btn-close-menu {
	cursor: pointer;
	font-size: 1.5rem;
	color: #fff;
}
.menu ul {
	padding-left: 0;
}
.menu li {
	display: block;
	cursor: pointer;
	background: rgba(255,255,255,.25);
	margin-bottom: .2rem;
	padding: .3rem .5rem;
	position: relative;
}
.menu li > i {
	display: block;
	margin: .1rem 0 .5rem;
	opacity: .7;
}
.menu ul ul {
	padding-left: .5rem;
	display: none;
}
.menu ul ul ul {
	padding-left: 1rem;
}
.menu li ul li:last-child {
	margin-bottom: .5rem;
}
.menu li:has(> ul)::after {
	content: "\e901";
	font-family: "icomoon";
	position: absolute;
	right: .5rem;
	top: .4rem;
	font-size: 1rem;
	opacity: .7;
}
.menu li.open:has(> ul)::after {
	content: "\e902";
}
/*header*/
header.main{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 50;
	backdrop-filter: blur(60px);
	-webkit-backdrop-filter: blur(60px);
	opacity: 1;
	pointer-events: auto;
	transition: opacity .6s ease;
 background-image:
		radial-gradient(circle at center, #d75e21 0%, #776dd7 70%),
		url("../../assets/img/bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center; 
background-blend-mode: multiply; 
}

header.main > img.header-bg{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0.5;
	width: 100%;
	height: auto;
	max-width: 100%;
	pointer-events: none;
}

/* contenedor circular */
header.main ul{
	position: absolute;
	top: 38%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12vw;
	height: 12vw;
	padding: 2rem;
	margin: 0;
	list-style: none;
	border-radius: 50%;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	padding: 2rem;
}
header.main ul img{
width: 100%;
height: auto;
}
/* borde animado */
header.main ul::before{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: 10px;
	background: linear-gradient(90deg, #00d1e0, #d6ff5c);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: 2;
	animation: spin 5s linear infinite;
	pointer-events: none;
}

header.main ul > *{
	position: relative;
	z-index: 3;
}
header.main div{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 18%;
	text-align: center;
}

@keyframes spin{
	from{ transform: rotate(0deg); }
	to{ transform: rotate(360deg); }
}

header.compact{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 12vh;
	z-index: -2;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease;
}

header.compact img {
	width: 8%;
	filter: invert(1);
	position: absolute;
	bottom: 0;
	left: 12vw;
	transition:
		transform 1.5s ease,
		opacity 1.5s ease;
	will-change: transform, opacity;
}

header.compact.logo-right img{
	transform: translateX(65vw);
	opacity: 1;
}

nav.header{
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: -2;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(221, 255, 0, 1);
	background-image: url("../../assets/img/bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-blend-mode: multiply;
	border-radius: 10px 0 0 10px;
	transition: opacity 1s ease;
}

nav.header a{
	font-family: "icomoon";
	font-size: 1.3rem;
	padding: 1rem;
	color: #222;
	border-bottom: 1px solid rgba(0,0,0,.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

nav.header a:last-child{
	border-bottom: none;
}

nav.header .icon-dots-three-horizontal{ display: inline-block; }
nav.header .icon-cross{ display: none; }

nav.header.menu-open .icon-dots-three-horizontal{ display: none; }
nav.header.menu-open .icon-cross{ display: inline-block; }
.nav-handle{
	display: none;
	color: #df0;
	font-weight: 600;
}
/* footer */
footer{
	width:62%;
	position:fixed;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	display:flex;
	flex-wrap:wrap;
	gap:3rem;
	padding:3rem 3rem 1rem 3rem;
	box-sizing:border-box;
	z-index:50;
	color: rgba(255, 255, 255, 1);
		border-bottom: 15px solid rgba(220, 255, 0, 1);
		border-radius: 20px 20px 0 0;
		backdrop-filter: blur(20px) saturate(1.1);
		-webkit-backdrop-filter: blur(20px) saturate(1.1);
		background: linear-gradient(
			to bottom left,
			rgba(33, 33, 33, 0.1),
			rgba(0, 0, 0, .5)
		);
		text-align: left;
		box-shadow: 3px 3px 3px rgba(33, 33, 33, .6), -1px -1px rgba(236, 236, 236, .5);
	
}

footer .corp_img{
	position: absolute;
	bottom: 102%;
	right: 3rem;
	width: 18%;
}
footer .corp_img img{
	width: 100%;
	filter: brightness(10);
} 

footer ul{
	list-style:none;
	margin:0;
	padding:0;
	display:flex;
	flex-direction:column;
	gap:.6rem;
	flex:1 1 0;
}

footer ul h2{
	color: rgba(221, 255, 0, 1);
	font-size: 2.06rem;
}

footer ul a{
	color: rgba(255, 255, 255, 1);
	font-weight: 600
}


footer li{
	position:relative;
	padding-left:0;
	line-height:inherit;
}

footer li::before{
	content:"\e906";
	font-family:"icomoon";
	font-size:1.1rem;
	opacity:1;
	color: rgba(221, 255, 0, 1);
	margin-right: .7rem;
}

footer > i{
	flex:0 0 100%;
	margin-top:2rem;
	padding-top:1rem;
	border-top:1px solid currentColor;
	font-style:normal;
	opacity:.5;
}
footer .soporte .social{
	display: flex;
	flex-direction: row;
	gap: 1rem;
	border-top: 1px solid #dcff00;
	padding-top: 1rem;
	margin-top: 2rem;
}

footer .soporte .social span{
	color: #00d0df;
	font-size: 1.5rem;
}

/* responsive */

.footer_spacer{
	height: 50vh;
	pointer-events: none;
}

/* color scope */
.color-scope {
	--c-rgb: inherit;
	--c-txt: rgb(var(--c-rgb));
	--c-bg: rgba(var(--c-rgb), .75);
	--c-brd: rgb(var(--c-rgb));
}
.color-bg {
	background-color: rgba(var(--c-rgb), .75) !important;
}
.color-txt {
	color: var(--c-txt) !important;
}
.color-border {
	border-color: var(--c-brd) !important;
}

.v-color{
	transition: color 1.2s ease;
}

.v-bg{
	transition: background-color 1.2s ease;
}

.v-border{
	transition: border-color 1.2s ease;
}
.principal_header{
	position: fixed;
	left: 0;
	bottom: 9%;
	transform-origin: top left;
	transform: rotate(-90deg);
	opacity: 1;
	z-index: 200;
	font-size: .9rem;
}

.simple_btn{
	position: fixed;
	left: 0;
	top: 50%;
	transform-origin: top left;
	transform: translateY(-50%) rotate(-90deg);
	opacity: 1;
	font-size: .7rem;
	background: rgba(33, 33, 33, 1);
	padding: .2rem 1rem .5rem;
	border-radius: 0 0 10px 10px;
	z-index: 200;
	color: rgba(220, 255, 0, 1);
}
/*cookies*/
.cookies{
	position: fixed;
	inset: 0;
	z-index: var(--cookies-z, 9999);
	display: grid;
	place-items: center;
	padding: var(--cookies-pad, 2rem);
	
}

.cookies[hidden]{ display:none; }

.cookies-backdrop{
	position: absolute;
	inset: 0;
	background: var(--cookies-backdrop, rgba(0,0,0,.65));
}

.cookies-modal{
	position: relative;
	width: min(var(--cookies-w, 560px), 100%);
	max-height: min(var(--cookies-maxh, 80vh), 100%);
	overflow: auto;

	background: var(--cookies-bg, rgba(20,20,20,.92));
	color: var(--cookies-color, #fff);
	border-radius: var(--cookies-r, 14px);
	padding: var(--cookies-inner, 1.25rem);
	box-shadow: var(--cookies-shadow, 0 20px 80px rgba(0,0,0,.45));
}

.cookies-actions{
	display: flex;
	justify-content: flex-end;
	gap: .75rem;
	margin-top: 1rem;
}

.cookies-close{
	cursor: pointer;
}
/* watermark */
.wm-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
}
.wm-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 1;
	pointer-events: none;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.box {
	width: 300px;
	height: 300px;
	background: #7c30ae; /* color sólido */

	-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;
	
	position: fixed;
	z-index: 100;
}
.spacer{
	height: 25vh;
}

