.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

.type-tiny {
	color: wheat !important;
}

.type-tiny,
.cdawrap {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 400;
	font-variation-settings: "wght" 400;
	color: #F5DBE3;
}

.frame {
	padding: var(--page-padding);
	text-transform: uppercase;
	position: relative;
	display: grid;
	line-height: 1;
	height: 100vh;
	grid-row-gap: 0.5rem;
	grid-column-gap: 2rem;
	justify-items: start;
	align-content: start;
	background: var(--color-bg-frame);
	grid-template-columns: auto auto;
	grid-template-rows: auto auto auto 1fr;
	grid-template-areas: 'logo' 'tags' 'sponsor' 'subline' 'title';
}

.frame #cdawrap {
	justify-self: start;
}

.frame__title {
	white-space: nowrap;
	grid-area: title;
	font-size: clamp(2rem, 20vw, 20rem);
	margin: 0;
	letter-spacing: -0.05em;
	padding-top: 0.15em;
	font-weight: 400;
	line-height: 0.55;
	text-indent: -0.065em;
	word-spacing: 0.15em;
	font-family: "bricolage-grotesque-48", sans-serif;
}

.frame__subline {
	grid-area: subline;
}

.frame__tags {
	grid-area: tags;
}

.frame__logo {
	grid-area: logo;
	padding-bottom: 0.15rem;
	font-size: 1.5rem;
	font-family: "bricolage-grotesque-48", sans-serif;
}

.flex-line {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.content {
	position: relative;
	min-height: 100dvh;
	background: var(--color-bg-content);
	align-content: center;
}

.content--cutoff {
	overflow: hidden;
}

.content--padded {
	padding: var(--page-padding);
}

.content--full {
	display: grid;
	height: 100vh;
	place-items: center;
	grid-template-areas: 'main';
	grid-template-rows: 100%;
	grid-template-columns: 100%;
}

.content__text {
	font-size: 1.7rem;
	max-width: 625px;
	line-height: 1.4;
	margin: 0.5rem 0;
	font-weight: 500;
	font-variation-settings: "wght" 500;
	text-wrap: balance;
	letter-spacing: -0.025em;
}

.grid {
	grid-area: main;
	display: grid;
	width: 100%;
	height: 100%;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: 1fr 1fr 1fr;
}

.grid--spaced {
	gap: var(--grid-gap);
}

.grid--zoomed {
	gap: 2rem;
	grid-template-columns: repeat(8, 15%);
	grid-template-rows: repeat(3, 30%);
	justify-content: center;
	align-content: center;
	aspect-ratio: 2 / 1;
}

.grid--zoomed-2 {
	gap: 2rem;
	grid-template-columns: repeat(3, 70%);
	grid-template-rows: repeat(3, 60%);
	justify-content: center;
	align-content: center;
	aspect-ratio: 2 / 1;
}

.grid--zoomed .grid__img,
.grid--zoomed-2 .grid__img {
	width: 100%;
	height: 100%;
}

.grid--columns {
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, min-content);
	align-content: center;
}

.grid--columns-12 {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, min-content);
	align-content: center;
}

.grid--single {
	height: auto;
	justify-self: center;
}

.grid--column {
	grid-template-columns: repeat(15, calc((100% - 14 * 10px) / 15));
	gap: 10px;
	grid-template-rows: auto;
}

.grid__img:has(.grid__img-inner) {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	max-height: 100%;
	min-width: 100%;
}

.grid__img .grid__img-inner {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	will-change: transform;
}

.ar-wide {
	aspect-ratio: 4/3;
}

.ar-narrow {
	aspect-ratio: 2/3;
}

.ar-rect {
	aspect-ratio: 1;
}

.span-2 {
	grid-column: auto / span 2;
}

.span-3 {
	grid-column: auto / span 3;
}

.grid--small {
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
}

.grid--tiny {
	height: 60vh;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: auto;
	gap: 10px;
}

.grid--wide {
	gap: 10px;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(7, 1fr);
	height: 100dvh !important;
}

.pos-1 {
	grid-area: 1 / 1;
}

.pos-2 {
	grid-area: 1 / 3;
}

.pos-3 {
	grid-area: 1 / 4;
}

.pos-4 {
	grid-area: 1 / 5;
}

.pos-5 {
	grid-area: 1 / 7;
}

.pos-6 {
	grid-area: 2 / 1;
}

.pos-7 {
	grid-area: 2 / 3;
}

.pos-8 {
	grid-area: 2 / 4;
}

.pos-9 {
	grid-area: 2 / 6;
}

.pos-10 {
	grid-area: 2 / 7;
}

.pos-11 {
	grid-area: 2 / 8;
}

.pos-12 {
	grid-area: 3 / 1;
}

.pos-13 {
	grid-area: 3 / 2;
}

.pos-14 {
	grid-area: 3 / 4;
}

.pos-15 {
	grid-area: 3 / 5;
}

.pos-16 {
	grid-area: 3 / 7;
}

.pos-17 {
	grid-area: 3 / 8;
}

.pos-18 {
	grid-area: 2 / 5;
}

.grid__img {
	background-size: cover;
	background-position: 50% 50%;
	pointer-events: none;
	will-change: transform;
	transform: translateZ(0.1px);
}

.grid--columns .grid__img,
.grid--columns-12 .grid__img {
	height: min-content;
	aspect-ratio: 2 / 3;
}

.content__title {
	grid-area: main;
	position: relative;
	display: flex;
	flex-direction: column;
}

