/*

Theme Name: MatchCup y AfterCup
Description: Theme para MatchCup y AfterCup
Theme URI: https://aftercup.mx
Author: Buen-Día
Version: 4.4.5

*/


/* TEXTURAS */
.home-panel-cover::after,
.home-panel-content::after,
footer::after {
	content: '';
	background-image: url('assets/img/textura-01.jpeg');
	background-repeat: repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	mix-blend-mode: color-burn;
	opacity: 1;
	z-index: 2;
	pointer-events: none;
}

/* Secciones  */


@keyframes fadeIn {
	from {opacity: 0; bottom: -10px;}
	to {opacity: 1; bottom: 0;}
}

@keyframes fadeOut {
	from {opacity: 1;}
	to {opacity: 0;}
}



@keyframes fondoAnimated {
	0%{background-size: 150vh ;}
	50% {background-size: 155vh ;}
	100% {background-size: 150vh ;}
}


@keyframes movingImage {
	0% {bottom: 0}
	50% {bottom: 2%}
	100% {bottom: 0}
}

section.seccion {height: 100vh; background-color: var(--color-claro);}


body#home main {
	margin-bottom: 0;
	background-color: var(--color-claro);
	align-items: stretch;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-home-button {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(72px, 6.8vw, 112px);
	height: clamp(72px, 6.8vw, 112px);
	background-color: var(--ylw-1);
	color: var(--azul-bg);
	font-size: clamp(1.45rem, 2.2vw, 2.5rem);
	text-decoration: none;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: background-color 220ms ease, color 220ms ease, opacity 220ms ease, visibility 220ms ease;
}

.site-home-button.is-visible,
body:not(#home) .site-home-button {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	max-width: 6rem;
}

body:not(#home) .site-home-button {
	background-color: var(--azul-bg);
	color: var(--ylw-1);
}

.site-home-button.is-matchcup {
	background-color: var(--azul-bg);
	color: var(--ylw-1);
}

.site-home-button.is-aftercup {
	background-color: var(--ylw-1);
	color: var(--azul-bg);
}

.site-home-button:hover,
.site-home-button:focus-visible {
	background-color: var(--color-claro);
	color: var(--gui);
}

.site-language-button {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(92px, 6rem, 132px);
	height: clamp(72px, 6.8vw, 112px);
	background-color: var(--azul-bg);
	color: var(--ylw-1);
	font-family: var(--display-font);
	font-size: clamp(1.1rem, 1.6vw, 1.8rem);
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 220ms ease, color 220ms ease;
}

.site-language-button:hover,
.site-language-button:focus-visible {
	background-color: var(--ylw-1);
	color: var(--azul-bg);
}

.cookie-popup {
	position: fixed;
	right: clamp(1rem, 3vw, 3rem);
	bottom: clamp(1rem, 3vw, 3rem);
	z-index: 60;
	width: min(calc(100vw - 2rem), 520px);
	opacity: 0;
	transform: translateY(1rem);
	pointer-events: none;
	transition: opacity 240ms ease, transform 240ms ease;
}

.cookie-popup.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.cookie-popup__panel {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.5rem;
	background-color: var(--azul-bg);
	color: var(--ylw-1);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.cookie-popup__copy {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.cookie-popup__copy h2 {
	font-family: var(--display-font);
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
}

.cookie-popup__copy p {
	font-size: .95rem;
	line-height: 1.45;
}

.cookie-popup__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cookie-popup__link {
	color: var(--ylw-1);
	font-size: .8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.cookie-popup__link:hover {
	font-weight: 600;
	text-decoration: underline;
}

.cookie-popup__button {
	appearance: none;
	border: 0;
	border-radius: 0;
	background-color: var(--ylw-1);
	color: var(--azul-bg);
	cursor: pointer;
	font-family: var(--main-font);
	font-size: .85rem;
	font-weight: 700;
	padding: .8rem 1.25rem;
	text-transform: uppercase;
	justify-content: center;
}

.cookie-popup__button:hover,
.cookie-popup__button:focus-visible {
	background-color: var(--color-claro);
	color: var(--gui);
}

.home-split {
	--home-strip: clamp(92px, 6rem, 132px);
	--home-image-max-height: 460px;
	--home-info-height: 18rem;
	--home-cover-height: calc(var(--home-image-max-height) + var(--home-info-height));
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: var(--home-cover-height);
	background-color: var(--color-claro);
	overflow: clip;
}

.home-panel {
	position: relative;
	width: 50%;
	height: auto !important;
	min-height: var(--home-cover-height);
	overflow: hidden;
	flex: 1 1 50%;
	transition: flex-basis 650ms ease, flex-grow 650ms ease, width 650ms ease;
}


.home-panel#matchcup .cajainfo{
	background-color: var(--org-1);
	color: var(--color-claro);
}


.home-panel#matchcup :is(h1, h2, h3, h4, h5, h6, p, a),
.home-panel#matchcup .display {
	color: var(--color-claro);
}

.home-panel#aftercup .cajainfo{
	background-color: var(--gui);
	color: var(--color-claro);
}

