:root {
	--main-green: #79dd09;
	--main-green-rgb-015: rgba(121, 221, 9, 0.1);
	--main-yellow: #bdbb49;
	--main-yellow-rgb-015: rgba(189, 187, 73, 0.1);
	--main-red: #bd150b;
	--main-red-rgb-015: rgba(189, 21, 11, 0.1);
	--main-blue: #0076bd;
	--main-blue-rgb-015: rgba(0, 118, 189, 0.1);
}


/* Main Content Styling */
.body2 {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(180deg, rgb(22, 35, 63) 0%, rgb(9, 14, 30) 100%);
	overflow-x: hidden;
	box-sizing: border-box;
	font-family: 'Roboto Condensed', sans-serif;
	height: 100%;
}

.poli {
	color: #ffffff;
	text-decoration: none;
}

/* Títulos - Condensed Light */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Condensed', sans-serif;
	/* Usar Condensed Light para los títulos */
	font-weight: 300;
	/* Ligera (Light) */
}

/* Subtítulos - Bold */
h2,
h3,
h4 {
	font-family: 'Roboto', sans-serif;
	/* Usar la fuente Regular de Roboto */
	font-weight: 700;
	/* Negrita */
}

/* Textos generales - Regular */
p,
li,
span {
	font-weight: 400;
	/* Regular */
}

/*HERO SECTION*/
.hero-section {
	padding: 6rem 2rem 2rem;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}


.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #00e6c3, #05caf2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2.5rem;
	animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
	animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #05caf2;
}

.stat-label {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
}



/* Cards */
.postcard {
	flex-wrap: wrap;
	display: flex;

	box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
	border-radius: 20px;
	margin: 0 0 2rem 0;
	overflow: hidden;
	position: relative;
	color: #ffffff;

	&.dark {
		background-color: #18151f;
	}

	.t-dark {
		color: #18151f;
	}

	a {
		color: inherit;
		text-decoration: none;
	}

	h1,
	.h1 {
		margin-bottom: 0.5rem;
		font-weight: 500;
		line-height: 1.2;
	}

	.small {
		font-size: 80%;
	}

	.postcard__title {
		font-size: 1.5rem;
	}

	.postcard__img {
		max-height: 180px;
		width: 100%;
		object-fit: cover;
		position: relative;
	}

	.postcard__img_link {
		display: contents;
	}

	.postcard__bar {
		width: 30px;
		height: 10px;
		margin: 10px 0;
		border-radius: 5px;
		background-color: #424242;
		transition: width 0.9s ease;
	}

	.postcard__text {
		padding: 1.5rem;
		position: relative;
		display: flex;
		flex-direction: column;
	}

	.postcard__preview-txt {
		overflow: hidden;
		text-overflow: ellipsis;
		text-align: justify;
		height: 100%;
		font-size: 1.1rem;
	}

	.postcard__tagbox {
		display: flex;
		flex-flow: row wrap;
		font-size: 14px;
		margin: 20px 0 0 0;
		padding: 0;
		justify-content: center;

		.tag__item {
			display: inline-block;
			background: rgba(83, 83, 83, 0.4);
			border-radius: 3px;
			padding: 2.5px 10px;
			margin: 0 5px 5px 0;
			cursor: default;
			user-select: none;
			transition: background-color 0.3s;

			&:hover {
				background: rgba(83, 83, 83, 0.8);
			}
		}

		.as {
			background: var(--main-blue);
		}
	}

	&:before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-image: linear-gradient(-70deg, #424242, transparent 10%);
		opacity: 1;
		border-radius: 10px;
	}

	&:hover .postcard__bar {
		width: 140px;
	}
}

