/* Expocasa 2025 - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
	font-family: 'Godber';
	src: url('../fonts/Godber.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* CSS Variables */
:root {
	--color-primary: #ff5b22;
	--color-secondary: #3939ff;
	--color-white: #ffffff;
	--color-black: #000000;
	--color-neutral-light: #f9fafb;
	--color-neutral-dark: #1f2937;
	--color-gray-600: #4b5563;
	--font-primary: 'Outfit', sans-serif;
	--font-secondary: 'Godber', 'Montserrat', sans-serif;
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;
	--space-4xl: 6rem;
	--radius-sm: 0.25rem;
	--radius-md: 0.5rem;
	--radius-lg: 1rem;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--transition-base: all 0.3s ease;
}

/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-primary);
	line-height: 1.6;
	color: var(--color-black);
	background-color: var(--color-white);
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3 {
	font-family: var(--font-secondary);
	font-weight: 400;
	line-height: 1.2;
}

h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-weight: 500;
	line-height: 1.2;
}

/* Buttons */
.btn-primary {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 15px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	display: inline-block;
	transition: var(--transition-base);
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: #e54a1a;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--color-black);
	padding: 15px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	display: inline-block;
	transition: var(--transition-base);
	border: 1px solid var(--color-black);
	cursor: pointer;
}

.btn-secondary:hover {
	background: var(--color-black);
	color: var(--color-white);
}

.btn-blue {
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 15px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	display: inline-block;
	transition: var(--transition-base);
	border: none;
	cursor: pointer;
}

.btn-blue:hover {
	background: #0c0c38;
}

.btn-text {
	color: var(--color-primary);
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	transition: color 0.3s ease;
}

.btn-text:hover {
	color: #e64400;
}

/*
 Intro Section */
.intro {
	width: 100%;
	min-height: 100dvh;
	display: flex;
	background-color: #f0efef;
	position: relative;
}