.home-panel#aftercup :is(h1, h2, h3, h4, h5, h6, p, a),
.home-panel#aftercup .display {
	color: var(--color-claro);
}

.home-panel-trigger {
	position: absolute;
	inset: 0;
	z-index: 1;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.home-panel.is-active .home-panel-trigger {
	display: none;
}

.home-panel-cover {
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	height: var(--home-cover-height);
	min-height: var(--home-cover-height);
	padding: 0;
	opacity: 1;
	visibility: visible;
	text-align: center;
	transition: min-height 650ms ease, padding 650ms ease, gap 650ms ease, opacity 360ms ease, visibility 360ms ease;
}


.home-panel-cover .cajainfo {
	width: 100%;
	box-sizing: border-box;
	flex: 0 0 var(--home-info-height);
	min-height: var(--home-info-height);
	padding: 2rem 4rem;
	-webkit-transition: all 0.2s ease-in;
		-o-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
		-ms-transition: all 0.2s ease-in;
}

.home-panel-cover:hover .home-cover-image {
	opacity: .95;
}

.home-panel-cover:hover .cajainfo {
	-webkit-transition: all 0.2s ease-in;
		-o-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
		-ms-transition: all 0.2s ease-in;
}

.home-panel#matchcup.home-panel.is-collapsed {
	background-color: var(--gui);
}

.home-panel#matchcup.is-collapsed {
	justify-content: start;
}
.home-panel#matchcup.is-collapsed h1 {padding-right: 0;}


.home-panel#aftercup.home-panel.is-collapsed {
	background-color: var(--red-1);
	justify-content: start;
}

.home-panel#matchcup .home-panel-cover:hover .cajainfo,
.home-panel#matchcup.home-panel.is-collapsed:hover .cajainfo {
	background-color: var(--ylw-1) !important;
	

}

.home-panel#matchcup .home-panel-cover:hover h1.display,
.home-panel#matchcup.home-panel.is-collapsed:hover h1.display {
	color: var(--azul-bg) !important
}

section#matchcup .home-panel-cover:hover span.boton a {
	background-color: var(--azul-bg) !important;
	color: var(--ylw-1) !important;
}

.home-panel#aftercup .home-panel-cover:hover .cajainfo,
.home-panel#aftercup.home-panel.is-collapsed:hover .cajainfo{
	background-color: var(--azul-bg) !important;
}


section#aftercup .home-panel-cover:hover span.boton a {
	background-color: var(--gui) !important;
	color: var(--ylw-1) !important;
}


section#matchcup .home-panel-cover span.boton a {
	background-color: var(--gui);
	border: var(--gui);
	color: var(--org-1);
}

.home-panel-cover span.boton:hover a {
background-color: var(--azul-bg);
border: var(--azul-bg);
color: var(--ylw-1);
}

section#aftercup .home-panel-cover span.boton a {
	background-color: var(--org-1);
	border: var(--org-1);
	color: var(--gui);
}

.home-cover-image {
	position: relative;
	top: 0;
	left: 0;
	z-index: 88;
	width: 100%;
	flex: 0 1 var(--home-image-max-height);
	height: var(--home-image-max-height);
	max-height: var(--home-image-max-height);
	min-height: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
}