@media screen and (min-width: 769px) {
	.postcard {
		flex-wrap: inherit;

		.postcard__title {
			font-size: 1.8rem;
		}

		.postcard__tagbox {
			justify-content: start;
		}

		.postcard__img {
			max-width: 300px;
			max-height: 100%;
			transition: transform 0.3s ease;
		}

		.postcard__text {
			padding: 3rem;
			width: 100%;
		}

		.media.postcard__text:before {
			content: "";
			position: absolute;
			display: block;
			background: #18151f;
			top: -10%;
			height: 130%;
			width: 55px;
		}

		&:hover .postcard__img {
			transform: scale(1.1);
		}

		&:nth-child(2n+1) {
			flex-direction: row;
		}

		&:nth-child(2n+0) {
			flex-direction: row-reverse;
		}

		&:nth-child(2n+1) .postcard__text::before {
			left: -12px !important;
			transform: rotate(4deg);
		}

		&:nth-child(2n+0) .postcard__text::before {
			right: -12px !important;
			transform: rotate(-4deg);
		}
	}


}

.menuCELU {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	position: fixed;
	z-index: 10;
	background: linear-gradient(180deg, rgb(22, 35, 63) 0%, rgb(9, 14, 30) 100%);
	width: 100%;
	top: 0;
	height: 100%;
	padding-top: 4rem;
	left: -200%;
	transition: 0.6s ease-in-out;
}

.menuCELU.active {
	left: 0;
	/* Muestra el menú cuando esté activo */
}

.liCELU {
	justify-content: center;
	font-size: 2.5rem;
	/* Tamaño del texto */
	padding: 1rem 0;
	text-align: center;
	color: #ffffff;
	/* Texto blanco */
	transition: all 0.3s ease-in-out;
	box-shadow: 0 7px 16px rgba(0, 0, 0, 0.2);
	/* Sombra ligera */
}

.aCELU {
	text-decoration: none;
	/* Elimina subrayado */
	color: #ffffff;
	/* Mantiene el texto blanco */
	font-weight: 500;
	/* Grosor del texto */
}

.aCELU:hover {
	color: #50b7f5;
	/* Color azul brillante al pasar el mouse */
}

.ulCELU {
	margin-top: 3rem;
	padding: 0;
	list-style-type: none;
	width: 100%;
}

.brandCELU {
	display: flex;
	justify-content: center;
	height: auto;
	padding-top: 1.6rem;
}

.redesCELU {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	/* Espaciado entre íconos */
	margin-top: 2rem;
}

.redesCELU a {
	padding: 0.5rem;
}

.iconsCELU {
	width: 40px;
	/* Ajuste para íconos más pequeños */
	height: auto;
}

/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
	background: var(--main-green);
	color: black;
}

.green .postcard__title:hover {
	color: var(--main-green);
}

.green .postcard__bar {
	background-color: var(--main-green);
}

.green::before {
	background-image: linear-gradient(-30deg,
			var(--main-green-rgb-015),
			transparent 90%);
}

.green:nth-child(2n)::before {
	background-image: linear-gradient(30deg, var(--main-green-rgb-015), transparent 10%);
}

.postcard .postcard__tagbox .blue.play:hover {
	background: var(--main-blue);
}

.blue .postcard__title:hover {
	color: var(--main-blue);
}

.blue .postcard__bar {
	background-color: var(--main-blue);
}

.blue::before {
	background-image: linear-gradient(80deg, var(--main-blue-rgb-015), transparent 100%);
}

.blue:nth-child(2n)::before {
	background-image: linear-gradient(80deg, var(--main-blue-rgb-015), transparent 100%);
}

.postcard .postcard__tagbox .red.play:hover {
	background: var(--main-red);
}

.red .postcard__title:hover {
	color: var(--main-red);
}

.red .postcard__bar {
	background-color: var(--main-red);
}

.red::before {
	background-image: linear-gradient(-30deg, var(--main-red-rgb-015), transparent 10%);
}

.red:nth-child(2n)::before {
	background-image: linear-gradient(30deg, var(--main-red-rgb-015), transparent 10%);
}

.postcard .postcard__tagbox .yellow.play:hover {
	background: var(--main-blue);
	color: black;
	font-weight: bold;
}

.yellow .postcard__title:hover {
	color: var(--main-yellow);
}

.yellow .postcard__bar {
	background-color: var(--main-yellow);
}

.yellow::before {
	background-image: linear-gradient(-30deg,
			var(--main-yellow-rgb-015),
			transparent 10%);
}