.intro-pattern {
	width: 196px;
	min-height: 100dvh;
	background-image: url('../images/pattern.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.intro-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 77px;
	padding: 0;
	min-height: 100dvh;
	padding-top: 22dvh;
}

.intro-logo-main {
	width: 747px;
	height: 264px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.intro-logo-main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.intro-dates {
	width: 100%;
	background-color: var(--color-primary);
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	margin-top: auto;
}

.dates-text {
	text-align: center;
	color: white;
	font-family: var(--font-secondary);
	font-weight: normal;
	line-height: normal;
}

.date-line {
	font-size: 3rem;
	margin: 0;
	line-height: normal;
}

.faltan-line {
	font-size: 42px;
}

.venue {
	font-size: 3.5rem;
	margin: 0;
	line-height: normal;
}

.entrance-info {
	background-color: #000000;
	padding: 1rem 2rem;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: fit-content;
}

.entrance-info p {
	color: white;
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 100;
	line-height: normal;
	margin: 0;
	text-align: center;
}

/* Top Banner */
.top-banner {
	background: #F5F6FA;
	padding: 12px 0;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.banner-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.banner-logo .logo {
	height: 85px;
	width: auto;
}

.banner-nav {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-right: 1rem;
	margin-left: auto;
}


.nav-link {
	color: rgba(0, 0, 0, 0.75);
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 400;
	padding: 8px 12px;
	border-radius: 12px;
	transition: var(--transition-base);
}

.nav-link:hover {
	background: rgba(0, 0, 0, 0.05);
}

a.btn-primary.nav-link {
	color: white;
	padding: .5rem 2rem;
	border-radius: 2rem;
}

/* Hero Section */
.hero {
	background: #F5F6FA;
	padding: 0;
	z-index: 1;
	position: relative;
}

.hero-pattern {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 196px;
	background-image: url('../images/patron-expocym-new.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-container.hero-grid {
	width: 100%;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 0;
	align-items: stretch;
	min-height: 100dvh;
}

.hero-left {
	border-radius: 0;
	min-height: 100dvh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Hero skeleton loader */
.hero-left.loading {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s ease-in-out infinite;
}

.hero-right {
	display: grid;
	grid-template-rows: auto auto 1fr;
	gap: 0;
}

.hero-photo {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	border-radius: 0;
	padding: 2rem 1rem;
	text-align: center;
}

.hero-logo .logo {
	min-height: 160px;
	width: auto;
	max-width: 70%;
	aspect-ratio: 320 / 160;

}

.hero-dates {
	background-color: var(--color-primary);
	border-radius: 0;
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding-bottom: .5rem;
}


/* Countdown styles */
.contador {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
	margin: 8px 0 12px;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #ffffff;
}

.countdown-circle {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: var(--color-secondary);
	display: grid;
	place-items: center;
	font-family: var(--font-secondary);
	font-size: 40px;
	line-height: 1;
}

.countdown-label {
	font-weight: 700;
	font-size: 16px;
	margin-top: 6px;
}


.hurry {
	color: white;
	font-size: 1.25rem;

}


.hero-cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: center;
	background: var(--color-secondary);
	border-radius: 0;
	padding: 2rem 2rem;
	padding-bottom: 4rem;
}

.hero-cta .btn-primary {
	background: var(--color-primary);
	font-size: 1.7rem;
	border-radius: 4rem;
	padding: 1rem 3rem;
	width: 96%;
	margin-inline: auto;
	max-width: max-content;
}

/* Hero animations */
.hero-animate-btn {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease-out 0.3s forwards;
}

.hero-animate-text {
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInDown 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-social {
	display: flex;
	gap: 8px;
}

/* Responsive: Mobile flow */
@media (max-width: 768px) {
	.hero {
		padding: 0;
	}

	.hero-pattern {
		--position: relative;
		width: 100%;
		height: 80px;
		background-image: url('../images/patron-expocym-new.svg');
		background-repeat: repeat-x;
		transform: none;
		margin: 0;
		/* visual franja superior */
	}

	.hero-container.hero-grid {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 0 0;
	}

	.hero-left {
		display: block;
		min-height: auto;
		aspect-ratio: 2 / 3;
		border-radius: 0;
	}

	.hero-photo {
		display: none;
	}

	.hero-logo {
		background: #fff;
		border-radius: 0;
		padding: 2rem 1rem;
	}

	.hero-dates {
		border-radius: 0;
	}

	.hero-cta {
		border-radius: 0;
	}
}

/* Partners Section */
.partners-section {
	background: var(--color-white);
	padding: 2rem 1rem;
	overflow: hidden;
	z-index: 2;
	position: relative;
}

.partners-container {
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}

.partners-carousel {
	position: relative;
	overflow: hidden;
	margin: 32px 0;
	mask: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
	-webkit-mask: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
}

.partners-track {
	display: flex;
	gap: 24px;
	animation: scroll 80s linear infinite;
	width: fit-content;
}

.partner-logo {
	flex-shrink: 0;
	width: auto;
	max-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	transition: var(--transition-base);
}

.partner-logo:hover {
	transform: scale(1.05);
}

.partner-logo img {
	max-width: 56%;
	height: auto;
	display: block;
	object-fit: contain;
	filter: grayscale(70%) opacity(0.8);
	transition: var(--transition-base);
}

.partner-logo:hover img {
	filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-200px * 15 - 48px * 15));
	}
}

/* Partners Grid (Static Layout) */
.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1920px;
	margin: 3rem auto;
	padding: 0 2rem;
	align-items: center;
	justify-items: center;
}

.partners-grid .partner-logo {
	width: 100%;
	max-width: 200px;
	height: 132px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	transition: var(--transition-base);
}

.partners-grid .partner-logo:hover {
	transform: scale(1.05);
}

.partners-grid .partner-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
	filter: grayscale(70%) opacity(0.8);
	transition: var(--transition-base);
}

.partners-grid .partner-logo:hover img {
	filter: grayscale(0%) opacity(1);
}

/* Skeleton Loader for Partners */
.partner-skeleton {
	width: 100%;
	max-width: 200px;
	height: 120px;
	background: linear-gradient(90deg,
			#f0f0f0 25%,
			#e0e0e0 50%,
			#f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s ease-in-out infinite;
	border-radius: 8px;
}

@keyframes skeleton-loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

/* Fade in animation for loaded images */
.partner-logo.loading {
	background: linear-gradient(90deg,
			#f0f0f0 25%,
			#e0e0e0 50%,
			#f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s ease-in-out infinite;
	border-radius: 8px;
}

.partner-logo img {
	opacity: 0;
	transition: opacity 0.3s ease-in;
}

.partner-logo img.loaded {
	opacity: 1;
}

/* Responsive adjustments for partners grid */
@media (max-width: 1024px) {
	.partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 1rem;
		padding: 0 1rem;
	}

	.partners-grid .partner-logo {
		height: 100px;
	}
}

@media (max-width: 480px) {
	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.partners-grid .partner-logo {
		height: 80px;
	}
}

/* Features Section */
.features-section {
	background: var(--color-secondary);
	padding: 128px 80px;
}

.features-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.features-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 48px;
}

.features-header h2 {
	font-size: 82px;
	font-weight: 700;
	line-height: 1;
	color: white;
	margin-bottom: 32px;
	letter-spacing: 18px;
	text-transform: uppercase;
	font-family: var(--font-secondary);
}