section#aftercup .home-cover-image {
	background-color: var(--azul-1);
	background-position: left center;
}

section#matchcup .home-cover-image {
	background-position: right center;
}

section#matchcup .home-section-image {
	background-color: transparent;
	background-size: contain;
	z-index: 88;
	background-position: right center;
}

section#aftercup .home-section-image {
	background-size: contain;
	background-position: right top;
	z-index: 88;
}

.home-panel-cover h1 {
	font-size: clamp(3.75rem, 4vw, 7rem);
	white-space: nowrap;
	transition: transform 650ms ease, font-size 650ms ease;
}

.home-panel-cover h1 i {display: none;}
.home-panel.is-collapsed .home-panel-cover h1 i {display: inline-block}

.home-panel#matchcup :is(h4,h5) {
	color: var(--azul-bg)
}

.home-panel#aftercup :is(h4,h5) {
	color: var(--org-1)
}

.home-panel-content {
	position: relative;
	z-index: 3;
	display: none;
	width: 100%;
	padding: 0;
	background-color: inherit;
	color: inherit;
}

#matchcup .home-section-intro {
	background-color: var(--ylw-1);
	color: var(--color-claro);
}

.home-panel#matchcup .home-section-intro h2 {color: var(--red-1)}
#matchcup .home-section-intro :is(p,h4) {color: var(--color-oscuro)}

#matchcup .home-lineup {
	background-color: var(--azul-bg);
	color: var(--color-claro);
}

#matchcup .home-experiences {
	background-color: var(--azul-bg);
	color: var(--color-claro);
}

#matchcup .home-faqs {
	background-color: var(--azul-1);
	color: var(--color-claro);
}

.home-panel#aftercup .home-section-intro h2 {color: var(--ylw-1)}
#aftercup .home-section-intro :is(p,h4) {color: var(--color-claro)}

#aftercup .home-section-intro {
	background-color: var(--azul-bg);
	color: var(--color-claro);
}

#aftercup .home-lineup {
	background-color: var(--azul-bg);
	color: var(--color-claro);
}

#aftercup .home-experiences {
	background-color: var(--azul-1);
	color: var(--color-claro);
}

#aftercup .home-lineup,
#aftercup .home-experiences,
#aftercup .home-faqs {
	padding: 4rem;
	width: calc(100% - 8rem);
}


#matchcup .home-calendar {
	background-color: var(--ylw-1);
	color: var(--negro);
}

#matchcup .home-calendar :is(h2, h3, h4, p, span, a, strong),
#matchcup .home-calendar .display {
	color: inherit;
}

#aftercup .home-calendar {
	background-color: var(--gui);
	color: var(--color-claro);
}

#aftercup .home-faqs {
	background-color: var(--azul-1);
	color: var(--color-claro);
}

.home-split[data-active="matchcup"] #matchcup,
.home-split[data-active="aftercup"] #aftercup {
	flex: 1 1 calc(100% - var(--home-strip));
	width: calc(100% - var(--home-strip));
	overflow: visible;
}

.home-split[data-active="matchcup"] #aftercup,
.home-split[data-active="aftercup"] #matchcup {
	flex: 0 0 var(--home-strip);
	width: var(--home-strip);
	overflow: visible;
}

.home-panel.is-active .home-panel-cover {
	min-height: 0;
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	gap: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
}

.home-panel.is-active .home-panel-content {
	display: block;
	animation: fadeIn 450ms ease both;
}

.home-panel.is-collapsed .home-panel-cover {
	position: sticky;
	top: 0;
	width: var(--home-strip);
	height: 100vh;
	min-height: 100vh;
	padding: 0;
	gap: 0;
	cursor: pointer;
	overflow: hidden;
}

.home-panel.is-collapsed .home-panel-cover .cajainfo {
	position: absolute;
	inset: 0;
	width: var(--home-strip);
	height: 100vh;
	padding: 0;
	display: block;
}

.home-panel.is-collapsed .home-panel-cover h1 {
	position: absolute;
	z-index: 2;
	top: auto;
	bottom: clamp(1.5rem, 3vw, 3rem);
	left: 50%;
	width: 100vh;
	font-size: clamp(2.1rem, 3.8vw, 4.2rem);
	line-height: .9;
	text-align: left;
	transform: rotate(-90deg);
	transform-origin: left center;
}