.yellow:nth-child(2n)::before {
	background-image: linear-gradient(30deg,
			var(--main-yellow-rgb-015),
			transparent 10%);
}

@media screen and (min-width: 769px) {
	.green::before {
		background-image: linear-gradient(-80deg,
				var(--main-green-rgb-015),
				transparent 10%);
	}

	.green:nth-child(2n)::before {
		background-image: linear-gradient(80deg,
				var(--main-green-rgb-015),
				transparent 10%);
	}

	.blue::before {
		background-image: linear-gradient(-80deg,
				var(--main-blue-rgb-015),
				transparent 100%);
	}

	.blue:nth-child(2n)::before {
		background-image: linear-gradient(80deg, var(--main-blue-rgb-015), transparent 100%);
	}

	.red::before {
		background-image: linear-gradient(-80deg, var(--main-red-rgb-015), transparent 10%);
	}

	.red:nth-child(2n)::before {
		background-image: linear-gradient(80deg, var(--main-red-rgb-015), transparent 10%);
	}

	.yellow::before {
		background-image: linear-gradient(-80deg,
				var(--main-yellow-rgb-015),
				transparent 10%);
	}

	.yellow:nth-child(2n)::before {
		background-image: linear-gradient(80deg,
				var(--main-yellow-rgb-015),
				transparent 90%);
	}
}

/* Footer */
.overlap-3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #19294E;
	padding: 0 1rem;
}

.mail {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;

}

.redes {
	display: flex;
	gap: 1rem;
}

.zt-mail-icons {
	width: 5vw;
	height: auto;
	max-width: 25px;
	min-width: 15px;
}

/* Responsive Adjustments */
@media screen and (min-width: 769px) {
	.postcard {
		flex-wrap: inherit;
	}

	.postcard__img {
		max-width: 300px;
	}

	.postcard:nth-child(2n+1) {
		flex-direction: row;
	}

	.postcard:nth-child(2n+0) {
		flex-direction: row-reverse;
	}
}

@media screen and (max-width: 720px) {
	.title {
		font-size: 1.5rem;
		margin-top: 4rem;
	}

	.postcard {
		flex-wrap: wrap;
	}

	.postcard__img {
		max-width: 100%;
	}

	.postcard__text {
		width: 100%;
	}
}


.text-wrapper-18 {
	color: #ffffff;
	margin-top: .2rem;
	text-decoration: none;
}

.info {
	padding-top: 1rem;
}

.box_prod {
	height: 30%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	margin-top: 2px;
}

.prods {
	display: flex;
	flex-direction: row;
	width: 68%;

}

.columna_prod {
	display: flex;
	flex-direction: column;
	width: 68%;
	color: #ffffff;
	justify-content: space-between;
}

.box_img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.card-img_prod {
	height: 100%;
	width: 85%;
	border-top-left-radius: calc(0.25rem - 1px);
	border-top-right-radius: calc(0.25rem - 1px);
}

.card-title2 {
	margin-bottom: 0.5rem;
	font-size: medium;
	font-weight: normal;
	font-size: 1.3rem;

}


.titulo_prod_2 {
	margin-bottom: 0.3rem;
	font-size: 1.7rem;
}

.title {
	font-size: 3rem;
	/* Tamaño de la fuente */
	font-weight: 700;
	/* Peso ligero */
	color: #ffffff;
	/* Color blanco */
	text-align: center;
	/* Centrado horizontalmente */
	margin-top: 3rem;
	/* Espacio desde la barra de navegación */
	margin-bottom: 3rem;
	/* Espacio debajo del título */
	letter-spacing: 0.1rem;
	/* Espaciado entre letras */

	font-family: 'Roboto', sans-serif !important;
}


.saint_img {
	width: 200px;
	margin-bottom: 20px;
}


.swiper {
	top: 5vh;
}

.autoplay-progress {
	position: fixed;
	left: 10px;
	top: 10px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	color: var(--progress-color);
}

.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 2.5px;
	stroke: var(--progress-color);
	fill: none;
	stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}