.features-header p {
	font-size: 18.1px;
	line-height: 28.93px;
	color: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.feature-card {
	background: var(--color-white);
	padding: 32px;
	border-radius: 16px;
	min-height: 298px;
	display: flex;
	flex-direction: column;
}

.feature-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 22.6px;
	font-weight: 500;
	line-height: 29.33px;
	letter-spacing: -0.226px;
	color: var(--color-black);
	margin-bottom: 20px;
}

.feature-card p {
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: var(--color-black);
}

/* About Section */
.about-section {
	background: var(--color-white);
	padding: 128px 80px;
}

.about-container {
	max-width: 1280px;
	margin: 0 auto;
}

.about-header {
	text-align: center;
	margin-bottom: 80px;
	max-width: fit-content;
}

.about-header .eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 500;
	line-height: 14.77px;
	color: var(--color-primary);
	letter-spacing: 1.136px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.about-header h2 {
	font-size: clamp(2.5rem, 4vw, 3rem);
	font-weight: 700;
	line-height: clamp(2.5rem, 4.5vw, 3.25rem);
	color: var(--color-black);
	margin: 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 80px;
	align-items: center;
}

.about-text {
	font-size: 18px;
	line-height: 28px;
	color: rgba(0, 0, 0, 0.8);
}

.about-text p {
	margin-bottom: 24px;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-text strong {
	color: var(--color-primary);
	font-weight: 600;
}

.about-image {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

.separador-seccion {
	background-color: var(--color-white);
	width: 100%;
	height: 200px;
	background-image: url('../images/pattern-faded.png');
	background-size: auto 100%;
	background-repeat: repeat-x;
	background-position: left bottom;
	margin-top: 4rem;
}

/* Gallery Section */
.gallery-section {
	background: var(--color-white);
	padding: 128px 0;
}

.gallery-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.gallery-header {
	text-align: center;
	margin-bottom: 48px;
}

.eyebrow {
	font-size: 14.4px;
	line-height: 18.72px;
	color: rgba(0, 0, 0, 0.6);
	letter-spacing: 0.144px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 20px;
	text-decoration: none;
}

.gallery-header h2 {
	font-size: 45.3px;
	font-weight: 500;
	line-height: 47px;
	letter-spacing: -0.453px;
	color: var(--color-black);
}

.gallery-content {
	display: flex;
	gap: 64px;
	align-items: flex-start;
	justify-content: center;
}

.gallery-images {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gallery-image {
	width: 688px;
	height: 900px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
}

.gallery-overlay {
	backdrop-filter: blur(25px);
	background: rgba(255, 255, 255, 0.8);
	padding: 48px;
	border-radius: 16px;
	max-width: 800px;
	min-height: 529px;
	position: sticky;
	top: 10%;
}

.overlay-content h4 {
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	color: var(--color-black);
	margin-bottom: 30px;
}

.overlay-content hr {
	border: none;
	height: 1px;
	background: rgba(0, 0, 0, 0.15);
	margin: 30px 0;
}

.overlay-content a {
	text-decoration: none;
}

.overlay-content a h4 {
	text-decoration: underline;
}

.overlay-content span {
	margin-bottom: 8px;
}

/* Program Section */
.program-section {
	background: #F5F6FA;
	padding: 128px 80px;
}

.program-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.program-header {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto 48px;
}

.program-header h2 {
	font-size: 45.3px;
	font-weight: 500;
	line-height: 47px;
	letter-spacing: -0.453px;
	color: var(--color-black);
	margin-bottom: 32px;
}

.program-header p {
	font-size: 18.1px;
	line-height: 28.93px;
	color: rgba(0, 0, 0, 0.7);
}

.program-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.program-tabs {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.tab {
	background: var(--color-white);
	border: none;
	padding: 15px 22.5px;
	border-radius: 16px;
	font-size: 15px;
	line-height: 19.5px;
	color: var(--color-black);
	cursor: pointer;
	transition: var(--transition-base);
}

.tab.active {
	background: var(--color-primary);
	color: var(--color-white);
}

.program-list {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 80%;
	margin: 0 auto;
	padding: 24px 0 16px 0;
	background: var(--color-white);
	padding: 1rem;
	border-radius: 1rem;
	margin-top: 2rem;
	display: none;
}

.program-list.active {
	display: block;
}

.loading-message {
	text-align: center;
	padding: 2rem;
	color: var(--color-gray-600);
	font-style: italic;
}

.no-events {
	text-align: center;
	padding: 2rem;
	color: var(--color-gray-600);
	font-style: italic;
}

.error-message {
	text-align: center;
	padding: 2rem;
	color: #dc2626;
	background: #fef2f2;
	border-radius: 0.5rem;
	margin: 1rem;
}

.error-message button {
	margin-top: 1rem;
}

.program-item {
	display: flex;
	align-items: flex-center;
	gap: 1rem;
	border-bottom: 1px solid #eee;
	padding: 1.5rem 1rem;
}

.program-time {
	font-size: 1.5rem;
	font-weight: lighter;
	min-width: 120px;
	max-width: 8ch;
	color: #a9a9fb;
	font-family: var(--font-primary);
	white-space: pre-line;
	margin-top: 2px;
}

.program-content {
	flex: 1;
	gap: 1rem;
}

.program-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 4px;
	padding-top: .5rem;
	color: #000;
}

.program-desc {
	font-size: 1rem;
	color: #444;
}

.program-item .btn-secondary {
	font-size: 0.95rem;
	padding: 7px 18px;
	margin-top: 0;
	max-width: fit-content;
}

/* CTA Section */
.cta-section {
	background: var(--color-white);
	padding: 128px 96px;
}

.cta-container {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	gap: 32px;
	align-items: flex-end;
	justify-content: center;
}

.cta-content {
	max-width: 821px;
}

.cta-content h2 {
	font-family: var(--font-secondary);
	font-size: 127.8px;
	font-weight: 500;
	line-height: 132.95px;
	letter-spacing: -1.278px;
	color: var(--color-black);
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 18.1px;
	line-height: 28.93px;
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 20px;
}

/* Mapa Section */
.mapa-section {
	background: var(--color-secondary);
	/* padding: 128px 80px; */
	padding: 12rem 2rem;
	color: var(--color-white);
}

.mapa-container {
	max-width: 1280px;
	margin: 0 auto;
}

.mapa-container img {
	border-radius: 16px;
	overflow: hidden;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

#video {
	position: relative;
}

#video iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	border-radius: 1rem;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
	;
}

/* Galerias Section */
.galerias-section {
	background: var(--color-secondary);
	padding: 128px 80px;
	color: var(--color-white);
}

.galerias-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.galerias-header {
	text-align: center;
	margin-bottom: 48px;
}

.galerias-header h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 36px;
	color: var(--color-white);
}

.galerias-content {
	display: flex;
	gap: .5rem;
	justify-content: center;
	align-items: flex-start;
}

.galeria-tabs {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.galeria-tabs-container {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 8px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.galeria-tabs-container::-webkit-scrollbar {
	width: 6px;
}

.galeria-tabs-container::-webkit-scrollbar-track {
	background: transparent;
}

.galeria-tabs-container::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
}

.galeria-tabs-container::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

.galeria-tabs-inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 60px;
}

.galeria-tabs::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to top, var(--color-secondary) 0%, rgba(57, 57, 255, 0.8) 30%, transparent 100%);
	pointer-events: none;
	z-index: 10;
}