.home-panel#aftercup.is-collapsed .home-panel-cover h1 {
	left: auto;
	right: 50%;
	text-align: right;
	transform: rotate(90deg);
	transform-origin: right center;
}

.home-panel.is-collapsed .home-panel-cover h4 {font-size: 2rem}

.home-panel#matchcup.is-collapsed .home-panel-cover h1 {
	top: auto;
	bottom: clamp(1.5rem, 3vw, 3rem);
	left: 50%;
	transform: rotate(-90deg);
	transform-origin: left center;
}

.home-panel.is-collapsed .home-panel-cover h4,
.home-panel.is-collapsed .home-panel-cover h5,
.home-panel.is-collapsed .home-cover-image,
.home-panel.is-collapsed .home-open-button,
.home-panel.is-collapsed .home-panel-content {
	display: none;
}

.home-section-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
	gap: 0;
	align-items: stretch;
	width: 100%;
	min-height: 100vh;
	padding: 0;
}

.home-section-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 4rem;
	min-height: 420px;
}

.home-section-copy h2 {
	font-size: clamp(2.5rem, 4.2vw, 5rem);
}

.home-section-copy h4 {
	letter-spacing: .08em;
	font-size: 1.5rem;
}

.home-section-copy p {
	text-align: justify;
	text-align-last: left;
}

.home-section-copy a {
	font-weight: 600;
	color: var(--red-1) !important;
}

.home-section-copy a:hover {
	color: var(--org-1) !important;
}