.content__title-main {
	font-size: clamp(2rem, 7vw, 4.5rem);
	line-height: 1;
	margin: 0.5rem 0 0;
	font-weight: 500;
	font-variation-settings: "wght" 500;
	text-wrap: balance;
	letter-spacing: -0.025em;
	margin-left: -1100px !important;
}

.content__title-main+p {
	margin: 0;
	max-width: 100px;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.end {
	align-self: end;
}

.acenter {
	align-self: center;
}

.page-footer {
	padding: var(--page-padding);
	position: relative;
	display: grid;
	width: 100%;
	grid-row-gap: 1rem;
	grid-column-gap: 2rem;
	justify-items: start;
	margin-top: 40vh;
	grid-template-columns: auto;
	justify-content: space-between;
}

.px-30 {
	padding: 0 30px;
}



/* ANIMATION 3 SPECIFIC STYLES */
.mb-240 {
	margin-top: -240px;
	margin-bottom: 330px !important;
}

.text-a-3 {
	position: fixed;
	bottom: 0;
}

.text-a-3>h2 {
	color: #ffffff;
}

/* ANIMATION 5 SPECIFIC STYLES */
.text-a5 {
	font-size: 16px;
	font-weight: 500;
	font-variation-settings: "wght" 500;
	text-wrap: balance;
	letter-spacing: -0.025em;
	color: #ffffff;
	transform: translateX(-10px)
}

/* ANIMATION 6 SPECIFIC STYLES */
.content__title-main-a6 {
	padding: 0 8px;
	color: #ffffff;
	font-weight: 500;
}

.content-title-a6 {
	padding: 0 30px;
	text-align: center;
}

/* ANIMATION 10 SPECIFIC STYLES */
.text-a10 {
	font-size: 16px;
	font-weight: 500;
	font-variation-settings: "wght" 500;
	text-wrap: balance;
	letter-spacing: -0.025em;
	color: #ffffff;
}

/* Estilos para el texto de la animación 12 (Usada en Mariscal Section 2) */
.caption-title-home-12 {
	font-size: 36px;
	line-height: 42px;
	text-transform: uppercase;
	font-weight: 700;
	max-width: 544px;
	margin: 0 auto;
}

.caption-title-home-12 span {
	/* Degradado para el texto */
	/* line-height: 60px; */
	background: linear-gradient(to top right, #555C6C, #C7A785);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Estilos para el texto de la animación 7 (Usada en Mariscal section 4) */
.content__title-main-a7 {
	font-weight: 700;
	font-size: 36px;
	line-height: 54px;
	text-transform: uppercase;
	max-width: 462px;
	margin: 0 auto;
	color: #E0D0BF;
}

.content__title-main-a7>span {
	font-size: 60px;
}


@media screen and (min-width: 475px) {
	.grid--columns-12 {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(3, min-content);
	}
}

@media (max-aspect-ratio: 16/9) {
	.grid:not(.grid--zoomed) {
		width: 100%;
		height: auto;
		aspect-ratio: 16/9;
	}

	.grid:not(.grid--zoomed-2) {
		width: 100%;
		height: auto;
		aspect-ratio: 16/9;
	}
}

@media screen and (min-width: 53em) {
	.frame {
		grid-template-columns: 20% 1fr 1fr;
		grid-template-rows: min-content 1fr auto;
		grid-row-gap: 15vh;
		align-items: center;
		grid-template-areas: 'logo tags sponsor' '... ... subline' 'title title title';
	}

	.frame__links {
		margin-left: 3rem;
	}

	.frame__subline {
		align-self: end;
	}

	.frame__title {
		align-self: end;
	}

	.frame #cdawrap {
		text-align: right;
		max-width: 250px;
		justify-self: end;
	}

	.page-footer {
		grid-template-columns: repeat(3, auto);
	}
}

@media screen and (max-width: 1024px) {
	.content__title-main {
		margin-left: -800px !important;
	}

	.grid--zoomed {
		gap: 2rem;
		grid-template-columns: repeat(8, 25%);
		grid-template-rows: repeat(3, 30%);
		justify-content: center;
		align-content: center;
		aspect-ratio: 16 / 9;
	}
}

@media screen and (max-width: 768px) {
	.content__title-main {
		margin-left: -600px !important;
	}


}

@media screen and (min-width: 768px) {
	.grid--columns-12 {
		grid-template-columns: repeat(3, 1fr);
	}

	.grid--wide {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(5, 1fr);
	}

	.text-a10 {
		font-size: 24px;
	}

	.caption-title-home-12 span>span {
		font-size: 56px;
	}

	.caption-title-home-12 span {
		line-height: 60px;
	}

	.content__title-main-a7>span {
		font-size: 86px;
	}

	.content__title-main-a7 {
		line-height: 71px;
		font-size: 48px;
	}
}

@media screen and (min-width: 1024px) {
	.grid--columns-12 {
		grid-template-columns: repeat(6, 1fr);
	}

	.grid--wide {
		grid-template-columns: repeat(5, 1fr);
		grid-template-rows: repeat(4, 1fr);
	}

	.text-a5,
	.text-a10 {
		font-size: 36px;
	}

	.paddingTop-a5 {
		padding-top: 130px;
	}
}

@media screen and (max-width: 640px) {
	.content__title-main {
		margin-left: -380px !important;
	}

	.grid--zoomed {
		gap: 2rem;
		grid-template-columns: repeat(4, 45%);
		grid-template-rows: repeat(3, 30%);
		justify-content: center;
		align-content: center;
		aspect-ratio: 16 / 9;
	}
}

.specific-bg {
	background-color: #282D36;
}