.galeria-tab {
	background: transparent;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	transition: var(--transition-base);
	position: relative;
	border-bottom: 4px solid transparent;
}

.galeria-tab.active {
	border-bottom: 4px solid white;
}

.galeria-cover {
	width: 128px;
	height: 128px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}

.year-label {
	font-size: 3rem;
	background: transparent;
	font-family: var(--font-secondary);
	padding: 0 1rem;
	text-align: center;
}

.galeria-panel {
	flex: 1;
	position: relative;
	max-height: 832px;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.galeria-panel .galeria-content {
	z-index: 2;
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.galeria-panel .galeria-content a {
	max-width: fit-content;
	font-size: 1.2rem;
}

.galeria-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	border-radius: 16px;
}

.galeria-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 16px;
}

.galeria-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 688px;
	top: 0;
	padding: 47px 48px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.galeria-title {
	font-size: 4rem;
	line-height: 38.4px;
	color: var(--color-white);
	margin-bottom: .5em;
	font-family: var(--font-secondary);
}

.galeria-content p {
	font-size: 24px;
	line-height: 38.4px;
	color: var(--color-white);
	margin-bottom: 32px;
}

.galeria-author h4 {
	font-size: 24px;
	line-height: 38.4px;
	color: var(--color-white);
	margin-bottom: 7px;
}

.galeria-author span {
	font-size: 18.1px;
	line-height: 28.93px;
	color: var(--color-white);
}

/* FAQ Section */
.faq-section {
	background: var(--color-white);
	padding: 128px 220px;
}

.faq-container {
	max-width: 1000px;
	margin: 0 auto;
}

.faq-header {
	text-align: center;
	margin-bottom: 48px;
}

.faq-header h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 36px;
	color: var(--color-black);
	margin-bottom: 32px;
}

.faq-header p {
	font-size: 18.1px;
	line-height: 28.93px;
	color: rgba(0, 0, 0, 0.7);
}

.faq-content {
	margin-bottom: 48px;
}