.home-section-image,
.home-lineup-thumb {
	background-position: left center;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-section-image {
	min-height: 520px;
	overflow:hidden;
	align-self: stretch;
}

#matchcup .home-section-copy,
#matchcup .home-section-block{padding: 8rem 4rem 4rem 8rem !important; width: calc(100% - 12rem)}

.home-section-copy,
.home-section-block {
	margin-top: 0;
	width: calc(100% - 8rem);
	padding: 8rem 4rem 4rem;
}

.home-section-block > h2 {
	margin-bottom: 2rem;
	font-size: clamp(2.25rem, 4vw, 4.5rem);
}

.calendario-columnas {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	width: 100%;
}

.calendario-mes {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

.calendario-mes > h3 {
	position: sticky;
	top: 0;
	z-index: 5;
	margin: 0;
	padding: .75rem 1rem;
	background-color: var(--azul-bg);
	color: var(--color-claro) !important;
	font-size: clamp(1.5rem, 2.7vw, 3rem);
}

.calendario-dias {
	display: grid;
	grid-template-columns: repeat(5, minmax(10rem, 1fr));
	width: 100%;
	overflow-x: auto;
}

.calendario-dia {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	min-height: 18rem;
	padding: 0;
	cursor: pointer;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
}

.calendario-dia:hover {
	background-color: var(--org-1);
}

.calendario-dia:nth-child(5n) {
	border-right: 0;
}

.calendario-fecha {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .25rem;
	padding: 1rem .75rem 0;
	text-transform: uppercase;
}

.calendario-fecha span {
	font-size: .55rem;
	font-weight: 700;
	letter-spacing: .08em;
}

.calendario-fecha strong {
	font-size: clamp(1.8rem, 2.4vw, 2.6rem);
	line-height: .9;
}

.calendario-lista {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.calendario-evento-grupo {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 1rem .75rem 1.25rem;
	list-style: none;
	transition: background-color 220ms ease, color 220ms ease;
}

.calendario-evento-grupo.matchcup:hover,
.calendario-evento-grupo.sin-etiqueta:hover {
	color: var(--negro);
}

.calendario-evento-grupo.aftercup:hover {background-color: var(--gui); color: var(--org-1)}

.calendario-evento-grupo-lista {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	margin: .75rem 0 0;
	padding: 0;
	list-style: none;
}

.calendario-evento-grupo > a {
	display: block;
	color: currentColor;
	text-decoration: none;
}

.calendario-evento {
	width: 100%;
	margin: 0;
	padding: 0;
	border-top: 1px solid currentColor;
}

.calendario-evento:first-child {
	border-top: 0;
}

.calendario-tag-grupo,
.calendario-horario-grupo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	list-style: none;
}

.calendario-tag-grupo {
	padding: .85rem 0 .35rem;
}

.calendario-horario-grupo {
	padding: .35rem 0 .35rem;
}

.calendario-evento a,
.calendario-evento-contenido {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .35rem;
	width: 100%;
	padding: .85rem 0;
	color: currentColor;
}

.calendario-evento a:hover {
	color: var(--org-1);
}

.calendario-info {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .75rem;
	min-width: 0;
}

.calendario-tag {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	width: auto;
	padding: .45rem .55rem;
	background-color: var(--azul-bg);
	color: var(--color-claro);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .08em;
	font-family: var(--display-font);
	line-height: 1;
	text-transform: uppercase;
}

.calendario-tag.aftercup {
	background-color: var(--gui);
	color: var(--org-1) !important;
}

.calendario-tag.matchcup {
	background-color: var(--org-1);
	color: var(--negro) !important;
}

.calendario-info h4 {
	font-size: .75rem;
	line-height: 1.35;
	word-break: normal;
	overflow-wrap: break-word;
}

.calendario-evento-vacio .calendario-info h4 {
	opacity: .45;
}

.calendario-hora {
	font-size: 1rem !important;
	line-height: 1;
	font-family: var(--second-font)
}

.calendario-horario-grupo .calendario-hora {
	font-size: 1rem !important;
}

.home-lineup .encabezado {
	max-width: 50vw;
}

.home-experiences .encabezado {
	max-width: 58vw;
}

.home-lineup-list,
.home-faq-list {
	display: grid;
	gap: 1rem;
	width: 100%;
}

.home-faq-list {gap: 0}

.home-lineup-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	padding: 0;
}

.home-experiences-list {
	grid-template-columns: repeat(12,1fr);
	justify-content: center;
	margin: 0 auto;
}

.home-lineup-card {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: stretch;
	min-width: 0;
}

.home-experiences-list .home-lineup-card {
	flex-direction: column;
	gap: 0;
	width: 100%;
	grid-column: span 3;
}

.home-experiences-list .home-reservation-card:last-child .home-lineup-info {
	background-color: var(--color-claro);
	color: var(--azul-bg);
}

.home-experiences-list .home-reservation-card:last-child:hover .home-lineup-info {
	background-color: var(--azul-bg) !important;
	color: var(--color-claro) !important;
}

.home-experiences-list .home-reservation-card:last-child:hover p.home-lineup-excerpt{color: var(--color-claro) !important;}

.home-lineup-card.has-ticket-link {
	cursor: pointer;
}

.home-reservation-card {
	min-height: 270px;
	
}

.home-experiences-list .home-reservation-card {
	min-height: auto;
}

.home-reservation-card .home-lineup-info {
	flex: 1 1 auto;
	background-color: var(--gui);
	color: var(--color-claro);
}

.home-experience-card :is(p,ul,li) {color: var(--color-oscuro) !important; font-size: 1rem}
.home-experience-card ul {list-style-type: disc; margin-left: 1rem; }
.home-experience-card li {margin-bottom: .75rem}
#matchcup .home-experiences-list .home-lineup-card {grid-column: span 4;}
#matchcup .home-experiences-list .home-lineup-card .home-lineup-info {justify-content: start; gap: 2rem}
#matchcup .home-experiences-list .home-lineup-card:last-child .home-lineup-info{background-color: var(--color-claro)}
#matchcup .home-experiences-list .home-lineup-card:last-child :is(a,strong,b) {color: var(--org-2); font-weight: 600; }
.home-experience-card ol {margin-bottom:0; margin-left: 1rem; width: calc(100% - 1rem)}
.home-experience-card .home-lineup-heading h3 {font-size: .9rem}
.home-reservation-card .home-lineup-heading h3,
.home-reservation-card p.home-lineup-excerpt {
	color: var(--azul-bg) !important;
}
.home-reservation-card span.boton {width: 100%;}
.home-reservation-card span.boton a {
	background-color: var(--ylw-1);
	border-color: var(--ylw-1);
	color: var(--azul-bg) !important;
	font-size: 12px;
	width: 100%;
}
.home-reservation-card span.boton a i {font-size: 1.5rem}

.home-reservation-card span.boton:hover a {
	background-color: var(--ylw-1);
	border-color: var(--ylw-1);
	color: var(--azul-bg) !important;
}

.home-lineup-card.has-ticket-link:focus-visible {
	outline: 2px solid var(--color-claro);
	outline-offset: 4px;
}

.home-lineup-thumb {
	aspect-ratio: 1 / 1;
	min-height:270px;
	min-width: 270px;
	width:auto;
	flex: auto;
	z-index:88;
	height: auto;
	align-self: start;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-experiences-list .home-lineup-thumb {
	width: 100%;
	min-width: 0;
	min-height: 0;
	height: auto;
	flex: none;
}

.home-lineup-info {
	display: flex;
	flex: 0 1 calc(270px - 1rem);
	width: auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: .75rem;
	max-height: 100%;
	overflow: hidden;
	padding: 2rem 1rem;
	align-self: stretch;
	color: var(--color-oscuro);
	transition: background-color 220ms ease, color 220ms ease;
}

.home-experiences-list .home-lineup-info {
	flex: 1 1 auto;
	width: auto;
	min-height: 180px;
	padding: 2rem 1rem !important;
	width: calc(100% - 2rem) !important;
}

.home-lineup-card.has-ticket-link:hover .home-lineup-thumb,
.home-lineup-card.has-ticket-link:focus-visible .home-lineup-thumb {
	filter: none;
		-webkit-filter: contrast(50%);
		-moz-filter: contrast(50%);
		-ms-filter: contrast(50%);
		-o-filter: contrast(50%);
}


.home-lineup-card.has-ticket-link:hover .home-lineup-info,
.home-lineup-card.has-ticket-link:focus-visible .home-lineup-info {
	background-color: var(--azul-1);
	color: var(--color-claro)
}

.home-lineup-card.has-ticket-link:hover .home-lineup-heading :is(h3,p){
	color: var(--color-claro) !important;
}

.home-lineup-card.has-ticket-link .home-lineup-prices span:hover {background-color: var(--ylw-1) !important; color: var(--azul-1) !important}

.home-lineup-card.has-ticket-link:hover .home-lineup-prices span {
	border-color: #ddd !important;
}

.home-lineup-card.has-ticket-link:hover .home-lineup-price-note {
	color: var(--color-claro) !important;
}

.home-lineup-card:nth-child(1) .home-lineup-info,
.home-lineup-card:nth-child(4) .home-lineup-info,
.home-lineup-card:nth-child(5) .home-lineup-info,
.home-lineup-card:nth-child(8) .home-lineup-info,
.home-lineup-card:nth-child(9) .home-lineup-info,
.home-lineup-card:nth-child(12) .home-lineup-info{
	background-color: var(--ylw-1);
}

.home-lineup-card:nth-child(2) .home-lineup-info,
.home-lineup-card:nth-child(3) .home-lineup-info,
.home-lineup-card:nth-child(6) .home-lineup-info,
.home-lineup-card:nth-child(7) .home-lineup-info,
.home-lineup-card:nth-child(10) .home-lineup-info,
.home-lineup-card:nth-child(11) .home-lineup-info{
	background-color: var(--org-1);
}

.home-lineup-heading {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	width: 100%;
}

.home-lineup-heading h3 {
	font-size: 1rem;
	word-break: break-word;
	color: var(--color-oscuro) !important;
}

.home-lineup-heading p {
	font-size: .75rem;
	line-height: 1.35;
	color: var(--color-oscuro) !important;
}

.home-lineup-excerpt {
	font-size: clamp(.8rem, .9vw, .95rem);
	line-height: 1.35;
}

.home-lineup-prices {
	display: grid;
	gap: 0;
	width: 100%;
}

.home-lineup-prices span {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	border-bottom: 1px solid #333;
	padding: .75rem 0;
	font-size: clamp(.78rem, .85vw, .9rem);
}

.home-lineup-prices strong {
	text-transform: uppercase;
	font-size: clamp(.65rem, .72vw, .72rem);
	letter-spacing: .08em;
}

.home-lineup-price-note {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-claro) !important;
}

.home-lineup-price-note strong {color: var(--ylw-1);}

.home-lineup-price-note a {
	font-weight: 700;
	color: var(--ylw-1) !important;
}
.home-lineup-price-note a:hover {
color: var(--org-1) !important;
}

.home-faq-item {
	border-top: 1px solid currentColor;
	padding: 1rem;
	-webkit-transition: all 0.2s ease-in;
		-o-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
		-ms-transition: all 0.2s ease-in;
}

.home-faq-item:hover {
	background-color: var(--azul-bg);
	-webkit-transition: all 0.2s ease-in;
		-o-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
		-ms-transition: all 0.2s ease-in;
}

.home-faq-item:last-child {
	border-bottom: 1px solid currentColor;
}

.home-faq-item summary {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 1.35rem 0;
	cursor: pointer;
	font-family: var(--second-font);
	text-transform: none;
	line-height: 1.25;
}

.home-faq-item summary::-webkit-details-marker {
	display: none;
}

.home-faq-item[open] summary i {
	transform: rotate(45deg);
}

.home-faq-answer {
	position: relative;
	z-index: 4;
	max-width: 900px;
	padding: 0 0 1.5rem;
	display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-faq-answer :is(strong,a) {color: var(--org-1)}
.home-faq-answer :is(p, ul, li, a, ol) {font-size: 1rem;}
.home-faq-answer ul {list-style: inherit}
.home-faq-answer li {margin: 0 0 .5rem 1rem}


section .slide figure.fotograma {border-radius: .75rem; min-height: 720px}
section .slide .caja {width: calc(100% - 8rem); padding: 4rem; height: calc(100% - 8rem); align-self: stretch; flex: 1 1; z-index: 8;text-align: center}
section .slide .caja h4.display {color: var(--blanco)}
section .slide .caja h3.display {font-size: 1.75rem;}

section .slider .slick-dots li.slick-active {border-color: var(--rosita); border-width: 2px;}

section .slide.talento .infoboletos {
	position: absolute;
	padding: 4rem 2rem;
	border-radius: .75rem;
	justify-content: space-around !important;
	width: calc(100% - 4rem);
	height: calc(100% - 8rem);
	z-index: 88;
	top: 0;
	left: 0;
	background-color: var(--negro);
	opacity: 0;

	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;
}

section .slide.talento:hover .infoboletos{
	opacity: 1;

	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;
}

section .slide.talento .infoboletos h4.alt-font {color: var(--color-claro)}
section .slide.talento .infoboletos h6.alt-font{color: var(--rosita)}
section .slide.talento .infoboletos h6 {color: var(--color-claro)}
section .slide.talento .infoboletos span.precio {color: var(--blanco); font-weight: 400; font-size: 1rem}
section .slide.talento .infoboletos span.boton a {
	background-color: var(--limon);
	border-color: var(--limon);
	color: var(--negro);
	border-radius: 0
}

section.image {min-height: auto; justify-content: flex-start;}
section.image .contenedor {z-index: 10; width: 100%;
	padding: 0; flex-direction: column-reverse; flex: auto; align-self: stretch;
	text-align: left; align-items: start; justify-content: start;gap: 0;}

section.image .columna {flex: auto}
section.image .columna.imagen {overflow: hidden; position: relative; align-self: stretch; justify-content: end; width: 100%; min-height: 50vh;}
section.image .columna.texto {align-items: start; padding: 4rem; width: calc(100% - 8rem); overflow: hidden; align-self: stretch; justify-content: center;}
section.image p {color: var(--color-claro);}
section.image .columna.texto .flex {z-index: 10;}
section.image .columna.texto figure.imagenfondo {background-size: 60%;
left: -40%;
animation: movingImage 20s ease infinite;
opacity: .4;
z-index: 0;	
}


section.image figure.fotograma .titulo {
		height: calc(100% - 4rem);
		width: calc(100% - 4rem);
		padding: 2rem;
			z-index: 888;
			position: relative;
}

section.image figure.fotograma figure.imagenfondo {top: 0; left: 0; mix-blend-mode: hard-light;}

section.image .columna.dos figure.fotograma { align-self: stretch; position: absolute; min-height: 100%; z-index: 2;order: 1;
margin: 0;
height: 100%;
}

section.image .encabezado {text-align: center;}
	
section.image .contenedor h5 {flex: 1 0 100%; text-transform: uppercase;}
section.image .contenedor h3.display {flex: auto; width: 40%; text-align: left;}



/* Inicia Home */
section.galeria {min-height: 100vh;}

section.slider .fotograma {min-height: calc(100vh - 12rem);justify-content: center; align-items: end;}

section.slider figure .caja {width: min(calc(100% - 4rem), 80vw); z-index: 10; padding-bottom: 4rem}
section.slider figure h1 {font-size: 64px; color: var(--blanco); text-align: center; letter-spacing: 1px;}
section.slider figure h2 {color: var(--blanco); text-align: center; font-size: 20px; line-height: 1.5; letter-spacing: 2px; text-transform: none;}



section.quote {background-color: var(--color-claro); }
section.quote .contenedor {padding: 0 4rem 0; width: calc(100% - 8rem); gap: 8rem;}
section.quote .contenedor .cajatexto {justify-content: center; align-items: center;}
section.quote .contenedor figure.fotograma {width: 50%; flex: 0 1 50%; min-height: calc(100vh - 4rem); align-self: stretch; display: flex; align-items: flex-end; justify-content: flex-start;
	border-radius: 0 0 1.5rem 1.5rem; margin: 4rem 0;
}

section.quote:nth-child(even) .contenedor figure.fotograma {order: 1;}
section.quote:nth-child(even) .contenedor .cajatexto {order: 2}


section.galeria,
section.post {min-height: calc(100vh - 0)}

section.aside {min-height: 80vh;}
section.aside .columna.dos {gap: 1rem;}
section .slide {width: calc(100% / 3)}



section.post ul.galeria {display: flex; flex-direction: column; flex-wrap: wrap; gap: 1rem; width: 10rem; height: 100%; }
section.post.galeria .contenedor {padding: 2rem 0; width: 100%}

section.post ul.galeria li { width: 100%; cursor: pointer; overflow: hidden; flex: 1; border: 0;}

section.post ul.galeria li.is-selected,
section.post ul.galeria li:hover {border-color: var(--color-principal);}

section.post ul.galeria li:hover figure.thumb,
section.post ul.galeria li.is-selected figure.thumb {opacity: .6}

section.post ul.galeria li figure.thumb {height: 100%; width: 100%; border-radius: 0; max-width: inherit; transform: scale(1); max-height: 100%;
-moz-transition: all 0.4s ease-in;
	-webkit-transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
	transition: all 0.4s ease-in;
	-ms-transition: all 0.4s ease-in;
}

section.post ul.galeria li:hover figure.thumb {transform: scale(1.05);
-moz-transition: all 0.4s ease-in;
	-webkit-transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
	transition: all 0.4s ease-in;
	-ms-transition: all 0.4s ease-in;
}

section.post article {width: 50%; display: inline-flex; flex-direction: column; gap: 1rem; padding: 0; flex: auto; height: auto; align-self: stretch;}

section.banner.pagina .contenedor {align-items: center;}
section.banner.pagina .contenedor span.boton {width: auto}

h6.disclaimer {font-size: 12px; text-transform: none;}


/* Página Proyectos */

section.pagina .cajatexto {display: inline-block; width: calc(100% - 80px); min-height: 100%; font-weight: 700; font-size: 14pt; padding: 40px; color: var(--color-contraste)}
section.pagina .cajatexto h2 {font-size: 18pt; margin-top: 0}


footer .contacto.flex {background-color: var(--red-1);}
footer .contacto .flex.start {align-items: center;}
footer .contacto .flex.end {justify-content: center !important;}

footer .contacto a i,
footer nav.redes a i {font-size: 2rem}

footer h4 a {font-size: 20px}
footer a:hover {color: var(--ylw-1) !important; font-weight: 600 !important}
