:root {
	--bg: 245 242 236;

	--c1-dark: 160 68 24;
	--c1: 216 95 34;
	--c1-light: 234 136 83;

	--c2-dark: 89 79 106;
	--c2: 119 109 141;
	--c2-light: 150 140 171;

	--c3-dark: 99 124 133;
	--c3: 134 162 171;
	--c3-light: 173 194 201;

	--c4-dark: 91 121 78;
	--c4: 123 158 107;
	--c4-light: 158 186 144;

	--c5-dark: 225 168 34;
	--c5: 253 191 67;
	--c5-light: 255 212 111;

	--b-dark: 219 227 216;
	--b: 244 247 243;
	--b-light: 251 252 250;

	--n-dark: 13 17 11;
	--n: 28 37 24;
	--n-light: 56 73 49;

	--viewport-color: 255 255 255;

	font-size: 14px;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100dvh;
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-overflow-scrolling: touch;
	color: rgba(var(--n-light) / 1);
	background-image:
		linear-gradient(-45deg, rgb(var(--b-dark) / 1) 0%, rgb(var(--b-dark) / 1) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: 100% 100%;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: color;
}

h1 {
	font-size: 4rem;
	line-height: 0.9;
	font-weight: 900;
	text-transform: uppercase;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

h2 {
	font-size: 2rem;
	line-height: 0.95;
	font-weight: 900;
	text-transform: uppercase;
}

h2.s {
	font-size: 1.25rem;
	line-height: 1.1;
	font-weight: 400;
	text-transform: none;
}

h3 {
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 500;
}

h4 {
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1;
}

p {
	font-size: 1rem;
	font-weight: 400;
}

a {
	display: inline-block;
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 400;
	color: rgb(var(--c1) / 1);
	text-decoration: none;
	text-underline-offset: 3px;
}

a:hover {
	opacity: 0.9;
}

hr {
	margin: 1rem;
	border: none;
	border-top: 1px solid rgb(var(--n) / 1);
	opacity: 0.5;
}

button {
	display: block;
	margin-top: 1rem;
	padding: 0.25rem 2rem;
	font-size: 1rem;
	font-weight: 400;
	color: rgb(var(--b) / 1);
	cursor: pointer;
	border: none;
	border-radius: 1rem;
	background: linear-gradient(-45deg, rgb(var(--c4-light) / 1) 0%, rgb(var(--c4) / 1) 100%);
	z-index: 10;
}


	.xl h1 {
		font-size: 6rem;
		line-height: 0.9;
		font-weight: 900;
		text-transform: uppercase;
		word-break: normal;
		overflow-wrap: normal;
		hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
	}


.xl h2 {
	font-size: 3rem;
	line-height: 0.95;
	font-weight: 900;
	text-transform: uppercase;
}

.xl h2.s {
	font-size: 2rem;
	line-height: 1.1;
	font-weight: 400;
	text-transform: none;
}

.xl h3 {
	font-size: 2rem;
	line-height: 1;
	font-weight: 500;
}

/* artxt */
.artxt {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #686;
}

.artxt dd {
	margin: 0;
}

.artxt p {
	max-height: 9lh;
	margin: 0;
	overflow: hidden;
	transition: max-height 0.9s ease;
}

.artxt p span {
	display: block;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1;
}

.artxt p.active {
	max-height: 18lh;
	overflow-y: auto;
}

.artxt-toggle {
	display: none;
	background: #f55;
}

.artxt-toggle.visible {
	display: block;
}

.artxt-toggle::before {
	content: "Ver más";
}

.artxt dd:has(p.active) .artxt-toggle::before {
	content: "Ver menos";
}

[data-anim="on"] dt h1,
[data-anim="on"] dt h2,
[data-anim="on"] dt h3,
[data-anim="on"] dt h4,
[data-anim="on"] .artxt-toggle {
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.artxt.appeared dt h1,
.artxt.appeared dt h2,
.artxt.appeared dt h3,
.artxt.appeared dt h4,
.artxt.appeared .artxt-toggle {
	opacity: 1;
	transform: translateY(0);
}

.artxt.row {
	display: grid;
	grid-template-columns: 1fr;
	gap: .2rem`;
	padding: 0 10%;
}

.artxt.row dt,
.artxt.row hr {
	grid-column: 1 / -1;
}

.artxt.dd-row dd {
	display: grid;
	grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
	grid-template-areas:
		"media title"
		"media text"
		"media toggle";
	gap: 1rem 1.25rem;
	align-items: start;
}

.artxt.dd-row dd figure {
	grid-area: media;
	width: 100%;
	margin: 0;
}

.artxt.dd-row dd h4 {
	grid-area: title;
	margin: 0;
}

.artxt.dd-row dd p {
	grid-area: text;
	margin: 0;
}

.artxt.dd-row dd .artxt-toggle {
	grid-area: toggle;
	align-self: start;
}

.artxt.dd-row dd > *:not(figure):not(h4):not(p):not(.artxt-toggle) {
	grid-column: 2;
}

.artxt.mask dt {
	display: block;
	width: fit-content;
	color: transparent;
	background-image: url("../../assets/photo/desk/file/10.webp");
	background-size: auto;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
}

.artxt.mask dt * {
	display: inline;
	color: inherit;
	line-height: 1.3;
}

.artxt.mask dt *:not(:last-child)::after {
	content: "\A";
	white-space: pre;
}

.artxt.mask dd {
	padding-right: 0;
}

/* dt-dual */
.artxt.dt-dual,
.artxt.dt-dual-rev {
	--p-side: 0;
	position: relative;
	display: block;
}

.artxt.dt-dual {
	padding: 0 0 0 var(--p-side);
}

.artxt.dt-dual dd {
	padding-right: 0;
}

.artxt.dt-dual-rev {
	padding: 0 var(--p-side) 0 0;
}

.artxt.dt-dual-rev dd {
	padding-left: 0;
}

.artxt.dt-dual-rev button {
	margin-left: 0;
}

.dt-split {
	position: relative;
	display: block;
	width: 100%;
	color: transparent;
	text-align: left;
	user-select: none;
}

.artxt.dt-dual-rev .dt-split {
	left: -100%;
	width: 100%;
	text-align: right;
	z-index: 5;
}

.dt-solid,
.dt-image {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
	pointer-events: none;
}

.artxt.dt-dual .dt-solid,
.artxt.dt-dual .dt-image {
	align-items: flex-start;
}

.artxt.dt-dual-rev .dt-solid,
.artxt.dt-dual-rev .dt-image {
	align-items: flex-end;
}

.artxt.dt-dual .dt-solid,
.artxt.dt-dual-rev .dt-image {
	color: rgb(var(--c4-dark) / 1);
}

.artxt.dt-dual .dt-image,
.artxt.dt-dual-rev .dt-solid {
	color: rgb(var(--b) / 1);
}

.dt-real {
	display: block;
	height: auto;
	padding-bottom: 2rem;
	visibility: hidden;
}

/* media */
figure {
	position: relative;
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	gap: 0;
}

figure[data-layout="col"] {
	flex-direction: column;
}

figure[data-layout="row"] {
	flex-direction: row;
}

figure img.responsive-img {
	display: block;
	flex: 1;
	width: 100%;
	height: auto;
	min-width: 0;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 2 / 2.5;
}

figure[data-layout="row"] img.responsive-img {
	aspect-ratio: 9 / 16;
}

figure figcaption {
	position: absolute;
	bottom: 10px;
	left: 10px;
	padding: 2px 5px;
	font-size: 0.7rem;
	font-style: italic;
	color: rgb(var(--b) / 1);
	pointer-events: none;
	background: none;
	z-index: 10;
}

figure i {
	display: block;
	margin-top: 1rem;
	font-size: 0.6rem;
	font-style: normal;
	color: rgb(var(--n) / 1);
	opacity: 0.75;
}

figure i::before {
	content: "*";
	margin-right: 0.25rem;
}

video.responsive-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 9 / 16;
}

figure.video-sequence {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 9 / 16;
}

#playerA {
	position: relative;
	inset: auto;
	display: block;
	width: 100%;
	height: auto;
	opacity: 1;
	z-index: 1;
}

#playerB {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
	z-index: 2;
}

/* layout */
section {
	position: relative;
	display: flex;
	flex-direction: row;
	width: 95%;
	margin: 0 auto;
	padding: 0;
	background-image:
		linear-gradient(-45deg, rgb(var(--b-light) / 1) 0%, rgb(var(--b-light) / 1) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: 100% 100%;
	background-position: center;
	background-blend-mode: color;
	z-index: 20;
}

section > article {
	position: relative;
	display: block;
	min-width: 0;
	background: none;
}

section.pinned {
	position: sticky;
	top: 0;
	max-width: 100%;
	padding: 0 !important;
	opacity: 0;
	transition: opacity 0.6s ease;
	will-change: opacity;
	z-index: var(--z, 1);
}
/* header - footer */
.hero-header,
header.min,
header.nav,
.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;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

header.hero-header div {
	width: 81%;
	text-align: center;
	color: rgb(var(--b) / 1);
}

header.hero-header div img {
	width: 90%;
	filter: invert(1);
}

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

header.min {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 9dvh;
	padding: 0;
	color: rgb(var(--b-light) / 1);
	background: linear-gradient(-45deg, rgb(var(--c4-light) / 0.95) 0%, rgb(var(--c4-dark) / 0.99) 100%);
	border: 4px solid inherit;
	border-radius: 0 0 15px 15px;
	transform: translateX(0) translateY(-100%);
	z-index: 180;
}

header.min img {
	position: absolute;
	top: 50%;
	left: 3rem;
	width: auto;
	height: 60%;
	transform: translateY(-50%);
	filter: invert(0);
}

header.nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 9dvh;
	z-index: 200;
}

/* footer móvil */
.site-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100vw;
	height: 70dvh;
	display: flex;
	flex-direction: column;
	color: rgb(var(--b) / 1);
	background: rgb(var(--n) / 0.1);
	border-radius: 1rem 1rem 0 0;
	transform: translateY(100%);
	backdrop-filter: blur(20px) saturate(1.1);
	-webkit-backdrop-filter: blur(20px) saturate(1.1);
	z-index: 200;
	overflow: hidden;
}

.site-footer .stamp {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30dvh;
	gap: 0.75rem;
	padding: 1.5rem;
	text-align: center;
	transform: none;
}

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

.site-footer .stamp h4,
.site-footer .stamp p {
	margin: 0;
	color: rgb(var(--b) / 1);
}

.site-footer .footer-container {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	height: 40dvh;
	padding: 2rem 5% !important;
	color: rgb(var(--b) / 1);
	background: rgb(var(--n) / 1);
	border-radius: 1rem 1rem 0 0;
	overflow-y: auto;
}

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

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

.site-footer .footer-container .easy-menu,
.site-footer .footer-container .soporte {
	width: 100%;
	text-align: left;
}

.site-footer .footer-container .easy-menu {
	justify-content: flex-start;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.site-footer .footer-container .soporte {
	justify-content: flex-start;
	align-items: flex-start;
}

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

.site-footer .footer-container .soporte .brand img {
	display: block;
	width: 40%;
	height: auto;
	margin: 0;
	filter: invert(1);
}

.site-footer .footer-container a {
	margin: 0;
	font-size: 0.9rem;
	color: rgb(var(--b) / 1);
}

.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;
	background: rgb(var(--b) / 1);
	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: 5%;
	bottom: 0.75rem;
	margin: 0;
	color: rgb(var(--c1) / 1);
}

/* toggle */
.header-toggle{
	position:absolute;
	top:50%;
	right:5vw;
	transform:translateY(-50%);
	width:3rem;
	height:3rem;
	padding:0;
	margin:0;
	border:none;
	border-radius:0;
	background:none;
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:220;
	color:rgb(var(--b)/1);
	cursor:pointer;
}

.header-toggle .btn-open-menu,
.header-toggle .btn-close-menu{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:1.5rem;
	line-height:1;
	transition:opacity .25s ease, transform .25s ease;
}

.header-toggle .btn-open-menu{
	opacity:1;
	pointer-events:auto;
	transform:scale(1);
}

.header-toggle .btn-close-menu{
	opacity:0;
	pointer-events:none;
	transform:scale(.85);
}

.header-toggle.is-open .btn-open-menu{
	opacity:0;
	pointer-events:none;
	transform:scale(.85);
}

.header-toggle.is-open .btn-close-menu{
	opacity:1;
	pointer-events:auto;
	transform:scale(1);
}

/* menu panel */
#main-menu{
	position:fixed;
	top:5dvh;
	left:-100vw;
	width:90vw;
	height:90dvh;
	padding:5rem 1.25rem 1.25rem;
	background:rgb(var(--b)/1);
	color:rgb(var(--n)/1);
	overflow-y:auto;
	overflow-x:hidden;
	border-radius:0 1rem 1rem 0;
	box-shadow:0 1rem 3rem rgb(var(--n-light)/.2);
	transition:left .35s ease;
	z-index:210;
}

#main-menu.is-open{
	left:0;
}

/* root */
.menu-root{
	display:flex;
	flex-direction:column;
	gap:.5rem;
	margin:0;
	padding:0;
	list-style:none;
}

/* items */
#main-menu li{
	position:relative;
	display:flex;
	flex-direction:column;
	gap:.35rem;
	padding:.85rem 2.5rem .85rem 1rem;
	margin:0;
	font-size:.95rem;
	font-weight:500;
	color:rgb(var(--n)/1);
	list-style:none;
	border-right:none;
	border-bottom:1px solid rgb(var(--n-light)/.15);
	transition:background .2s ease;
}

#main-menu li:last-child{
	border-bottom:none;
}

#main-menu .menu-root > li:hover{
	cursor:pointer;
}

#main-menu li i{
	display:block;
	margin-top:.15rem;
	font-size:.7rem;
	font-style:normal;
	line-height:1.35;
	color:rgb(var(--b-dark)/1);
}

/* arrows */
#main-menu li:has(> ul)::after{
	content:"\e900";
	position:absolute;
	top:1rem;
	right:1rem;
	font-family:"icomoon" !important;
	font-size:1rem;
	line-height:1;
	color:rgb(var(--c1)/1);
	transform:rotate(0deg);
	transition:transform .2s ease;
}

#main-menu li.is-open:has(> ul)::after{
	transform:rotate(180deg);
}

/* open states */
#main-menu .menu-root li.is-open > ul{
	display:flex !important;
}

/* level 1 submenu */
#main-menu .menu-root > li > ul{
	display:none;
	flex-direction:column;
	gap:.35rem;
	position:static;
	min-width:0;
	margin:.75rem 0 0;
	padding:.75rem;
	background:rgb(var(--b-light)/1);
	border:1px solid rgb(var(--b-dark)/1);
	border-radius:.75rem;
	box-shadow:none;
	backdrop-filter:none;
	-webkit-backdrop-filter:none;
}

/* all submenu items */
#main-menu .menu-root ul li{
	display:flex;
	flex-direction:column;
	padding:.75rem 2rem .75rem .75rem;
	color:rgb(var(--n)/1);
	border:none;
	border-radius:.5rem;
	background:transparent;
}

#main-menu .menu-root ul li:hover{
	background:rgb(var(--b-dark)/1);
	color:rgb(var(--n)/1);
}

/* nested submenu */
#main-menu .menu-root ul ul{
	display:none;
	flex-direction:column;
	gap:.25rem;
	position:static;
	margin-top:.5rem;
	padding:.75rem 0 0 .75rem;
	background:transparent;
	border-top:1px solid rgb(var(--n)/.12);
	border-bottom:none;
}

#main-menu .menu-root ul ul li{
	padding:.6rem .75rem .6rem 1.75rem !important;
}

#main-menu .menu-root ul ul li::before{
	content:"\e906";
	position:absolute;
	top:.9rem;
	left:.5rem;
	font-family:"icomoon" !important;
	font-size:.8rem;
	line-height:1;
	color:rgb(var(--n)/1);
	transform:none;
}
#main-menu.is-open{
	left:5vw;
}

/* popup */
#popup-root {
	position: fixed;
	inset: 0;
	display: none;
	backdrop-filter: blur(50px) saturate(1.1);
	-webkit-backdrop-filter: blur(50px) saturate(1.1);
	z-index: 160;
}

#popup-root.active {
	display: block;
}

.popup-container {
	position: absolute;
	top: 9dvh;
	left: 5%;
	width: 90%;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-image:
		linear-gradient(-45deg, rgb(var(--c4) / 0.1) 0%, rgb(var(--c4) / 0.3) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.popup-shell {
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
}

body.popup-open {
	overflow: hidden;
}

/* gallery base + zoom */
.pic-gallery{
	flex-direction: column-reverse;
}

.pic-gallery > article:nth-child(1) {
	width: 100%;
}

.pic-gallery > article:nth-child(2) {
	width: 100%;
}

.pic-gallery .gallery-cols {
	margin: 0;
	padding: 0;
	list-style: none;
	column-count: 3;
	column-gap: .25rem;
}

.pic-gallery .gallery-cols > li {
	display: inline-block;
	width: 100%;
	background: #1b1b1b;
	break-inside: avoid;
}

.pic-gallery .gallery-cols figure {
	margin: 0;
	cursor: pointer;
	aspect-ratio: 1 / 1;
}

.pic-gallery .gallery-cols img {
	display: block;
	width: 100%;
	height: auto;
}

.pic-gallery .gallery-cols .artxt {
	display: none;
}

/* pic-gallery | pin-style */
.pic-gallery.pin-style {
	display: flex;
	align-items: flex-start;
}

.pic-gallery.pin-style > article:nth-child(1) {
	width: 100%;
	min-width: 0;
}

.pic-gallery.pin-style > article:nth-child(2) {
	width: 100%;
}

.pic-gallery.pin-style .gallery-cols {
	margin: 0;
	padding: 1rem;
	list-style: none;
	column-count: 3;
	column-gap: .25rem;
}

.pic-gallery.pin-style .gallery-cols > li {
	display: inline-block;
	width: 100%;
	margin-bottom: 1rem;
	vertical-align: top;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
}

.pic-gallery.pin-style .gallery-cols figure {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: #111;
	aspect-ratio: 1 / 1;
}

.pic-gallery.pin-style .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-square figure {
	aspect-ratio: 1 / 1;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-portrait figure {
	aspect-ratio: 2 / 2.5;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-landscape figure {
	aspect-ratio: 2.5 / 2;
}

.pic-gallery.pin-style .gallery-cols figcaption {
	position: absolute;
	left: 0.75rem;
	bottom: 0.75rem;
	z-index: 2;
	margin: 0;
	padding: 0.3rem 0.5rem;
	font-size: 0.75rem;
	line-height: 1;
	color: #fff;
	background: rgba(0, 0, 0, 0.45);
}

.pic-gallery.pin-style .gallery-cols .artxt {
	padding: 1rem;
}

.pic-gallery.pin-style .gallery-cols .artxt dt,
.pic-gallery.pin-style .gallery-cols .artxt dd,
.pic-gallery.pin-style .gallery-cols .artxt h3,
.pic-gallery.pin-style .gallery-cols .artxt h4,
.pic-gallery.pin-style .gallery-cols .artxt p {
	margin: 0;
	padding: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt  {
	display: block;
}

/* pic-gallery | modula-grid */
.pic-gallery.modula-grid {
	display: flex;
	align-items: flex-start;
}

.pic-gallery.modula-grid > article:nth-child(1) {
	width: 100%;
	min-width: 0;
}

.pic-gallery.modula-grid > article:nth-child(2) {
	width: 100%;
	min-width: 0;
}

.pic-gallery.modula-grid .gallery-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: var(--cell);
	grid-auto-flow: dense;
	gap: 5px;
	margin: 0;
	padding: 1rem;
	list-style: none;
}

.pic-gallery.modula-grid .gallery-cols > li {
	position: relative;
	display: block;
	width: auto;
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	break-inside: auto;
	-webkit-column-break-inside: auto;
	grid-column: span 1;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-1x1 {
	grid-column: span 1;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-2x1 {
	grid-column: span 2;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-1x2 {
	grid-column: span 1;
	grid-row: span 2;
}

.pic-gallery.modula-grid .gallery-cols > li.size-2x2 {
	grid-column: span 2;
	grid-row: span 2;
}

.pic-gallery.modula-grid .gallery-cols figure {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
}

.pic-gallery.modula-grid .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery.modula-grid .gallery-cols .artxt {
	display: block;
	position: absolute;
	z-index: 2;
	right: 5%;
	bottom: 5%;
	color: rgb(var(--b)/1);
	text-align: right;
	background: none;
}
.pic-gallery.modula-grid .gallery-cols .artxt h3,
.pic-gallery.modula-grid .gallery-cols .artxt hr,
.pic-gallery.modula-grid .gallery-cols .artxt p {
	display: none;
}

.zoom {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.92);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 150;
}

.zoom.open {
	opacity: 1;
	pointer-events: auto;
}

.zoom img {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
}

.zoom-close,
.zoom-prev,
.zoom-next {
	position: absolute;
	padding: 0.5rem;
	font-size: 2.5rem;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	border: none;
	background: none;
}

.zoom-close {
	top: 1rem;
	right: 1rem;
}

.zoom-prev {
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
}

.zoom-next {
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
}

.zoom-count {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	color: #f00;
	transform: translateX(-50%);
}
/* slider */
.slider{
	flex-direction: column;
}
.slider > article:nth-child(1) {
	display: block;
	width: 100%;
}

.slider > article:nth-child(2) {
	width: 100%;
}

.slider-layer {
	position: relative;
}

.slider-media {
	position: relative;
	overflow: hidden;
	--media-duration: 1s;
	--media-ease: ease;
	--media-opacity-off: 0;
	--media-opacity-on: 1;
	--media-x-off: 0%;
	--media-x-on: 0%;
	--media-y-off: 0%;
	--media-y-on: 0%;
	--media-scale-off: 1;
	--media-scale-on: 1;
	--media-blur-off: 20px;
	--media-blur-on: 0px;
}

.slider-media::before {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
}

.slider-list,
.thumb-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.slider-media .slide,
.slider-text .slide {
	position: absolute;
	inset: 0;
	pointer-events: none;
	will-change: opacity, transform, filter;
}

.slider-media .slide {
	opacity: var(--media-opacity-off);
	transform: translate(var(--media-x-off), var(--media-y-off)) scale(var(--media-scale-off));
	filter: blur(var(--media-blur-off));
	transition:
		opacity var(--media-duration) var(--media-ease),
		transform var(--media-duration) var(--media-ease),
		filter var(--media-duration) var(--media-ease);
}

.slider-media .slide.is-active {
	opacity: var(--media-opacity-on);
	transform: translate(var(--media-x-on), var(--media-y-on)) scale(var(--media-scale-on));
	filter: blur(var(--media-blur-on));
	pointer-events: auto;
}

.slider-media .slide-media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slider-text {
	position: absolute;
	top: 5%;
	left: 5%;
	width: 63%;
	height: 100%;
	z-index: 2;
	--media-duration: 0.7s;
	--text-ease: ease;
	--text-opacity-off: 0;
	--text-opacity-on: 1;
	--text-x-off: 0%;
	--text-x-on: 0%;
	--text-y-off: 0%;
	--text-y-on: 0%;
	--text-scale-off: 1;
	--text-scale-on: 1;
	--text-blur-off: 0px;
	--text-blur-on: 0px;
}

.slider-text .slide {
	display: flex;
	align-items: flex-start;
	opacity: var(--text-opacity-off);
	transform: translate(var(--text-x-off), var(--text-y-off)) scale(var(--text-scale-off));
	filter: blur(var(--text-blur-off));
	transition:
		opacity var(--text-duration) var(--text-ease),
		transform var(--text-duration) var(--text-ease),
		filter var(--text-duration) var(--text-ease);
}

.slider-text .slide.is-active {
	opacity: var(--text-opacity-on);
	transform: translate(var(--text-x-on), var(--text-y-on)) scale(var(--text-scale-on));
	filter: blur(var(--text-blur-on));
	pointer-events: auto;
}

.slider-text .artxt {
	width: 100%;
	color: rgb(var(--b) / 1);
}

.slider-control-panel {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	display: grid;
	width: 100%;
	gap: 0.75rem;
	padding: 0;
	background: #555;
}

.slider-timer {
	height: 2px;
	background: rgb(var(--c1) / 1);
	overflow: hidden;
}

.slider-timer .bar {
	width: 0;
	height: 100%;
	background: rgb(var(--b-dark) / 1);
}

.slider-counter {
	position: absolute;
	right: 5%;
	bottom: 1rem;
	color: rgb(var(--b) / 1);
}

.slider-controls {
	position: absolute;
	right: 5%;
	bottom: 3rem;
	display: flex;
	gap: 0.5rem;
	color: rgb(var(--b) / 1);
}

.slider-controls button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

.slider-pause {
	display: none;
}

[data-slider].is-play .slider-play,
.slider.is-play .slider-play {
	display: none;
}

[data-slider].is-play .slider-pause,
.slider.is-play .slider-pause {
	display: inline-flex;
}

[data-slider].is-pause .slider-play,
.slider.is-pause .slider-play {
	display: inline-flex;
}

[data-slider].is-pause .slider-pause,
.slider.is-pause .slider-pause {
	display: none;
}

.slider-thumbs {
	--thumb-gap: 0.35rem;
	--thumb-preview: 4;
	margin-top: 0.5rem;
	overflow: hidden;
}

.thumb-list {
	display: flex;
	gap: var(--thumb-gap);
}

.thumb {
	flex: 0 0 calc((100% - (var(--thumb-gap) * (var(--thumb-preview) - 1))) / var(--thumb-preview));
	overflow: hidden;
	cursor: pointer;
	opacity: 0.5;
	aspect-ratio: 3 / 2;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.thumb:hover {
	opacity: 1;
}

.thumb.is-active {
	opacity: 1;
	transform: scale(1.03);
}
/* headline */
.headline {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	margin: 0 auto;
	padding: 1rem;
}

.headline.bg-over::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background: radial-gradient(
		circle at 0% 0%,
		rgb(var(--c4) / 1) 0%,
		rgb(var(--c4) / 0.8) 55%,
		rgb(var(--c3) / 0.6) 100%
	);
	mix-blend-mode: multiply;
}

.headline .artxt,
.headline > dt {
	flex: 1;
	min-width: 0;
	margin: 0;
}

.headline p {
	padding-right: 0;
}
/* block */
.block{
	flex-direction: column;
}
.block.r{
	flex-direction: column-reverse;
}
.block > article:nth-child(1) {
	width: 100%;
}

.block > article:nth-child(2) {
	width: 100%;
}

.block.r > article:nth-child(1) {
	width: 100%;
}

.block.r > article:nth-child(2) {
	width: 100%;
	z-index: 2;
}

.block .artxt,
.block.r .artxt {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.artxt.dt-dual .dt-split,
.artxt.dt-dual-rev .dt-split {
	width: auto;
	left: auto;
	color: inherit;
	text-align: inherit;
}

.artxt.dt-dual .dt-solid,
.artxt.dt-dual .dt-image,
.artxt.dt-dual .dt-real,
.artxt.dt-dual-rev .dt-solid,
.artxt.dt-dual-rev .dt-image,
.artxt.dt-dual-rev .dt-real {
	position: static;
	inset: auto;
	display: contents;
	height: auto;
	pointer-events: auto;
	clip-path: none !important;
	color: inherit;
}

.artxt.dt-dual .dt-image,
.artxt.dt-dual .dt-real,
.artxt.dt-dual-rev .dt-image,
.artxt.dt-dual-rev .dt-real {
	display: none;
}

/* poster */
.poster {
	width: 100%;
	height: 100dvh;
	opacity: 1;
	transition: opacity 0.5s ease-out;
	will-change: opacity;
}

.poster article {
	position: relative;
	width: 100%;
	height: 100dvh;
}

.poster figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	aspect-ratio: 9 / 16;
	z-index: 1;
}

.poster .artxt {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 81%;
	margin: 0 auto;
	padding: 2rem;
	color: rgb(var(--b) / 1);
	border-radius: 2rem;
	transform: translate(-50%, -50%);
	z-index: 2;
}
/* sweep */
.sweep {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.sweep > article {
	position: relative;
	width: 100%;
	height: 100%;
}

.sweep figure.layer_one {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.sweep figure.layer_one img {
	position: absolute;
	top: 50%;
	left: 0;
	width: auto;
	height: 100%;
	min-width: auto;
	max-width: none;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 16 / 9;
	transform: translate(0, -50%);
	animation: sweep-x 30s ease-in-out infinite alternate;
	will-change: transform;
}

.sweep .layer_two {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 81%;
	padding: 2rem;
	color: rgb(var(--b) / 1);
	pointer-events: auto;
	transform: translate(-50%, -50%);
	z-index: 2;
}

@keyframes sweep-x {
	from {
		transform: translate(0, -50%);
	}

	to {
		transform: translate(-16.666%, -50%);
	}
}

/* break */
.break {
	display: block;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: none !important;
	opacity: 1;
	z-index: 5;
}

.break > article {
	position: relative;
	width: 100%;
	height: 100%;
}

.break figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.break img.responsive-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.break .layer_one {
	z-index: 1;
	pointer-events: none;
}

.break .layer_two {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
	--x0: 0%;
	--x1: 0%;
	--y0: 0%;
	--y1: 0%;
	--scale0: 1;
	--scale1: 1.1;
	--op0: 0;
	--op1: 1;
	--blur0: 10px;
	--blur1: 0px;
	--sat0: 1;
	--sat1: 1;
	will-change: transform, filter, opacity;
}

.break .layer_three {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 3rem;
	color: rgb(var(--b) / 1);
	border-radius: 2rem;
	pointer-events: auto;
	z-index: 3;
	--x0: -50%;
	--x1: -50%;
	--y0: -20%;
	--y1: -50%;
	--scale0: 1.1;
	--scale1: 1;
	--op0: 0;
	--op1: 1;
	--blur0: 0px;
	--blur1: 0px;
	--sat0: 1;
	--sat1: 1;
	--w0: 81%;
	--w1: 81%;
	--tc0: 255, 255, 255;
	--tc1: 123, 211, 43;
	will-change: transform, filter, opacity, width, color;
}

.break-spacer {
	width: 100%;
	height: 200dvh;
	pointer-events: none;
	background: transparent;
}
/* parallax */
.parallax {
	height: 100dvh;
	overflow: hidden;
	--parallax-scroll: 700dvh;
	flex-direction: column
}

.parallax > article:nth-child(1),
.parallax > article:nth-child(2) {
	width: 100%;
}

.parallax > article {
	position: relative;
	width: 100%;
	height: 100%;
}

.parallax .layer_one,
.parallax .layer_two,
.parallax .layer_three {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.parallax .layer_one {
	z-index: 1;
	--x0: 0%;
	--x1: -2%;
	--y0: 0%;
	--y1: 4%;
	--s0: 1;
	--s1: 0.7;
	--c0: 34, 34, 34, 0.5;
	--c1: 34, 34, 34, 0.5;
	--b0: 0px;
	--b1: 2px;
}

.parallax .layer_two {
	z-index: 2;
	--x0: 0%;
	--x1: 5%;
	--y0: 0%;
	--y1: 0%;
	--s0: 1;
	--s1: 1.1;
	--c0: 225, 225, 225, 1;
	--c1: 255, 0, 0, 1;
	--b0: 0px;
	--b1: 0px;
}

.parallax .layer_three {
	z-index: 3;
	--x0: 0%;
	--x1: 10%;
	--y0: 0%;
	--y1: -6%;
	--s0: 0.8;
	--s1: 1;
	--c0: 34, 34, 34, 0.5;
	--c1: 34, 34, 34, 0.5;
	--b0: 5px;
	--b1: 0px;
}

.parallax-spacer {
	height: 700dvh;
}
/* launchpad */
.launchpad {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
}

.launchpad ul h2.small {
	font-size: 1.2rem;
}

.launchpad ul h2 {
	font-size: 2rem;
}

.launchpad ul h3 {
	font-size: 1.2rem;
}

.launchpad ul h4 {
	font-size: 1.1;
}

.launchpad > article:nth-child(1) {
	display: block;
	width: 100%;
	z-index: 1;
}

.launchpad > article:nth-child(2) {
	width: 100%;
	z-index: 2;
}

.launchpad ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.launchpad li {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr auto;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgb(var(--n) / 0.08);
	border-radius: 0;
	box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 0.08);
	transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.launchpad li figure {
	width: 100%;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.launchpad li figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1) brightness(0.94);
	transform: scale(1);
	transition: transform 0.7s ease, filter 0.7s ease;
}

.launchpad li dl {
	padding: 2rem;
	background: rgb(var(--c4-light) / 0.1);
}

.launchpad li dl dt {
	background: rgb(var(--c4-light) / 0.1);
}

.launchpad li dl hr {
	width: 2.25rem;
	height: 1px;
	margin: 1rem;
	border: 0;
	background: rgb(var(--c4) / 1);
	transform: scaleX(1);
	transform-origin: left;
	transition: transform 0.4s ease, background 0.4s ease, width 0.4s ease;
}

.launchpad li dl dd {
	margin: 0;
	opacity: 1;
}

.launchpad li dl dd p {
	margin: 0;
	line-height: 1.25;
	opacity: 0.82;
}

.launchpad li button,
.launchpad li > button:not(.artxt-toggle) {
	position: relative;
	display: inline-block;
	justify-self: start;
	width: auto;
	margin: 0 1.2rem 1.4rem;
	cursor: pointer;
	z-index: 2;
}

.launchpad .artxt-toggle:not(.visible) {
	display: none !important;
}

.launchpad li::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0.2rem;
	background: rgb(var(--c5));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s ease;
}

.launchpad li:hover {
	transform: translateY(-0.4rem);
	border-color: rgb(var(--n) / 0.16);
	box-shadow: 0 1.4rem 3rem rgb(0 0 0 / 0.14);
}

.launchpad li:hover figure img {
	filter: saturate(1.05) contrast(1.04) brightness(0.98);
	transform: scale(1.04);
}

.launchpad li:hover dl {
	color: rgb(var(--b));
	background: rgb(var(--c4-light));
}

.launchpad li:hover dl h4,
.launchpad li:hover dl dd p {
	opacity: 1;
}

.launchpad li:hover dl hr {
	width: 3.5rem;
	background: rgb(var(--c1));
}

.launchpad li:hover::after {
	transform: scaleX(1);
}

/* xscroll móvil */
.xscroll {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto !important;
	padding: 0;
	overflow: hidden;
}

.xscroll > article:nth-child(1),
.xscroll > article:nth-child(2) {
	width: 95%;
	margin: 0 auto;
}

.xscroll > article:nth-child(1) {
	background: rgb(var(--c4) / 1);
	padding: 2rem 0;
}

.xscroll > article:nth-child(2) {
	position: relative;
	min-width: 0;
	min-height: 0;
	padding: 0 0 2rem;
}

.xscroll ul {
	position: relative;
	inset: auto;
	display: flex;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1rem !important;
	list-style: none;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	cursor: grab;
	background: linear-gradient(
		180deg,
		rgb(var(--c4) / 1) 0%,
		rgb(var(--c4) / 1) 18%,
		rgb(var(--c4-light) / 1) 18%,
		rgb(var(--c4-light) / 1) 100%
	);
}

.xscroll ul::-webkit-scrollbar {
	display: none;
}

.xscroll .xscroll-track {
	display: flex;
	align-items: stretch;
	height: auto;
	gap: 0.75rem;
	will-change: auto;
}

.xscroll li {
	position: relative;
	flex: 0 0 78vw;
	width: 78vw;
	height: auto;
	min-width: 78vw;
	margin: 0;
	padding: 0;
	aspect-ratio: 9 / 16;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}

.xscroll figure {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.xscroll img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.xscroll li dl {
	position: absolute;
	top: 6%;
	left: 4%;
	width: 72%;
	padding: 0.75rem;
	color: rgb(var(--b) / 1);
	pointer-events: none;
	z-index: 2;
}

.xscroll li button {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	padding: 0.5rem 1rem;
	color: rgb(var(--b) / 1);
	border: 0;
	background: rgb(var(--n-light) / 1);
}

.xscroll .xscroll-ui {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 0;
	padding: 0 0.5rem;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.xscroll .xscroll-prev,
.xscroll .xscroll-next {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	font-family: icomoon;
	font-size: 1.6rem;
	color: #fff;
	background: rgba(0, 0, 0, 0.45);
	border-radius: 50%;
	cursor: pointer;
	pointer-events: auto;
	transition: opacity 0.25s ease;
}

.xscroll .xscroll-prev {
	left: 0.5rem;
}

.xscroll .xscroll-next {
	right: 0.5rem;
	transform: rotate(270deg);
}

.xscroll .xscroll-prev::before,
.xscroll .xscroll-next::before {
	content: "\e900";
}

.xscroll .xscroll-prev::before {
	transform: rotate(90deg);
}

.xscroll .xscroll-prev.is-hidden,
.xscroll .xscroll-next.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.xscroll .xscroll-indicator {
	position: relative;
	left: auto;
	bottom: auto;
	width: 100%;
	margin-top: 1rem;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-align: center;
	opacity: 1;
}

.xscroll .xscroll-indicator span {
	display: block;
}

.xscroll .xscroll-indicator span.active {
	opacity: 1;
}

.xscroll .xscroll-hint {
	position: relative;
	left: auto;
	top: auto;
	margin: 0.75rem 0 0;
	font-size: 0.9rem;
	text-align: center;
	white-space: normal;
	opacity: 1;
	pointer-events: none;
}

@keyframes item-highlight {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(var(--c1), 0);
	}

	20% {
		transform: scale(1.04);
		box-shadow: 0 0 0 2px rgba(var(--c1), 1), 0 1rem 2rem rgba(0, 0, 0, 0.25);
	}

	100% {
		transform: scale(1.03);
		box-shadow: 0 0 0 2px rgba(var(--c1), 1), 0 1rem 2rem rgba(0, 0, 0, 0.25);
	}
}

/* notes móvil */
.notes {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	padding: 0;
}

.notes > article:nth-child(1),
.notes > article:nth-child(2) {
	position: relative;
	width: 95%;
	margin: 0 auto;
}

.notes > article:nth-child(1) {
	min-height: 70dvh;
	padding: 2rem 0 4rem;
}

.notes > article:nth-child(2) {
	padding: 0 0 2rem;
}

ul.notes-track {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	display: block;
	width: 100%;
	min-height: 60dvh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style: none;
}

ul.notes-track > li.note {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 2rem 1.25rem;
	overflow-y: auto;
	box-sizing: border-box;
	transform: translateX(0%);
	transition: transform 0.6s ease;
	will-change: transform;
}

ul.notes-track > li.note .artxt {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.notes-nav {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 0 0;
}

.notes-nav .prev,
.notes-nav .next {
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.notes-nav .prev.is-disabled,
.notes-nav .next.is-disabled {
	opacity: 0.25;
	pointer-events: none;
	cursor: default;
}

.notes-nav .dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 0.35rem;
}

.notes-nav .dots > span {
	width: 0.5rem;
	height: 0.5rem;
	background: currentColor;
	border-radius: 999px;
	cursor: pointer;
	opacity: 0.35;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.notes-nav .dots > span.active {
	opacity: 1;
	transform: scale(1.15);
}






/* ============= */
/* cta */
.cta-popover {
	position: fixed;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: min(20rem, calc(100vw - 2rem));
	padding: 0.75rem;
	background: rgb(var(--c5) / 0.5);
	border-radius: 0.5rem;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.2s ease;
	z-index: 120;
}

.cta-popover.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.cta-popover-title {
	font-size: 0.85rem;
	font-weight: 600;
}
/* cookies */
.cookies-gate {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 2rem;
	background: rgb(var(--n) / 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cookies-gate.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.cookies-box {
	width: min(42rem, 100%);
	padding: 1.5rem 1.5rem 1.25rem;
	background: rgb(var(--b) / 1);
	border: 1px solid rgb(var(--n) / 0.08);
	border-radius: 1rem;
	box-shadow: 0 1.5rem 4rem rgb(var(--n) / 0.2);
}

.cookies-box h4 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgb(var(--n) / 1);
}

.cookies-box p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: rgb(var(--n-light) / 1);
}

.cookies-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.cookies-actions button {
	margin: 0;
}

.cookies-accept {
	color: rgb(var(--b) / 1);
	background: rgb(var(--n) / 1);
}

.cookies-more {
	color: rgb(var(--n) / 1);
	background: rgb(var(--b-dark) / 1);
}

body.cookies-locked {
	overflow: hidden;
}

/* bg */
.bg-grad {
	position: relative;
	isolation: isolate;
	background-image:
		linear-gradient(
			90deg,
			rgb(var(--c4) / 1) 0%,
			rgb(var(--c4) / 1) 10%,
			rgb(var(--c5) / 1) 10%,
			rgb(var(--c5) / 1) 100%
		),
		url("../../assets/img/bg.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-blend-mode: normal;
}

.bg-over::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background: radial-gradient(
		circle at 0% 0%,
		rgb(var(--c1) / 1) 0%,
		rgb(var(--c3) / 1) 55%,
		rgb(var(--c5) / 1) 100%
	);
	mix-blend-mode: multiply;
}

.bg-img::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image: url("../../assets/img/logo.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
	opacity: 0.1;
}

.bg-grad > *,
.bg-over > *,
.bg-img > * {
	position: relative;
	z-index: 1;
}

/* spectrum-border */
.spectrum-border {
	position: relative;
	border: none !important;
}

.spectrum-border::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: var(--sborder-gradient);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	z-index: 2;
}

.spectrum-border > * {
	position: relative;
	z-index: 3;
}

.spectrum-border.border-all::before {
	padding: 2px;
	border-radius: inherit;
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
}

.spectrum-border.border-top::before {
	inset: 0 0 auto 0;
	height: 4px;
}

.spectrum-border.border-right::before {
	inset: 0 0 0 auto;
	width: 2px;
}

.spectrum-border.border-bottom::before {
	inset: auto 0 0 0;
	height: 2px;
}

.spectrum-border.border-left::before {
	inset: 0 auto 0 0;
	width: 2px;
}

.spectrum-border.border-x::before {
	inset: 0;
	background:
		var(--sborder-gradient) left top / 2px 100% no-repeat,
		var(--sborder-gradient) right top / 2px 100% no-repeat;
}

.spectrum-border.border-y::before {
	inset: 0;
	background:
		var(--sborder-gradient) left top / 100% 2px no-repeat,
		var(--sborder-gradient) left bottom / 100% 2px no-repeat;
}

/* helpers */
.spacer {
	height: 50dvh;
}

.spacer.ii {
	height: 100dvh;
}

.spacer.iii {
	height: 150dvh;
}

.principal_header {
	position: fixed;
	left: 0;
	bottom: 9%;
	font-size: 0.9rem;
	font-weight: 300;
	color: rgb(var(--n) / 0.5);
	text-transform: inherit;
	transform-origin: top left;
	transform: rotate(-90deg);
	opacity: 1;
	z-index: 200;
}

.simple_btn {
	position: fixed;
	top: 50%;
	left: 0;
	padding: 0.2em 1em 0.5em;
	font-size: 0.6rem;
	color: rgb(var(--n) / 0.75);
	background: rgb(var(--n) / 0.25);
	border-radius: 0 0 10px 10px;
	transform-origin: top left;
	transform: translateY(-50%) rotate(-90deg);
	opacity: 0.5;
	z-index: 200;
}

/* glass */
.glass {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(30deg, rgb(var(--n) / 0.1) 0%, rgb(var(--n-light) / 0.4) 100%);
	border: 1px solid;
	border-image-source: linear-gradient(45deg, rgb(var(--b) / 0.25), rgb(var(--n) / 0.1));
	border-image-slice: 1;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.glass::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url("../../assets/img/patternblack.png") repeat;
	background-size: 2px;
	filter: invert(1);
	opacity: 0.25;
}

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

/* viewpoint */
.viewpoint {
	position: fixed;
	top: 50%;
	right: 2rem;
	z-index: 120;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	transform: translateY(-50%);
}

.viewpoint a {
	display: block;
	font-family: "icomoon";
	font-size: 1rem;
	color: rgb(var(--n) / 1);
	text-decoration: none;
	transition: transform 0.25s ease, color 0.25s ease;
}

.viewpoint a::before {
	content: "\e906";
}

.viewpoint a:hover {
	color: rgb(var(--c4) / 1);
	transform: scale(1.15);
}

.viewpoint a.is-active {
	color: rgb(var(--c1) / 1);
	transform: scale(1.35);
}

/* color-scope */
.color-scope {
	--cd-rgb: 0 0 0;
	--cs-rgb: 0 0 0;
	--ct-rgb: 0 0 0;
	--cf-rgb: 0 0 0;
	--co-rgb: 255 255 255;
}

.cd-txt {
	color: rgb(var(--cd-rgb));
}

.cd-bg {
	background: rgb(var(--cd-rgb) / 1);
}

.cd-brd {
	border: 4px solid rgb(var(--cd-rgb));
}

.cs-txt {
	color: rgb(var(--cs-rgb));
}

.cs-bg {
	background: rgb(var(--cs-rgb) / 1);
}

.cs-brd {
	border: 4px solid rgb(var(--cs-rgb));
}

.ct-txt {
	color: rgb(var(--ct-rgb));
}

.ct-bg {
	background: rgb(var(--ct-rgb) / 1);
}

.ct-brd {
	border: 4px solid rgb(var(--ct-rgb));
}

.cc-txt {
	color: rgb(var(--cf-rgb));
}

.cc-bg {
	background: rgb(var(--cf-rgb) / 1);
}

.cc-brd {
	border: 4px solid rgb(var(--cf-rgb));
}

.co-txt {
	color: rgb(var(--co-rgb));
}

.co-bg {
	background: rgb(var(--co-rgb) / 1);
}

.co-brd {
	border: 4px solid rgb(var(--co-rgb));
}

.gc-txt {
	position: fixed;
	top: 2%;
	left: 2%;
	z-index: 200;
	color: rgb(var(--viewport-color));
	transition: color 0.5s ease;
}

.gc-bg {
	background-color: rgb(var(--viewport-color));
	transition: background-color 0.5s ease;
}

.gc-border {
	border: 3px solid transparent;
	border-color: rgb(var(--viewport-color));
	transition: border-color 0.5s ease;
}

/* states */
[data-item] {
	transition:
		transform 0.35s ease,
		opacity 0.35s ease,
		filter 0.35s ease,
		box-shadow 0.35s ease,
		outline-color 0.35s ease;
}

[data-item].item-target {
	position: relative;
	transform: scale(1.03);
	filter: none;
	opacity: 1;
	border: 2px solid rgb(var(--c1) / 1);
	z-index: 5;
}

[data-item].is-featured {
	position: relative;
	transform: scale(1.03);
	opacity: 1;
	filter: none;
	box-shadow: 0 0 0 2px rgba(var(--c1), 1), 0 1rem 2rem rgba(0, 0, 0, 0.25);
	z-index: 3;
}

[data-item].is-featured-temporary {
	animation: item-highlight 2.2s ease;
}

.hide,
.show {
	opacity: 0 !important;
	pointer-events: none;
	transition: opacity 1s ease !important;
}

.hide.hide-visible,
.show.show-visible {
	opacity: 1 !important;
	pointer-events: auto;
}

/* contact-form móvil */
.booking-section {
	width: 100%;
	padding: 2rem 5%;
	color: rgb(var(--c4));
}

.form-container {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 1.5rem;
	background: rgb(var(--b) / 1);
	border-radius: 8px;
}

fieldset {
	margin-bottom: 1.5rem;
	padding: 0;
	border: none;
}

legend {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	font-size: 0.9rem;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 1px solid rgb(var(--c4) / 0.2);
}

.grid-2,
.grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.field {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.field label {
	margin-bottom: 0.4rem;
	font-size: 0.85rem;
	opacity: 0.8;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 0.8rem;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	background: rgba(var(--c4), 0.05);
	border: 1px solid rgb(var(--c4) / 0.2);
	border-radius: 4px;
	box-sizing: border-box;
}

select {
	appearance: auto !important;
	-webkit-appearance: menulist !important;
}

textarea {
	height: 120px;
	resize: vertical;
}

.form-footer {
	padding-top: 1.5rem;
	text-align: center;
	border-top: 1px solid rgb(var(--c4) / 0.2);
}

.privacy {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px;
	margin-bottom: 1.5rem;
	font-size: 0.8rem;
	text-align: left;
	cursor: pointer;
}

.privacy input[type="checkbox"] {
	appearance: checkbox !important;
	-webkit-appearance: checkbox !important;
	position: relative !important;
	width: 20px !important;
	height: 20px !important;
	margin: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
	flex-shrink: 0;
}

.btn-submit {
	width: 100%;
	padding: 1rem 1.5rem;
	font-weight: bold;
	letter-spacing: 1px;
	color: rgb(var(--c1));
	cursor: pointer;
	background: rgb(var(--c4));
	border: none;
	transition: opacity 0.3s;
}

.btn-submit:hover {
	opacity: 0.8;
}

.btn-submit:disabled {
	opacity: 0.3 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}



