.slider-button {
	transition: 0.5s;
	outline: none;
	position: absolute;
	width: 100px;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.slider-button svg {
	display: block;
	transition: 0.5s;
}

.slider-button .slider-svg-circle-wrap {
	transition: 0.5s;
	transform-origin: -20px 40px;
	opacity: 1;
}

.slider-button circle {
	transition: 0.5s;
	stroke-width: 2px;
	stroke: var(--progress-color);
	fill: none;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	opacity: 1;
	transform-origin: 0px 0px 0px;
}

.slider-button .slider-svg-arrow {
	transition: 0.5s;
	fill: var(--progress-color);
	transform: rotateY(180deg) translate(-55px, 36.1px) scale(1.75);
}

.slider-button-prev {
	left: 24px;
}

.slider-button-next {
	right: 24px;
}

.swiper-button-disabled {
	display: none;
}

.slider-button .slider-svg-wrap {
	transform: translateY(353px);
}

.slider-button-next .slider-svg-wrap {
	transform: translateY(353px) rotateY(180deg);
	transform-origin: 80px 0px 0px;
}

.slider-button .slider-svg-line {
	transition: 0.5s;
	stroke: var(--progress-color);
	stroke-width: 2;
	transform: translate(50px, 42px);
}

.slider-button-prev:not(.slider-button-disabled):hover svg {
	transform: translate(-16px);
}

.slider-button-next:not(.slider-button-disabled):hover svg {
	transform: translate(16px);
}

.slider-button:not(.slider-button-disabled):hover .slider-svg-circle-wrap {
	transform: scale(1.1);
}

.slider-button:not(.slider-button-disabled):hover circle {
	stroke-dasharray: 4px;
	stroke-dashoffset: 4px;
	opacity: 1;
}

.slider-button:not(.slider-button-disabled):hover .slider-svg-arrow {
	transform: rotateY(180deg) translate(-40px, 36.1px) scale(1.75);
}

.slider-button:not(.slider-button-disabled):hover .slider-svg-line {
	transform: translate(35px, 42px) scaleX(0.5);
}

.swiper-pagination {
	text-align: center;
	padding-left: 0;
	bottom: 20px !important;
}

.swiper-pagination .swiper-pagination-bullet {
	display: inline-block;
	margin: 2px;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
	width: 25px;
}

.swiper-pagination .swiper-pagination-bullet {
	height: 6px;
	width: 12px;
	background: rgba(255, 255, 255, 0.8);
	color: transparent;
	border-radius: 10px;
	overflow: hidden;
	transition: 0.5s ease;
	border: 0;
}

.autoplay-progress-bar {
	--progress: 0;
	height: 2px;
	width: var(--progress);
	background-color: var(--progress-color);
	position: absolute;
	top: 0;
	left: 0;
	transition: ease-in-out;
}

.floating {
	animation: floatAnim 6s ease-in-out infinite;
}

.slide {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.slide svg {
	max-height: 100%;
	width: auto;
	position: relative;
}

.card {
	position: relative;
	margin: auto;
	height: 70vh;
	width: 90vw;
	max-width: 1000px;
	border-radius: 50px;
	overflow: hidden;
}

.card.slide-1 {
	background: #19294E;
	background: linear-gradient(331deg, #19294E 0%, #200a2b 100%);
}

.card.slide-2 {
	background: #8a87c1;
	background: linear-gradient(331deg, #8a87c1 0%, #e8cafb 100%);
}

.card.slide-3 {
	background: #0c3720;
	background: linear-gradient(331deg, #5b874b 0%, #0c3720 100%);
}

.svg-wrapper {
	width: 100%;
	height: 100%;
	text-align: center;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -15%;
}

.slide:nth-child(odd) .svg-wrapper {
	left: -22%;
}

.slide:nth-child(even) .svg-wrapper {
	right: -22%;
	top: -0%;
}

.slide:nth-child(even) svg {
	height: 80%;
}

.card-content {
	max-width: 445px;
	width: 100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 24px;
}

.slide:nth-child(odd) .card-content {
	margin-left: auto;
}

.slide:nth-child(even) .card-content {
	margin-right: auto;
	margin-left: 5%;
}

.card-ghost-info {
	position: absolute;
	bottom: 8%;
	line-height: 1;
	color: #ffffff;
	font-size: 1vw;
	font-weight: 400;
}

.ghost-name {
	font-size: 1.5vw;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: bold;
}

.card-ghost-info span {
	height: 70px;
	display: inline-block;
	width: 0.5px;
	background-color: var(--color);
	position: absolute;
	bottom: 0px;
}

.card-ghost-info span:before {
	content: "";
	height: 5px;
	width: 5px;
	background-color: var(--color);
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
}

.slide:nth-child(odd) .card-ghost-info {
	left: 8%;
	text-align: right;
}

.slide:nth-child(even) .card-ghost-info {
	right: 8%;
	text-align: left;
}

.slide:nth-child(odd) .card-ghost-info span {
	right: -15px;
}

.slide:nth-child(even) .card-ghost-info span {
	left: -15px;
}

.card-title {
	max-width: 320px;
	color: var(--color);
	font-weight: bold;
	font-size: 3vw;
	line-height: 1;
	margin: 14px 0 25px;
	text-transform: uppercase;
	position: relative;
}

.card-title:before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 2px;
	color: var(--color);
	text-shadow: -1px 0 #0ff;
	clip: rect(0, 800px, 0, 0);
	animation: glitch-1 1s linear alternate-reverse infinite;
}

.card-title:after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: -2px;
	color: var(--color);
	text-shadow: 3px 0 #ff28d7;
	clip: rect(0, 800px, 0, 0);
	animation: glitch-2 0.6s linear alternate-reverse infinite 0.2s;
}

.card-sub-title {
	color: var(--color);
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.1vw;
}

.card-description {
	color: var(--color);
	font-weight: 500;
	font-size: 0.9vw;
	max-width: 300px;
}

.card-cta {
	margin-top: 30px;
}

.cta-button {
	display: inline-block;
	padding: 20px 40px;
	background-color: var(--color);
	color: white;
	font-family: Arial, sans-serif;
	font-size: 12px;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: bold;
	width: 161px;
	height: 81px;
	clip-path: polygon(7.68786px 20.1081px,
			7.68786px 20.1081px,
			8.16364px 18.1351px,
			8.88914px 16.2804px,
			9.8446px 14.5617px,
			11.0103px 12.9969px,
			12.3663px 11.6038px,
			13.8931px 10.4002px,
			15.5708px 9.4038px,
			17.3796px 8.63251px,
			19.2998px 8.10411px,
			21.3116px 7.83638px,
			132.489px 0.710935px,
			132.489px 0.710935px,
			134.441px 0.714334px,
			136.343px 0.968456px,
			138.174px 1.46024px,
			139.914px 2.17663px,
			141.544px 3.10456px,
			143.044px 4.23098px,
			144.393px 5.54282px,
			145.572px 7.02703px,
			146.562px 8.67054px,
			147.341px 10.4603px,
			159.738px 44.9529px,
			159.738px 44.9529px,
			160.432px 47.6413px,
			160.613px 50.3152px,
			160.314px 52.9198px,
			159.569px 55.4005px,
			158.412px 57.7025px,
			156.877px 59.7713px,
			154.996px 61.5521px,
			152.804px 62.9903px,
			150.334px 64.0311px,
			147.621px 64.62px,
			16.6807px 80.5984px,
			16.6807px 80.5984px,
			13.7927px 80.6726px,
			11.051px 80.2112px,
			8.50526px 79.2659px,
			6.20477px 77.8885px,
			4.19901px 76.131px,
			2.53742px 74.045px,
			1.26946px 71.6825px,
			0.444554px 69.0952px,
			0.11216px 66.335px,
			0.321718px 63.4536px,
			7.68786px 20.1081px);
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #fff;
	color: var(--color);
}

.slide-1-eye {
	animation: move 5s ease-out infinite;
}

.mouse-scroll {
	position: fixed;
	bottom: 10px;
	right: 0;
	left: 0;
	margin: 0 auto;
	text-align: center;
	color: var(--progress-color);
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 500;
}

.mouse {
	width: 26px;
	height: 40px;
	border-radius: 15px;
	border: 2px solid var(--progress-color);
	overflow: hidden;
	position: relative;
	margin: 0 auto 10px;
}

.mouse .roll {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	margin-left: -2px;
	height: 4px;
	border-radius: 4px;
	background: var(--progress-color);
	-webkit-animation: mouseScroll 1s cubic-bezier(0.7, 0, 0.3, 1) infinite alternate;
	animation: mouseScroll 1s cubic-bezier(0.7, 0, 0.3, 1) infinite alternate;
	z-index: 2;
}

#mobile-current-lang {
	color: white;
}

.mouse .rollshadow {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	margin-left: -2px;
	height: 4px;
	background: #ffffff64;
	border-radius: 4px;
	-webkit-animation: mouseScroll 1s cubic-bezier(0.7, 0, 0.3, 1) infinite alternate;
	animation: mouseScroll 1s cubic-bezier(0.7, 0, 0.3, 1) infinite alternate;
	animation-delay: 0s;
	-webkit-animation-delay: 80ms;
	animation-delay: 80ms;
	z-index: 1;
}

.blink {
	animation: blink 2.4s infinite;
}

.swing {
	animation: swing 6s ease-in-out infinite;
	transform-origin: left;
}

.swiper-slide-active .card-cta {
	animation: bounce;
	animation-duration: 2.5s;
	animation-delay: 0.5s;
}

.swiper-slide-active .card-ghost-info div {
	animation: fadeInLeft;
	animation-duration: 1.5s;
	animation-delay: 0.3s;
}

.swiper-slide-active .card-title {
	animation: jackInTheBox;
	animation-duration: 1s;
	animation-delay: 0.8s;
}

.swiper-slide-active .card-sub-title {
	animation: bounceIn;
	animation-duration: 1s;
	animation-delay: 0.5s;
}

.swiper-slide-active .card-description {
	animation: bounceIn;
	animation-duration: 1s;
	animation-delay: 0.1s;
}

@media (max-width: 991px) {

	.overlap-3 {
		display: flex;
		justify-content: center;
	}

	.swiper {
		top: 10vh;
	}

	.privacidad {
		display: none;
	}

	.privacidad-cel {
		display: flex;
		justify-content: center;
	}

	.nav-lang {
		display: flex;
		font-size: 1.6rem;
	}

	.slide svg {
		max-width: 80%;
	}

	.slide:nth-child(odd) svg {
		height: 350px;
		width: 350px;
	}

	.slide:nth-child(even) svg {
		height: 300px;
		width: 300px;
	}

	.slide:nth-child(odd) .svg-wrapper,
	.slide:nth-child(even) .svg-wrapper {
		left: 0;
		right: 0;
		height: auto;
		width: 90%;
		margin: 0 auto;
		top: -10%;
	}

	.slide:nth-child(even) .svg-wrapper {
		top: -2%;
	}

	.slide:nth-child(even) .card-content,
	.slide:nth-child(odd) .card-content {
		max-width: 100%;
		margin: 0;
		transform: unset;
		text-align: center;
	}

	.card-title {
		font-size: 24px;
		margin-left: auto;
		margin-right: auto;
	}

	.card-sub-title {
		font-size: 12px;
	}

	.card-description {
		font-size: 10px;
		margin-left: auto;
		margin-right: auto;
	}

	.card-cta {
		margin-top: 10px;
	}

	.cta-button {
		scale: 0.7;
	}

	.card-cta .cta-button {
		margin-left: auto;
		margin-right: auto;
	}

	.card-ghost-info {
		bottom: unset;
		top: 25%;
	}

	.mouse-scroll {
		display: none;
	}

	.ghost-name {
		font-size: 10px;
	}

	.card-ghost-info {
		font-size: 8px;
	}

	.slide:nth-child(odd) .card-ghost-info {
		left: 3%;
	}

	.slide:nth-child(even) .card-ghost-info {
		right: 3%;
	}

}

@keyframes floatAnim {
	0% {
		transform: translateY(-25px);
	}

	50% {
		transform: translateY(25px);
	}

	100% {
		transform: translateY(-25px);
	}
}

@keyframes glitch-1 {
	0% {
		clip: rect(40px, 800px, 70px, 0px);
	}

	15% {
		clip: rect(130px, 800px, 131px, 0px);
	}

	50% {
		clip: rect(90px, 800px, 96px, 0px);
	}

	75% {
		clip: rect(125px, 800px, 185px, 0px);
	}

	87% {
		clip: rect(70px, 800px, 100px, 0px);
	}

	100% {
		clip: rect(130px, 800px, 130px, 0px);
	}
}

@keyframes glitch-2 {
	0% {
		clip: rect(20px, 800px, 80px, 0px);
	}

	15% {
		clip: rect(100px, 800px, 105px, 0px);
	}

	50% {
		clip: rect(100px, 800px, 95px, 0px);
	}

	75% {
		clip: rect(60px, 800px, 60px, 0px);
	}

	87% {
		clip: rect(145px, 800px, 160px, 0px);
	}

	100% {
		clip: rect(185px, 800px, 185px, 0px);
	}
}

@keyframes move {
	0% {
		transform: none;
	}

	20% {
		transform: translateX(-50px) translateY(10px) scale(0.95);
	}

	25%,
	44% {
		transform: none;
	}

	50%,
	60% {
		transform: translateX(50px) translateY(-20px) scale(0.95);
	}

	66%,
	100% {
		transform: none;
	}
}

@keyframes swing {
	0% {
		transform: translateY(-25px) rotate(10deg) scale(1);
	}

	50% {
		transform: translateY(25px) rotate(-5deg) scale(1.1);
	}

	100% {
		transform: translateY(-25px) rotate(10deg) scale(1);
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes mouseScroll {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(14px);
		transform: translateY(14px);
	}
}

@keyframes mouseScroll {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(14px);
		transform: translateY(14px);
	}
}




/* Subscribe button styles */
.subscribe-btn {
	position: fixed;
	bottom: 10px;
	right: 10px;
	color: var(--accent-color);
}

/* SVG inside subscribe button */
.subscribe-btn svg {
	height: 60px;
	width: 60px;
}

.container2 {
	margin-bottom: 200px;
}

.tablero {
	height: 300px;
	width: 400px;
}

/* Media Queries */
@media (max-width: 1440px) {
	.hero-title {
		font-size: 3rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.stat-label {
		font-size: 1rem;
	}
}

@media (max-width: 1366px) {
	.hero-title {
		font-size: 2.8rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.stat-label {
		font-size: 0.95rem;
	}
}

@media (max-width: 1140px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.stat-number {
		font-size: 1.6rem;
	}

	.stat-label {
		font-size: 0.9rem;
	}
}

@media (max-width: 991px) {
	.hero-title {
		font-size: 2.2rem;
	}

	.hero-section {
		padding-bottom: 0;
	}

	.hero-subtitle {
		font-size: 1.3rem;
	}

	.hero-content {
		padding: 1rem;
	}

	.hero-stats {
		justify-content: center;
		display: flex;
	}

	.stat-number {
		font-size: 1.4rem;
	}

	.stat-label {
		font-size: 0.85rem;
	}

	.stat-item {
		padding-right: 0rem;
		padding-left: 0rem;
		width: 35%;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.6rem;
	}

	.hero-section {
		padding-left: 0;
		padding-right: 0;
	}

	.stat-number {
		font-size: 1.2rem;
	}

	.stat-label {
		font-size: 0.8rem;
	}

	.hero-stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 660px) {
	.hero-title {
		font-size: 3rem;
	}


	.stat-number {
		font-size: 2rem;
	}

	.stat-label {
		font-size: 1.2rem;
		padding: .1rem;
	}
}

.mobile-img {
	display: none;
}

@media (max-width: 660px) {
	.desktop-img {
		display: none;
	}

	.mobile-img {
		display: block;
	}
}