.faq-item {
	padding: 23.65px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-item h3 {
	font-size: 22.6px;
	font-weight: 500;
	line-height: 29.33px;
	letter-spacing: -0.226px;
	color: var(--color-black);
	margin-bottom: 6.85px;
}

.faq-item p {
	font-size: 18.1px;
	line-height: 28.93px;
	color: var(--color-black);
}

.faq-cta {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

/* Contact Section */
.contact-section {
	background: #F5F6FA;
	padding: 128px 80px;
}

.contact-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.contact-header {
	text-align: center;
	margin-bottom: 48px;
}

.contact-header h2 {
	font-size: 45.3px;
	font-weight: 500;
	line-height: 47px;
	letter-spacing: -0.453px;
	color: var(--color-black);
	margin-bottom: 32px;
}

.contact-header p {
	font-size: 18.1px;
	line-height: 28.93px;
	color: rgba(0, 0, 0, 0.7);
}

.contact-header a {
	color: var(--color-black);
	text-decoration: underline;
}

.contact-info {
	display: flex;
	gap: 32px;
	justify-content: center;
	margin-bottom: 48px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.contact-icon {
	width: 48px;
	height: 48px;
	border: none !important;
}

.contact-item span,
.contact-item a {
	font-size: 14px;
	line-height: 20px;
	color: var(--color-black);
	text-decoration: none;
}

.contact-item a:hover {
	color: var(--color-primary);
}

.contact-form {
	background: var(--color-white);
	padding: 48px;
	border-radius: 16px;
}

.contact-form form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	font-size: 12px;
	font-weight: 400;
	line-height: 16.8px;
	color: var(--color-black);
	letter-spacing: 0.48px;
	text-transform: uppercase;
}

.form-group input,
.form-group textarea {
	padding: 18px 17px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	font-size: 16px;
	line-height: 19.2px;
	color: var(--color-black);
	background: var(--color-white);
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}

.form-group textarea {
	min-height: 273px;
	resize: vertical;
}

.radio-group {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

.radio-item {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	color: var(--color-black);
}

.radio-custom {
	width: 24px;
	height: 24px;
	border: 1px solid rgba(0, 0, 0, 0.7);
	border-radius: 12px;
	position: relative;
}

.radio-item input[type="radio"] {
	display: none;
}

.radio-item input[type="radio"]:checked+.radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: var(--color-primary);
	border-radius: 50%;
}

/* Footer */
.footer {
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 64px 80px 16px;
}

.footer-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.footer-content {
	display: flex;
	gap: 32px;
	margin-bottom: 16px;
	width: 100%;
	justify-content: space-between;
}

.footer-brand {
	flex: 1;
	max-width: 480px;
}

.footer-logo .logo {
	height: 85px;
	width: auto;
	filter: brightness(0) invert(1);
	margin-bottom: 32px;
}

.social-links {
	display: flex;
	gap: 8px;
}

.social-link {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.social-link:hover {
	transform: scale(1.1);
}

.footer-links {
	display: flex;
	gap: 32px;
	width: 100%;
	margin-inline: auto;
	max-width: 420px;
}

.footer-column h4 {
	font-size: 11.4px;
	font-weight: 500;
	line-height: 14.77px;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 1.136px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 12px;
}

.footer-column a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: var(--color-primary);
}

.footer-divider {
	border: none;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	margin: 16px 0;
}

.footer-bottom {
	text-align: center;
}

.footer-bottom p {
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.75);
}

/* Responsive Design */
@media (max-width: 1280px) {
	.hero-title {
		font-size: 72px;
		line-height: 76px;
	}

	.cta-content h2 {
		font-size: 96px;
		line-height: 100px;
	}

	.gallery-content {
		flex-direction: column;
		align-items: center;
	}

	.gallery-overlay {
		position: relative;
		width: 100%;
		max-width: 800px;
	}
}

@media (max-width: 1024px) {
	.hero {
		padding: 0;
	}

	.hero-title {
		font-size: 64px;
		line-height: 68px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.banner-nav {
		display: none;
	}

	.hero-title {
		font-size: 48px;
		line-height: 52px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.features-section {
		padding: 64px 20px;
	}

	.about-section {
		padding: 64px 20px;
	}

	.program-section {
		padding: 1rem 4px;
	}

	.contact-section {
		padding: 64px 20px;
	}

	.footer {
		padding: 32px 20px 16px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.radio-group {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 600px) {
	.intro {
		flex-direction: column;
		height: auto !important;
	}

	.intro-pattern {
		width: 100%;
		max-width: 100%;
		max-height: 80px;
		background-image: url('../images/patron-expocym-new.svg');
		background-repeat: repeat-x;
		height: 80px;
	}

	.intro-content {
		width: 100%;
		height: auto !important;
		flex-direction: column;
	}

	.date-line {
		font-size: 4em;
	}

	.faltan-line {
		font-size: 42px;
	}

	.venue {
		font-size: 3em;
	}

	.entrance-info p {
		font-size: 1.5em !important;
	}
}

@media (max-width: 400px) {
	.date-line {
		font-size: 2em;
	}

	.venue {
		font-size: 1.8em;
	}

	.entrance-info p {
		font-size: 1em !important;
	}
}

/* 
============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Base animation states */
[data-animate] {
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.will-reveal {
	opacity: 0;
}

.will-reveal.revealed {
	opacity: 1;
}

/* Fade animations */
[data-animate="fade-up"].will-reveal {
	transform: translateY(30px);
}

[data-animate="fade-up"].revealed {
	transform: translateY(0);
}

[data-animate="fade-down"].will-reveal {
	transform: translateY(-30px);
}

[data-animate="fade-down"].revealed {
	transform: translateY(0);
}

/* Slide animations */
[data-animate="slide-up"].will-reveal {
	transform: translateY(40px);
}

[data-animate="slide-up"].revealed {
	transform: translateY(0);
}

[data-animate="slide-left"].will-reveal {
	transform: translateX(40px);
}

[data-animate="slide-left"].revealed {
	transform: translateX(0);
}

[data-animate="slide-right"].will-reveal {
	transform: translateX(-40px);
}

[data-animate="slide-right"].revealed {
	transform: translateX(0);
}

/* Scale animations */
[data-animate="scale-in"].will-reveal {
	transform: scale(0.9);
}

[data-animate="scale-in"].revealed {
	transform: scale(1);
}

/* Scroll animate class */
.scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children */
.stagger-child {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stagger-child.animate {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */

/* Fade in up */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out forwards;
}

/* Fade out */
@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fade-out {
	animation: fadeOut 0.3s ease-out forwards;
}

/* Flip in */
@keyframes flipIn {
	from {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}

	to {
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

.flip-in {
	animation: flipIn 0.6s ease-out forwards;
}

/* Pulse */
@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.pulse {
	animation: pulse 1s ease-in-out;
}

/* Shake */
@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-10px);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(10px);
	}
}

.shake {
	animation: shake 0.5s ease-in-out;
}

/* Hover effects */
.hover-lift {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hover-zoom {
	transition: transform 0.3s ease-out;
}

/* Loading animations */
.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-left-color: var(--color-primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-dots {
	display: flex;
	gap: 8px;
}

.loading-dot {
	width: 12px;
	height: 12px;
	background: var(--color-primary);
	border-radius: 50%;
	animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dot:nth-child(1) {
	animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
	animation-delay: -0.16s;
}

@keyframes bounce {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

/* Tilt effect */
.feature-card,
.gallery-image {
	transition: transform 0.3s ease-out;
	transform-style: preserve-3d;
}

/* Parallax */
.parallax {
	transition: transform 0.1s ease-out;
}

/* Smooth transitions for all interactive elements */
button,
a,
.btn,
.card {
	transition: all 0.3s ease-out;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	[data-animate],
	.scroll-animate,
	.stagger-child {
		opacity: 1 !important;
		transform: none !important;
	}
}


@media (max-width: 640px) {
	body {
		padding-top: 60px;
	}

	.hero {
		margin-top: 0 !important;
	}

	.banner-logo {
		display: flex !important;
		align-items: center !important;
		z-index: 1000;
	}

	.banner-logo .logo {
		max-width: 168px;
	}

	.banner-container {
		padding: 12px 16px !important;
		position: relative !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		max-width: 100vw !important;
		width: 100vw !important;
		margin: 0 auto !important;
		box-sizing: border-box !important;
		min-height: 60px;
		z-index: 1003;
	}

	.top-banner {
		background: #F5F6FA !important;
		padding: 0 !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100%;
		z-index: 1001 !important;
	}

	/* Mobile menu backdrop */
	.mobile-nav-backdrop {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		transition: opacity 0.3s ease;
		pointer-events: none;
	}

	.mobile-nav-backdrop.active {
		display: block;
		opacity: 1;
		pointer-events: auto;
	}

	.mobile-nav-toggle {
		display: block !important;
		position: absolute;
		right: 16px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1004;
		background: transparent;
		border: none;
		font-size: 1.8em;
		color: var(--color-primary, #ff5b22);
		cursor: pointer;
	}

	button.mobile-nav-toggle {
		background: transparent;
		font-size: 1.5rem;
		padding: 8px 12px;
		border-radius: .5rem;
		margin-right: 0.5rem;
		border: none;
		transition: all 0.3s ease;
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	button.mobile-nav-toggle:hover {
		background: rgba(255, 91, 34, 0.1);
	}

	button.mobile-nav-toggle.active {
		background: rgba(255, 91, 34, 0.15);
		transform: translateY(-50%) rotate(90deg);
	}

	.banner-nav {
		display: none;
		flex-direction: column;
		position: fixed !important;
		top: 60px !important;
		left: 0 !important;
		right: 0 !important;
		background: #fff;
		box-shadow: 0 4px 12px 2px rgba(0, 0, 0, 0.13);
		width: 100% !important;
		border-radius: 0 0 12px 12px;
		gap: 0;
		padding: 12px 0;
		z-index: 1000;
		transition: all 0.3s ease;
		align-items: stretch;
		max-height: calc(100vh - 60px) !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		min-height: auto !important;
		height: auto !important;
		-webkit-overflow-scrolling: touch;
	}

	.banner-nav.open {
		display: flex !important;
		animation: slideDown 0.3s ease-out;
		margin-inline: 0;
		margin-top: 2rem;
	}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.banner-nav .nav-link {
		width: 100% !important;
		padding: 18px 24px !important;
		margin: 0 !important;
		text-align: left !important;
		border-radius: 0 !important;
		font-size: 1.05em !important;
		color: #333 !important;
		border-bottom: 1px solid #f0f0f0 !important;
		transition: all 0.2s ease !important;
		display: flex !important;
		align-items: center !important;
		opacity: 0 !important;
		visibility: visible !important;
		background: transparent !important;
		text-decoration: none !important;
		font-weight: 500 !important;
		line-height: 1.4 !important;
		height: auto !important;
		min-height: 54px !important;
		box-sizing: border-box !important;
		transform: translateX(-20px);
	}

	.banner-nav.open .nav-link {
		opacity: 1 !important;
		transform: translateX(0);
	}

	.banner-nav.open .nav-link:nth-child(1) {
		transition-delay: 0.05s;
	}

	.banner-nav.open .nav-link:nth-child(2) {
		transition-delay: 0.1s;
	}

	.banner-nav.open .nav-link:nth-child(3) {
		transition-delay: 0.15s;
	}

	.banner-nav.open .nav-link:nth-child(4) {
		transition-delay: 0.2s;
	}

	.banner-nav .nav-link:hover {
		background-color: #f8f9fa;
		padding-left: 28px !important;
	}

	.banner-nav .nav-link:last-child {
		border-bottom: none;
	}

	.banner-nav .nav-link:nth-last-child(2) {
		margin-bottom: 8px;
	}

	.banner-nav .btn-primary {
		margin: 12px 16px 16px 16px !important;
		width: calc(100% - 32px) !important;
		padding: 16px 24px !important;
		border-radius: 8px !important;
		text-align: center !important;
		font-size: 1.05em !important;
		font-weight: 600 !important;
		border: none !important;
		border-bottom: none !important;
		min-height: 50px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		opacity: 1 !important;
		visibility: visible !important;
		box-sizing: border-box !important;
		transition: all 0.2s ease !important;
	}

	.banner-nav .btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(255, 91, 34, 0.3);
	}


	.mapa-section {
		background: var(--color-secondary);
		/* padding: 128px 80px; */
		padding: 4rem 2rem;
		color: var(--color-white);
	}
}

@media (min-width: 641px) {
	.mobile-nav-toggle {
		display: none !important;
	}

	.banner-container {
		max-width: 1280px !important;
		margin: 0 auto !important;
		padding: 0 16px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: auto !important;
		min-height: auto !important;
		position: static !important;
	}

	.banner-logo {
		display: block !important;
		align-items: normal !important;
		z-index: auto !important;
	}

	.banner-logo .logo {
		height: 85px !important;
		width: auto !important;
		max-width: none !important;
		display: block !important;
	}

	.top-banner {
		background: #F5F6FA !important;
		padding: 12px 0 !important;
		box-shadow: none !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
	}

	.banner-nav {
		display: flex !important;
		flex-direction: row;
		position: static;
		background: none;
		box-shadow: none;
		width: auto;
		border-radius: 0;
		gap: 18px;
		padding: 0;
		align-items: center;
	}

	.banner-nav .nav-link {
		width: auto;
		padding: 0 12px;
		text-align: center;
		border-radius: 6px;
		font-size: 1.05em;
		margin: 0;
	}

	.banner-nav .btn-primary {
		margin-top: 0;
		width: auto;
	}
}

@media (max-width: 640px) {

	.hero {
		padding: 0;
		padding-top: 3rem;
		min-height: 100dvh;
		background: #3939ff;
	}

	/* Contenedores y secciones principales */
	.container,
	.section,
	.hero-container,
	.about-container,
	.program-container,
	.contact-container,
	.footer-container {
		max-width: 100vw;
		width: 100vw;
		padding: 0 !important;
		margin: 0 auto;
		box-sizing: border-box;
		border-radius: 0;
		overflow-x: hidden;
	}

	/* Hero Section (principal) */
	.hero-right,
	.hero-logo,
	.hero-dates,
	.hero-cta {
		border-radius: 0 !important;
		padding: 1rem 0 !important;
		width: 100%;
		box-sizing: border-box;
	}

	.hero-left {
		display: none !important;
	}

	.hero-logo img,
	.footer-logo .logo,
	.partner-logo img {
		display: block;
		margin: 0 auto;
		max-width: 120px;
		height: auto;
	}

	.contador,
	.countdown-item {
		gap: 10px !important;
		font-size: 1em !important;
		flex-wrap: wrap;
		justify-content: center;
	}

	.countdown-circle {
		width: 64px !important;
		height: 64px !important;
		font-size: 1.4em !important;
		margin-bottom: 4px !important;
	}

	.countdown-label {
		font-size: 0.92em !important;
	}

	/* Footer styles only */
	.footer-links,
	.footer-content {
		flex-direction: column !important;
		gap: 8px !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100%;
		margin: 0 auto !important;
	}

	/* Partners / Logos */
	.partners-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 8px !important;
		padding: 0 !important;
		max-width: 100vw !important;
	}

	.partners-grid .partner-logo {
		max-width: 120px !important;
		height: 80px !important;
		margin: 0 auto;
	}

	.partners-grid .partner-logo img {
		max-width: 100px !important;
		height: auto;
	}

	/* Programa / tabs */
	.program-tabs {
		flex-direction: column !important;
		gap: 8px !important;
		align-items: stretch !important;
	}

	.tab {
		width: 100% !important;
		margin: 0;
		padding: 12px 0 !important;
		border-radius: 12px !important;
		font-size: 1em !important;
		box-sizing: border-box;
		background: var(--color-primary);
		color: white;
		font-weight: bold;
	}

	.tab.active {
		background: var(--color-secondary);
		color: white;
	}

	.program-list {
		width: 100vw !important;
		margin: 0 !important;
		padding: 8px 0 8px 0 !important;
		border-radius: 0 !important;
	}

	.program-item {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 6px !important;
		padding: 0.8rem 0.5rem !important;
		font-size: 0.96em !important;
		border-bottom: 1px solid #eee;
	}

	/* About Section */
	.about-content {
		display: flex !important;
		flex-direction: column !important;
		gap: 1.2rem;
		align-items: center !important;
		padding-inline: 2rem;
	}

	.about-image img {
		width: 95vw !important;
		max-width: 340px !important;
		height: auto;
		margin: 0 auto;
		border-radius: 10px;
	}

	/* Contacto y Formulario */
	.contact-info,
	.contact-form {
		flex-direction: column !important;
		gap: 16px !important;
		align-items: center !important;
		width: 100vw !important;
		padding: 0 !important;
	}

	.contact-form form {
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
		padding: 0 !important;
		width: 100vw !important;
	}

	.form-row,
	.form-group {
		width: 100vw !important;
		box-sizing: border-box !important;
		grid-template-columns: 1fr !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.form-group input,
	.form-group textarea {
		width: 100vw !important;
		font-size: 1em !important;
		padding: 12px !important;
		border-radius: 10px !important;
		box-sizing: border-box;
	}

	.radio-group {
		flex-direction: column !important;
		gap: 8px !important;
	}

	.btn-primary,
	.btn-secondary,
	.btn-blue {
		width: 100vw !important;
		min-width: 120px !important;
		font-size: 1.2rem !important;
		border-radius: 10px !important;
		margin: 8px 0 !important;
		box-sizing: border-box;
	}

	/* Footer en columna */
	.footer-content,
	.footer-links {
		flex-direction: column !important;
		gap: 6px !important;
		align-items: center !important;
		width: 100vw !important;
	}

	.footer-logo .logo {
		height: 48px !important;
		max-width: 110px !important;
		margin: 0 auto 6px auto !important;
	}

	.footer-column,
	.footer-bottom,
	.footer-divider {
		width: 100vw !important;
		text-align: center !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.footer-divider {
		height: 2px !important;
		margin: 6px 0 !important;
	}

	.social-links {
		justify-content: center !important;
		margin: 0 auto !important;
		gap: 8px !important;
	}

	.social-link {
		width: 32px !important;
		height: 32px !important;
	}

	/* Ajuste global overflow */
	div,
	section,
	aside,
	nav,
	main,
	footer {
		max-width: 100vw;
		overflow-x: hidden;
	}
}