/* Futbol Fest Landing - Estilos Principales */
/* Google Fonts (Barlow, Barlow Condensed, Arimo) se cargan via <link> con
   preconnect en functions.php (futbolfest_landing_enqueue_styles) en vez de
   @import: un @import bloquea el render hasta que se resuelve en cascada
   (CSS -> @import -> fuentes), mientras que un <link rel="stylesheet"> lo
   descubre el navegador de inmediato y en paralelo con el resto del CSS. */

:root {
	--font-barlow: 'Barlow', sans-serif;
	--section-content-max: 1175px;
	--color-primary: #1e3a8a;
	--color-secondary: #F5A200;
	--color-text: #1f2937;
	--color-text-light: #ffffff;
	--color-text-gray: #64748b;
	--color-text-light-gray: #cbd5e1;
	--color-bg-light: #FFFFFF;
	--color-bg-dark: #0f172a;
	--color-accent: #ef4444;
	--color-border: #e2e8f0;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 2.5rem;
	--spacing-2xl: 3rem;
	--spacing-3xl: 3.5rem;
	--spacing-hero: 60px;
	--spacing-section: 80px;
}

body {
	font-family: var(--font-barlow);
}

body.futbolfest-modal-open {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* ============================================
   GENERAL SECTION - Padding proporcional reutilizable
   ============================================ */
.general-section {
	box-sizing: border-box;
	padding-right: max(1.25rem, calc((100vw - var(--section-content-max)) / 2));
	padding-left: max(1.25rem, calc((100vw - var(--section-content-max)) / 2));
	margin: 0 auto;
}

.futbolfest-registro-qr-page {
	min-height: 100vh;
	background: #F5F7FC;
}

.registro-qr-section {
	min-height: auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 0;
	background: #F5F7FC;
}

.futbolfest-registro-qr-page .registro-qr-section {
	min-height: 100vh;
}

.registro-qr-card[hidden] {
	display: none;
}

.registro-qr-card {
	width: 100%;
	max-width: 1024px;
}

.registro-qr-section:has(.registro-confirmacion:not([hidden])) {
	background-color: #F5F7FC;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
	--hero-bg-position: 100% center;
	position: relative;
	overflow: hidden;
	background-color: var(--color-primary);
	min-height: clamp(650px, 90vh, 950px);
	display: flex;
	align-items: center;
	padding-top: 3.5rem;
	padding-bottom: 5.25rem;
}

.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 0;
	background-image: url('/wp-content/themes/futbolfest-landing/assets/images/Hero.webp');
	background-size: cover;
	background-position: var(--hero-bg-position);
	pointer-events: none;
}

.hero-container {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-logo {
	max-width: 176px;
	height: auto;
	margin-bottom: 0.625rem;
}

.evento-badge {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	padding: 0.25rem 0.75rem;
	gap: 0.375rem;
	height: 26px;
	max-width: 168px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50px;
	margin-bottom: 0.625rem;
	justify-content: center;
}

.evento-badge span {
	font-family: 'Barlow';
	font-style: normal;
	font-weight: 600;
	font-size: 0.75rem;
	line-height: 16px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.badge-estrella {
	width: 12px;
	height: 12px;
	object-fit: contain;
}

.hero-heading {
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 4.875rem;
	line-height: 4.875rem;
	letter-spacing: 0;
	margin-bottom: 1.5rem;
	text-align: left;
	color: var(--color-secondary);
}

.hero-heading span {
	color: #ffffff !important;
}

.hero-separador {
	width: 106px;
	height: auto;

	display: block;
}

.hero-description {
	color: #FFFFFFCC;

	margin-bottom: 0.6875rem;
	max-width: 507px;

	font-family: Barlow;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 26px;
	letter-spacing: 0px;
}

.hero-info {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 1.1875rem;
	flex-direction: column;
}

.hero-info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-info-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	object-fit: contain;
	transition: transform 0.22s ease;
}

.hero-info-item:hover .hero-info-icon {
	transform: scale3d(1.08, 1.08, 1);
}

.hero-info-text {
	color: #FFFFFFB2;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.125rem;
	letter-spacing: 0;
}

.hero-schedule {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	line-height: 0.95rem;
}

.hero-schedule span {
	display: block;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	background: rgba(245, 162, 0, 0.2);
	border: 1px solid rgba(245, 162, 0, 0.35);
	border-radius: 50px;
	color: var(--color-secondary);
	font-family: 'Barlow';
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.2;
	transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.hero-badge:hover {
	transform: translate3d(0, -2px, 0);
	background-color: rgba(245, 162, 0, 0.28);
}

.hero-entradas-footer {
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 1rem;
	letter-spacing: 0;
	color: #FFFFFF4D;
	margin-top: 1rem;
}

/* ============================================
   REGISTRO SECTION
   ============================================ */
.registro-section {
	background-color: var(--color-bg-light);
	padding-top: 3rem;
	padding-bottom: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.registro-section:has(.registro-confirmacion:not([hidden])) {
	background-color: var(--color-bg-light);
}

.registro-heading {
	display: flex;
	flex-direction: column;
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 2.5rem;
	line-height: 40px;
	letter-spacing: 0px;
	margin-bottom: 0.625rem;
}

.registro-heading-main {
	color: #000000;
}

.registro-heading-accent {
	color: #152CA7;
}

.registro-description {
	color: #5A6A9A;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.8125rem;
	line-height: 28px;
	margin-bottom: 1.5rem;
}

.registro-card {
	width: 100%;
	min-height: 785px;
	background: #ffffff;
	border: 1px solid rgba(26, 63, 160, 0.08);
	border-radius: 16px;
	box-shadow: 0 40px 80px 8px rgba(13, 27, 75, 0.10);
	opacity: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	overflow: hidden;
}

.registro-card[hidden] {
	display: none;
}

.registro-content {
	min-width: 0;
	padding: 2rem;
}

.registro-card-header {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: #F5A200;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.75rem;
	margin-bottom: 0.625rem;
	line-height: 17px;
	letter-spacing: 2px;
}

.registro-card-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: #F5A200;
}

.registro-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.registro-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.registro-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.registro-field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0;
}

.registro-field-full {
	grid-column: 1 / -1;
}

.registro-field > span {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 12px;
	letter-spacing: 0px;
}

.registro-field-icon {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	color: #F5A200;
}

.registro-field input,
.registro-field select {
	width: 100%;
	height: 44px;
	padding: 0.25rem 0.75rem;
	background: #F5F7FC;
	border: 1px solid rgba(26, 63, 160, 0.18);
	border-radius: 11px;
	color: #5A6A9A;
	font-family: 'Barlow';
	font-size: 0.875rem;
	line-height: 17px;
	letter-spacing: 0px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registro-kids-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.875rem;
	width: 100%;
}

.registro-kids-question-text {
	display: flex;
	flex-direction: column;
	gap: 0.1875rem;
	min-width: 0;
}

.registro-kids-question-text span {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 12px;
	letter-spacing: 0;
}

.registro-kids-question-text p {
	margin: 0;
	color: #5A6A9A;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.6875rem;
	line-height: 14px;
	letter-spacing: 0;
}

.registro-choice-group {
	width: 168px;
	min-width: 168px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	background: #FFFFFF;
	border: 1px solid rgba(26, 63, 160, 0.12);
	border-radius: 11px;
}

.registro-choice {
	position: relative;
	display: flex;
	margin: 0;
	cursor: pointer;
}

.registro-choice input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.registro-choice span {
	width: 100%;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.25rem 0.625rem;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 9px;
	color: #5A6A9A;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 14px;
	letter-spacing: 0;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.registro-choice input:checked + span {
	background: #152CA7;
	border-color: #152CA7;
	color: #FFFFFF;
	font-weight: 700;
}

.registro-choice input:focus-visible + span {
	border-color: rgba(26, 63, 160, 0.45);
}

.registro-kids-panel {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	padding: 1rem;
	background: #F8FAFF;
	border: 1px solid rgba(26, 63, 160, 0.14);
	border-radius: 14px;
}

.registro-kids-panel[hidden] {
	display: none;
}

.registro-kids-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.registro-kids-header-main {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	min-width: 0;
}

.registro-kids-header-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #152CA7;
	background: rgba(21, 44, 167, 0.08);
	border-radius: 9px;
}

.registro-kids-header-icon svg {
	width: 14px;
	height: 14px;
}

.registro-kids-header-main span:not(.registro-kids-header-icon) {
	display: block;
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 15px;
	letter-spacing: 0;
}

.registro-kids-header-main p {
	margin: 0.125rem 0 0;
	color: #5A6A9A;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.6875rem;
	line-height: 14px;
	letter-spacing: 0;
}

.registro-kids-add,
.registro-kids-remove {
	border: 1px solid transparent;
	font-family: 'Barlow';
	letter-spacing: 0;
	cursor: pointer;
}

.registro-kids-add {
	min-height: 34px;
	flex-shrink: 0;
	padding: 0.4375rem 0.6875rem;
	background: #FFFFFF;
	border-color: rgba(21, 44, 167, 0.32);
	border-radius: 10px;
	color: #152CA7;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 14px;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.registro-kids-add:hover {
	background: rgba(21, 44, 167, 0.06);
	border-color: rgba(21, 44, 167, 0.22);
}

.registro-kids-add:disabled {
	opacity: 0.5;
	cursor: default;
}

.registro-kids-list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	max-height: 138px;
	overflow-y: auto;
	padding-right: 0.25rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(21, 44, 167, 0.28) transparent;
}

.registro-kids-list::-webkit-scrollbar {
	width: 6px;
}

.registro-kids-list::-webkit-scrollbar-track {
	background: transparent;
}

.registro-kids-list::-webkit-scrollbar-thumb {
	background: rgba(21, 44, 167, 0.22);
	border-radius: 999px;
}

.registro-kid-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0.875rem;
	background: #FFFFFF;
	border: 1px solid rgba(26, 63, 160, 0.08);
	border-radius: 12px;
	box-shadow: 0 12px 24px rgba(13, 27, 75, 0.04);
}

.registro-kid-row-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.625rem;
}

.registro-kid-row-header > span {
	color: #152CA7;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 15px;
	letter-spacing: 0;
}

.registro-kid-row-fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 96px;
	gap: 0.75rem;
	align-items: end;
}

.registro-kids-remove {
	min-height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.1875rem 0.375rem;
	background: transparent;
	border-radius: 8px;
	color: #E53935;
	font-weight: 700;
	font-size: 0.6875rem;
	line-height: 12px;
}

.registro-kids-remove:hover {
	background: rgba(229, 57, 53, 0.08);
}

.registro-field select {
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 4L10 8L6 12' stroke='%23152CA7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: right 12px center;
	background-size: 16px 16px;
	background-repeat: no-repeat;
	border-radius: 11px;
	overflow: hidden;
	padding-right: 2.5rem;
}

.registro-field select.is-open {
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23152CA7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.registro-field select option {
	background: #F5F7FC;
	border-radius: 11px;
	color: #5A6A9A;
	font-family: 'Barlow';
	font-size: 0.875rem;
}

.registro-field input:focus,
.registro-field select:focus {
	border-color: rgba(26, 63, 160, 0.45);
	box-shadow: none;
}

.btn.btn-primary.registro-submit {
	width: 100%;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.625rem;
	gap: 0.5rem;
	padding: 0.75rem 0;
	background-color: #152CA7;
	border-radius: 14px;
	color: #FFFFFF;
	font-family: 'Barlow';
	font-weight: 800;
	font-size: 1rem;
	line-height: 23px;
	letter-spacing: 1px;
	text-align: center;
	opacity: 1;
	transition: background-color 0.28s ease;
}

.btn.btn-primary.registro-submit:disabled {
	cursor: not-allowed;
	opacity: 0.65;
	transform: none;
}

.btn.btn-primary.registro-submit.is-success:disabled {
	opacity: 1;
}

.registro-submit-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: currentColor;
}

.registro-submit-check {
	display: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: currentColor;
}

.btn.btn-primary.registro-submit.is-success {
	background-color: #15803d;
}

.btn.btn-primary.registro-submit.is-success .registro-submit-icon,
.btn.btn-primary.registro-submit.is-success .registro-submit-text {
	display: none;
}

.btn.btn-primary.registro-submit.is-success .registro-submit-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.registro-visual {
	width: 100%;
	height: 100%;
	min-height: 507px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

.registro-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 16% center;
	border-radius: 0;
}

@media (min-width: 769px) {
	.registro-content {
		overflow-y: auto;
		scrollbar-width: thin;
		scrollbar-color: rgba(21, 44, 167, 0.28) transparent;
	}

	.registro-content::-webkit-scrollbar {
		width: 6px;
	}

	.registro-content::-webkit-scrollbar-track {
		background: transparent;
	}

	.registro-content::-webkit-scrollbar-thumb {
		background: rgba(21, 44, 167, 0.22);
		border-radius: 999px;
	}

	.registro-visual {
		height: 100%;
		min-height: 0;
		overflow: hidden;
	}

}

.registro-qr-visual {
	position: relative;
	overflow: hidden;
}

.registro-qr-visual-content {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
	padding: 2rem;
	color: #ffffff;
	text-align: left;
}

.registro-qr-visual-title {
	max-width: 320px;
	margin: 0 0 0.625rem;
	color: var(--color-secondary);
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 2.2rem;
	line-height: 36.96px;
	letter-spacing: 0;
}

.registro-qr-visual-title span {
	color: #ffffff;
}

.registro-qr-visual-description {
	width: 220px;
	margin: 0 0 0.875rem;
	color: #FFFFFFA6;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.82rem;
	line-height: 20.99px;
	letter-spacing: 0;
}

.registro-qr-visual-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 320px;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.registro-qr-visual-list-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #FFFFFFBF;
	font-family: 'Barlow';
	font-weight: 600;
	font-size: 0.8rem;
	line-height: 19.2px;
	letter-spacing: 0;
}

.registro-qr-visual-list-icon {
	width: 16px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1rem;
	line-height: 24px;
}

.registro-message {
	display: none;
	margin: 0;
	font-family: 'Barlow';
	font-weight: 600;
	font-size: 0.75rem;
	line-height: 18px;
	text-align: center;
}

.registro-message:not(:empty) {
	display: block;
	margin-top: 0.5rem;
}

.registro-message[data-state="success"] {
	color: #15803d;
}

.registro-message[data-state="error"] {
	color: #dc2626;
}

.registro-message[data-state="loading"] {
	color: #5A6A9A;
}

.registro-turnstile {
	display: flex;
	justify-content: center;
	margin: 14px 0;
}

.registro-turnstile:empty {
	display: none;
}

.reclamacion-message {
	display: none;
	margin: 0;
	font-family: 'Barlow';
	font-weight: 600;
	font-size: 0.8125rem;
	line-height: 18px;
	text-align: center;
}

.reclamacion-message:not(:empty) {
	display: block;
	margin-top: 0.75rem;
}

.reclamacion-message[data-state="success"] {
	color: #15803d;
}

.reclamacion-message[data-state="error"] {
	color: #dc2626;
}

.reclamacion-message[data-state="loading"] {
	color: #5A6A9A;
}

.registro-confirmacion[hidden] {
	display: none;
}

.registro-confirmacion {
	width: 512px;
	min-height: 576px;
	max-height: calc(100svh - 32px);
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 0 0 100vmax #00000080, 0 40px 80px 8px rgba(13, 27, 75, 0.18);
	display: flex;
	flex-direction: column;
	text-align: center;
	outline: none;
	overflow: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1000;
	transform: translate(-50%, -50%);
}

.registro-confirmacion-hero {
	width: 100%;
	min-height: 192px;
	position: relative;
	background-image: url('/wp-content/themes/futbolfest-landing/assets/images/SuccessModal.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.registro-confirmacion-close {
	width: 23px;
	height: 23px;
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
}

.registro-confirmacion-close svg {
	width: 23px;
	height: 23px;
	display: block;
}

.registro-confirmacion-body {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 1.5rem;
}

.registro-confirmacion-label {
	margin: 0 0 0.625rem;
	color: #0D1B4B;
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 1.625rem;
	line-height: 26px;
	letter-spacing: 0px;
}

.registro-confirmacion-mensaje {
	margin: 0 0 0.625rem;
	color: #152CA7;
	font-family: 'Barlow Condensed';
	font-weight: 700;
	font-size: 1rem;
	line-height: 23px;
	letter-spacing: 0px;
}


.registro-confirmacion-title {
	width: 100%;
	max-width: 270px;
	margin: 0 0 1.25rem;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 21px;
	letter-spacing: 0;
	color: #5A6A9A;
}

.registro-confirmacion-title-strong {
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 21px;
	letter-spacing: 0;
}

.registro-confirmacion-separador {
	width: 60px;
	height: 18px;
	object-fit: contain;
	margin-bottom: 0.75rem;
	flex-shrink: 0;
}

.btn.btn-primary.registro-confirmacion-reset {
	width: 100%;
	height: 47px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8125rem;
	background-color: #152CA7;
	border-radius: 14px;
	color: #FFFFFF;
	font-family: 'Barlow Condensed';
	font-weight: 800;
	font-size: 1rem;
	line-height: 23px;
	letter-spacing: 1px;
	text-align: center;
	opacity: 1;
}

.registro-confirmacion-location {
	width: 100%;
	height: 75px;
	border-radius: 14px;
	display: flex;
	border: 1px solid #152CA71A;
	padding: 0.75rem 1rem;
	background-color: #F5F7FC;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	text-align: left;
}

.registro-confirmacion-location-icon {
	width: 18px;
	height: 27px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.125rem;
	line-height: 27px;
}

.registro-confirmacion-location-content {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.registro-confirmacion-location-label,
.registro-confirmacion-location-place,
.registro-confirmacion-location-date {
	margin: 0;
	font-family: 'Barlow';
	letter-spacing: 0;
}

.registro-confirmacion-location-label {
	font-family: 'Barlow';
	color: #5A6A9A;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 12px;
	letter-spacing: 0px;
}

.registro-confirmacion-location-place {
	font-family: 'Barlow';
	color: #0D1B4B;
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 20px;
	letter-spacing: 0px;
}

.registro-confirmacion-location-date {
	font-family: 'Barlow';
	color: #152CA7;
	font-weight: 600;
	font-size: 0.75rem;
	line-height: 17px;
	letter-spacing: 0px;
}

/* ============================================
   ACTIVIDADES SECTION
   ============================================ */
.actividades-section {
	--section-content-max: 1024px;
	background-color: #ffffff;
	padding-top: 2.9375rem;
	padding-bottom: 2.9375rem;
}

.actividades-description {
	text-align: left;
	margin-bottom: 24PX;
	font-family: Barlow;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 20px;
	letter-spacing: 0px;
	color: #5A6A9A;
}

.actividades-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

.actividades-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.625rem;
}

.actividad-card {
	background-color: #FAFAFA;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 346px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.actividad-card:hover {
	transform: translate3d(0, -4px, 0);
	box-shadow: 0 18px 34px -18px rgba(13, 27, 75, 0.35);
	border-color: transparent;
}

/* Cada fila (.actividades-group) tiene su propio color de borde. */
.actividades-grid > .actividades-group:nth-child(1) .actividad-card {
	border-color: #F5A20029;
}

.actividades-grid > .actividades-group:nth-child(2) .actividad-card {
	border-color: #22D3EE29;
}

.actividades-grid > .actividades-group:nth-child(3) .actividad-card {
	border-color: #22D3EE29;
}

.actividades-grid > .actividades-group:nth-child(4) .actividad-card {
	border-color: #F5A20029;
}

.actividad-card-media {
	position: relative;
	aspect-ratio: 16 / 9;
	flex-shrink: 0;
	overflow: hidden;
}

.actividad-card-img {
	position: absolute;
	inset: 0;
	background-color: #e2e8f0;
	background-size: cover;
	background-position: center;
}

.actividad-card-carousel {
	position: absolute;
	inset: 0;
}

.actividad-card-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.actividad-card-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.actividad-card-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.actividad-card-dot {
	width: 6px;
	height: 6px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.actividad-card-dot.is-active {
	background-color: #ffffff;
	transform: scale(1.3);
}

.actividad-card-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.4);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 11px;
	cursor: pointer;
	opacity: 0;
	transform: translateY(-50%);
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.actividad-card-media:hover .actividad-card-arrow {
	opacity: 1;
}

.actividad-card-arrow:hover {
	background-color: rgba(0, 0, 0, 0.65);
}

.actividad-card-arrow--prev {
	left: 8px;
}

.actividad-card-arrow--next {
	right: 8px;
}

.actividad-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 27, 75, 0) 45%, rgba(13, 27, 75, 0.45) 100%);
}

.actividad-field-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
		radial-gradient(circle at 50% 50%, transparent 22px, rgba(255, 255, 255, 0.1) 23px, transparent 24px);
	background-size: 100% 34px, 100% 100%;
}

.actividad-card-body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.actividad-card-kicker {
	color: #0D1B4B;
	font-family: 'Arimo';
	font-weight: 800;
	font-size: 1rem;
	line-height: 18px;
	letter-spacing: 0;
}

.actividad-card-subtitle {
	font-family: 'Arimo';
	font-weight: 600;
	font-size: 0.625rem;
	line-height: 10px;
	letter-spacing: 0.25px;
	padding-bottom: 5px;
	text-transform: uppercase;
	color: #9CA3AF;
}

.actividad-card-desc {
	font-family: 'Arimo';
	font-weight: 400;
	font-size: 0.71875rem;
	line-height: 17px;
	padding-bottom: 5px;
	letter-spacing: 0;
	color: #5A6A9A;
	flex: 1;
}

.actividad-card-tag {
	align-self: stretch;
	max-width: 100%;
	padding: 6px 10px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	font-family: 'Arimo', sans-serif;
	font-weight: 600;
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0;
}

.actividad-tag--orange {
	background-color: #F5A2001F;
	color: #F5A200;
}

.actividad-tag--blue {
	background-color: #22D3EE1F;
	color: #22D3EE;
}

.actividad-tag--red {
	background-color: #E8203A1F;
	color: #E8203A;
}

/* Lazy-load real: la url() solo se declara bajo `.is-visible`, que
   registro.js agrega via IntersectionObserver cuando la tarjeta entra al
   viewport. Mientras tanto el navegador no descarga estas imagenes de fondo
   (a diferencia de declararlas directo en `.actividad-img-N`, que el
   navegador descarga apenas el elemento existe en el DOM sin importar si es
   visible). El placeholder gris viene de `.actividad-card-img` (arriba). */
.actividad-img-1-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/Juego1.1.webp'); }
.actividad-img-1-3.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/Juego1.2.png'); }
.actividad-img-2-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego2-2.jpg'); }
.actividad-img-3-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego3-2.jpg'); }
.actividad-img-4-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego4-2.jpg'); }
.actividad-img-5.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juegoscomputadora.jpeg'); }
.actividad-img-6-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego6-2.jpg'); }
.actividad-img-7.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/futbolmesa.jpeg'); }
.actividad-img-8-1.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego8-1.jpg'); }
.actividad-img-8-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego8-2.jpg'); }
.actividad-img-8-3.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego8-3.jpg'); }
.actividad-img-9-1.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego9-1.jpg'); }
.actividad-img-9-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego9-2.jpg'); }
.actividad-img-9-3.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego9-3.jpg'); }
.actividad-img-10-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego10-2.jpg'); }
.actividad-img-10-3.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego10-3.jpg'); }
.actividad-img-11-1.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego11-1.jpg'); }
.actividad-img-11-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego11-2.jpg'); }
.actividad-img-11-3.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/juego11-3.jpg'); }
.actividad-img-12.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/tiro-a-blanco-con-pelota.jpeg'); }
.actividad-img-12-2.is-visible { background-image: url('/wp-content/themes/futbolfest-landing/assets/images/tiro-a-blanco-con-pelota-2.jpeg'); }

.desafio-section {
	width: 100%;
	min-height: 200px;
	box-sizing: border-box;
	background-color: #152CA730;
	background-image: url('/wp-content/themes/futbolfest-landing/assets/images/fondoFutbol.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 1.25rem;
	border-radius: 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.desafio-section:hover {
	transform: translate3d(0, -3px, 0);
	box-shadow: 0 16px 34px rgba(13, 27, 75, 0.14);
}

.section-subheading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.6875rem;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #F5A200;
	margin-bottom: 0.3125rem;
}

.section-heading {
	font-family: Barlow Condensed;
	font-weight: 900;
	color: #0D1B4B;
	font-size: 2.625rem;
	line-height: 42px;
	letter-spacing: 0px;
}

.section-heading span {
	color: #152CA7;
}

.desafio-title {
	color: var(--color-text-light);
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 2.125rem;
	line-height: 34px;
	letter-spacing: 0px;
	text-align: center;
	margin-bottom: 0.625rem;
}

.desafio-title-main {
	color: #ffffff;
}

.desafio-title-accent {
	color: #F5A200;
}

.desafio-separador {
	display: block;
	width: 70px;
	height: 12px;
	color: #F5A200;
	border-radius: 0;
	flex-shrink: 0;
	margin-bottom: 0.625rem;
}

.desafio-description {
	width: 260px;
	color: #FFFFFFB2;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 19px;
	letter-spacing: 0px;
	text-align: center;
}

/* ============================================
   UBICACIÓN SECTION
   ============================================ */
.ubicacion-section {
	background-color: #F5F7FC;
	padding-top: 2.5rem;
	padding-bottom: 1.25rem;
}

.ubicacion-heading {
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 2.4375rem;
	line-height: 39px;
	letter-spacing: 0px;
	margin-bottom: 3rem;
}

.ubicacion-heading-main {
	color: #000000;
}

.ubicacion-heading-accent {
	color: #152CA7;
}

.ubicacion-container {
	width: 100%;
	min-height: 350px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	background-color: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
}

.ubicacion-map {
	width: 100%;
	height: 350px;
	overflow: hidden;
	background: #ffffff;
}

.ubicacion-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.ubicacion-steps {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	background-color: #FFFFFF;
}

.ubicacion-place,
.ubicacion-parking,
.ubicacion-map-action {
	display: flex;
	gap: 0.75rem;
	border-radius: 14px;
	transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.ubicacion-place:hover,
.ubicacion-parking:hover,
.ubicacion-map-action:hover {
	transform: translate3d(0, -3px, 0);
	background-color: rgba(245, 162, 0, 0.06);
	box-shadow: 0 12px 28px rgba(13, 27, 75, 0.08);
}

.ubicacion-place-icon {
	width: 32px;
	height: 32px;
	padding: 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(245, 162, 0, 0.15);
	border-radius: 14px;
	color: #B87800;
	opacity: 1;
	flex-shrink: 0;
	transition: transform 0.24s ease, background-color 0.24s ease;
}

.ubicacion-place:hover .ubicacion-place-icon {
	transform: scale3d(1.08, 1.08, 1);
	background-color: rgba(245, 162, 0, 0.22);
}

.ubicacion-place-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.ubicacion-place-content h4 {
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 800;
	font-size: 1rem;
	line-height: 20px;
	letter-spacing: 0px;
}

.ubicacion-parking-content h4 {
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 42px;
	letter-spacing: 0px;
}

.ubicacion-parking-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ubicacion-parking-title-icon {
	width: 26px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #1A3FA014;
	border-radius: 10px;
	color: #152CA7;
	flex-shrink: 0;
}

.ubicacion-parking-title-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

.ubicacion-place-content p {
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.8125rem;
	line-height: 20px;
	letter-spacing: 0px;
	color: #5A6A9A;
	margin: 0;
}

.ubicacion-parking-list {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	margin: 0;
	padding: 0.625rem 0.25rem;
	list-style: none;
	counter-reset: parking-item;
}

.ubicacion-parking-list li {
	display: flex;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.8125rem;
	line-height: 19px;
	align-items: flex-start;
	gap: 0.5rem;
	color: #5A6A9A;
	counter-increment: parking-item;
}

.ubicacion-parking-list li::before {
	content: counter(parking-item);
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #F5A200;
	border-radius: 50%;
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 800;
	font-size: 0.625rem;
	line-height: 15px;
	letter-spacing: 0px;
	flex-shrink: 0;
}

.ubicacion-map-action-content {
	width: 100%;
}

.btn.btn-secondary.ubicacion-map-button {
	width: 100%;
	min-height: 41px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 0.75rem;
	background-color: #152CA7;
	border-radius: 14px;
	color: #FFFFFF;
	font-family: 'Barlow';
	font-weight: 800;
	font-size: 0.9375rem;
	line-height: 21px;
	letter-spacing: 0px;
	text-align: center;
	opacity: 1;
}

.ubicacion-map-button-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: currentColor;
}

/* ============================================
   CONTACTO SECTION
   ============================================ */
.contacto-section {
	background-color: #F5F7FC;
	padding-bottom: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contactoh2 {
	font-family: var(--font-barlow);
	font-weight: 700;
	font-size: 0.6875rem;
	line-height: 17px;
	letter-spacing: 0px;
	color: #F5A200;
	margin-bottom: 0.625rem;
}

.contacto-heading {
	color: #FFFFFF;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 22px;
	letter-spacing: 0px;
	margin-bottom: 0.75rem;
}

.contacto-container {
	width: 100%;
	min-height: auto;
	display: flex;
	flex-direction: column;
	background-color: #152CA7;
	border-radius: 16px;
	padding: 1.25rem;
}

.contacto-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.contacto-item {
	padding: 0.75rem;
	min-height: 78px;
	background-color: #FFFFFF0F;
	border: 1px solid #FFFFFF17;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.contacto-item:hover {
	transform: none;
	background-color: #FFFFFF0F;
	border-color: #FFFFFF17;
}

.contacto-item h3 {
	font-family: var(--font-barlow);
	font-weight: 400;
	font-size: 0.6875rem;
	line-height: 17px;
	letter-spacing: 0px;
	color: #FFFFFF66;

}

.contacto-item-body {
	flex: 1;
	min-width: 0;
}

.contacto-item-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.contacto-item-main>div {
	min-width: 0;
}

.contacto-item-icon {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #F5A200;
	border-radius: 10px;
	color: #0D1B4B;
	flex-shrink: 0;
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.contacto-item:hover .contacto-item-icon {
	transform: none;
	box-shadow: none;
}

.contacto-item-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.contacto-item p {
	font-family: var(--font-barlow);
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 19px;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0;
}

.contacto-item p.contacto-phone-row {
	margin-bottom: 0.2rem;
}

.contacto-item p.contacto-phone-row:last-of-type {
	margin-bottom: 0;
}

.contacto-item p.contacto-email-row {
	margin-bottom: 0;
}

.contacto-item a.contacto-phone-link,
.contacto-item a.contacto-phone-link:visited,
.contacto-item a.contacto-phone-link:active,
.contacto-item a.contacto-phone-link:focus {
	color: #FFFFFF !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.contacto-item a.contacto-phone-link:hover {
	color: var(--color-secondary) !important;
	text-decoration: none !important;
}

.contacto-item p.subtitle {
	font-family: var(--font-barlow);
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 17px;
	letter-spacing: 0px;
	color: #FFFFFF59;
	margin: 0;
	width: 100%;
	max-width: 21rem;
}

.contacto-schedule {
	margin: 0.875rem 0 0;
	color: #FFFFFF8C;
	font-family: var(--font-barlow);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.25rem;
	text-align: center;
}

.contacto-schedule span {
	color: #F5A200;
	margin: 0 0.5rem;
}

/* ============================================
   RECLAMACION SECTION
   ============================================ */
.reclamacion-page-header {
	width: 100%;
	background-color: #ffffff;
	border-bottom: 1px solid rgba(26, 63, 160, 0.1);
}

.reclamacion-page-header-inner {
	width: min(100%, 1200px);
	margin: 0 auto;
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.reclamacion-page-brand {
	color: #152CA7;
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 1.75rem;
	line-height: 1;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: uppercase;
}

.reclamacion-page-title {
	margin: 0;
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 800;
	font-size: 0.95rem;
	line-height: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.reclamacion-section {
	background-color: #F5F7FC;
	padding-top: 3rem;
	padding-bottom: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reclamacion-container {
	position: relative;
	width: min(100%, 1200px);
	background-color: #ffffff;
	border: 1px solid rgba(26, 63, 160, 0.1);
	border-radius: 18px;
	box-shadow: 0 24px 54px rgba(13, 27, 75, 0.08);
	padding: 2rem;
}

.reclamacion-intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(26, 63, 160, 0.1);
	border-radius: 16px;
	background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FF 100%);
}

.reclamacion-eyebrow {
	margin: 0 0 0.35rem;
	color: #F5A200;
	font-family: 'Barlow';
	font-weight: 800;
	font-size: 0.75rem;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.reclamacion-heading {
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 3rem;
	line-height: 48px;
	letter-spacing: 0;
	margin: 0 0 0.5rem;
	color: #0D1B4B;
	text-transform: uppercase;
}

.reclamacion-description {
	max-width: 720px;
	margin: 0;
	color: #5A6A9A;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 21px;
	letter-spacing: 0;
}

.reclamacion-form {
	min-width: 0;
}

.reclamacion-form-section {
	padding: 1rem;
	border: 1px solid rgba(26, 63, 160, 0.1);
	border-radius: 14px;
	background-color: #FBFCFF;
}

.reclamacion-form-section + .reclamacion-form-section {
	margin-top: 1rem;
}

.reclamacion-form-title {
	margin: 0 0 0.75rem;
	color: #0D1B4B;
	font-family: 'Barlow Condensed';
	font-weight: 800;
	font-size: 1.25rem;
	line-height: 24px;
	letter-spacing: 0;
}

.reclamacion-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.reclamacion-field-full {
	grid-column: 1 / -1;
}

.registro-field textarea {
	width: 100%;
	min-height: 110px;
	box-sizing: border-box;
	resize: vertical;
	border: 1px solid rgba(26, 63, 160, 0.18);
	border-radius: 11px;
	background: #F7F9FF;
	padding: 0.75rem;
	color: #0D1B4B;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 20px;
	outline: none;
}

.registro-field textarea:focus {
	border-color: rgba(26, 63, 160, 0.45);
}

.reclamacion-submit {
	width: 220px;
	margin-top: 0;
	background-color: #152CA7;
	color: #ffffff;
}

.reclamacion-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
}

.reclamacion-note {
	margin: 0;
	color: #5A6A9A;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 17px;
	letter-spacing: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	font-size: 0.95rem;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn:disabled,
.btn[aria-disabled="true"] {
	cursor: not-allowed;
	opacity: 0.65;
	transform: none;
	box-shadow: none;
}

.btn-primary {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 0;
	width: 170px;
	height: 56px;
	background-color: var(--color-secondary);
	color: #0D1B4B;
	font-family: 'Barlow Condensed';
	font-weight: 900;
	font-size: 1.05rem;
	line-height: 1.5rem;
	letter-spacing: 1px;
	text-align: center;
	box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
	border-radius: 1rem;
	overflow: hidden;
	transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:focus-visible {
	transform: translate3d(0, -2px, 0);
	box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(245, 162, 0, 0.16);
}

.btn-outline {
	background-color: transparent;
	color: var(--color-secondary);
	border: 2px solid var(--color-secondary);
	padding: 0.75rem 1.5625rem;
	font-size: 1rem;
	font-weight: 600;
}

.btn-outline:hover {
	background-color: var(--color-secondary);
	color: var(--color-primary);
}

.btn-secondary {
	background-color: var(--color-primary);
	color: var(--color-text-light);
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.btn-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	padding: 0;
	font-family: var(--font-barlow);
	font-weight: 700;
	font-size: 0.6875rem;
	line-height: 14px;
	letter-spacing: 0px;
	color: #F5A200;
	cursor: default;
	transition: none;
	pointer-events: none;

}

.btn-call:hover {
	transform: none;
	box-shadow: none;
}

.btn-call-arrow {
	width: 15px;
	height: 10px;
	flex-shrink: 0;
	color: currentColor;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.futbolfest-footer {
	width: 100%;
	min-height: 594px;
	box-sizing: border-box;
	padding-top: 2.875rem;
	padding-bottom: 2.875rem;
	background-image: url('/wp-content/themes/futbolfest-landing/assets/images/Footer.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
}

.futbolfest-footer-logo {
	width: 144px;
	height: 125px;
	object-fit: contain;
	border-radius: 0;
	display: block;
	margin-bottom: 1rem;
}

.futbolfest-footer-description {
	max-width: 520px;
	margin: 0 0 2rem;
	color: #FFFFFF80;
	font-family: 'Barlow';
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 23px;
	letter-spacing: 0px;
	text-align: center;
}

.futbolfest-footer-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 100%;
	margin-bottom: 2rem;
}

.futbolfest-footer-social {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.10);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.futbolfest-footer-social:hover {
	background-color: rgba(255, 255, 255, 0.16);
	transform: translateY(-2px);
}

.futbolfest-footer-social svg {
	width: 18px;
	height: 18px;
	display: block;
}

.futbolfest-footer-book-button {
	display: inline-flex;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.futbolfest-footer-book-button:hover {
	transform: translateY(-2px);
}

.futbolfest-footer-book {
	width: 154px;
	height: 86px;
	object-fit: contain;
	border-radius: 0;
	display: block;
	margin-bottom: 2rem;
}

.futbolfest-footer-copy {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-family: 'Barlow';
	font-size: 0.875rem;
	line-height: 1.4;
}

/* ============================================
   GENERAL ELEMENTS
   ============================================ */
img {
	max-width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

section {
	width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN - Tablet horizontal / laptop pequeña (1024px)
   Punto de referencia: 1024 x 768
   ============================================ */

@media (max-width: 1024px) {
	.hero-section {
		--hero-bg-position: center right;
	}

	.hero-bg {
		background-size: cover;
		background-repeat: no-repeat;
	}

	.registro-visual img {
		object-fit: cover;
		object-position: 13% center;
	}

	.reclamacion-container {
		padding: 1.5rem;
	}

	.reclamacion-form-grid {
		grid-template-columns: 1fr;
	}

	.actividades-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

/* ============================================
   RESPONSIVE DESIGN - Tablet vertical (768px)
   Punto de referencia: 768 x 1024
   ============================================ */

@media (max-width: 768px) {
	.hero-section {
		--hero-bg-position: center;
		background-color: #152CA7;
		min-height: clamp(560px, 90svh, 780px);
	}

	.hero-bg {
		background-image: url('/wp-content/themes/futbolfest-landing/assets/images/HeroMobil.png');
		background-size: cover;
		background-repeat: no-repeat;
	}

	.hero-heading {
		font-size: 3.5rem;
		line-height: 3.5rem;
	}

	.hero-description {
		font-size: 1rem;
		line-height: 26px;
	}

	.hero-info-text {
		font-size: 0.8125rem;
		line-height: 18px;
	}

	.hero-info-icon {
		width: 18px;
		height: 18px;
	}

	.registro-section {
		background-image: url('/wp-content/themes/futbolfest-landing/assets/images/RegistrationFormMobil.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color: #ffffff;
	}

	.registro-section:has(.registro-confirmacion:not([hidden])) {
		background-image: url('/wp-content/themes/futbolfest-landing/assets/images/RegistrationFormMobil.png');
		background-color: #ffffff;
	}

	.registro-card {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.registro-visual {
		display: none;
	}

	.futbolfest-registro-qr-page .registro-qr-section {
		min-height: 100svh;
		padding: 2rem 1.5rem;
	}

	.registro-qr-card {
		width: 100%;
		max-width: 560px;
	}

	.futbolfest-footer {
		background-image: url('/wp-content/themes/futbolfest-landing/assets/images/FooterMobil.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color: #152CA7;
	}

	.actividades-cards {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   RESPONSIVE DESIGN - Mobile moderno (390px)
   Punto de referencia: 390 x 844
   ============================================ */

@media (max-width: 430px) {

	/* Fondos mobile */
	.actividades-section {
		background-image: url('/wp-content/themes/futbolfest-landing/assets/images/GamesSectionMobil.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color: #F5F7FC;
	}

	.contacto-section {
		background-color: #F5F7FC;
	}

	.hero-section,
	.registro-section,
	.actividades-section,
	.ubicacion-section,
	.contacto-section {
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}

	.hero-section {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.registro-section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.registro-qr-section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.futbolfest-registro-qr-page .registro-qr-section {
		min-height: 100svh;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.actividades-section {
		padding-top: 2.9375rem;
		padding-bottom: 1.9375rem;
	}

	.ubicacion-section {
		padding-top: 2.5rem;
		padding-bottom: 1.25rem;
	}

	.contacto-section {
		padding-top: 0;
		padding-bottom: 2.5rem;
	}

	.desafio-section {
		background-image: url('/wp-content/themes/futbolfest-landing/assets/images/FondoDesafioMobil.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color: #152CA7;
	}

	.futbolfest-footer {
		padding: 2.9375rem 1.5rem;
	}

	.futbolfest-footer-description {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 1rem;
		line-height: 26px;
		letter-spacing: 0;
		text-align: center;
	}

	.futbolfest-footer-copy {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.75rem;
		line-height: 16px;
		letter-spacing: 0;
		text-align: center;
	}

	.hero-container {
		padding-top: 0;
		padding-bottom: 0;
	}

	/* Botones generales */
	.btn-primary,
	.btn-outline,
	.btn-secondary,
	.btn-call {
		width: 100%;
		text-align: center;
	}

	.btn-primary {
		width: 230px;
		height: 56px;
		padding: 1rem 2rem;
		gap: 0.5rem;
		border-radius: 16px;
		opacity: 1;
		font-family: 'Barlow Condensed';
		font-weight: 900;
		font-size: 1.0625rem;
		line-height: 24px;
		letter-spacing: 1px;
	}

	/* Hero */
	.evento-badge span {
		font-family: 'Barlow';
		font-weight: 600;
		font-size: 0.75rem;
		line-height: 16px;
		letter-spacing: 0.6px;
		text-transform: uppercase;
	}

	.hero-logo {
		width: 144px;
		height: 129px;
		margin-bottom: 0.625rem;
	}

	.hero-heading {
		font-family: 'Barlow Condensed';
		font-weight: 900;
		font-size: 2.625rem;
		line-height: 42px;
		letter-spacing: 0;
		margin-bottom: 1rem;
	}

	.hero-description {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.9375rem;
		line-height: 24px;
		letter-spacing: 0;
		margin-bottom: 1rem;
	}

	.hero-info-text {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.75rem;
		line-height: 16px;
		letter-spacing: 0;
	}

	.hero-schedule {
		gap: 0.1875rem;
		line-height: 15px;
	}

	.hero-badges {
		display: flex;
		gap: 0.5rem;
		flex-wrap: wrap;
	}

	.hero-info-icon {
		width: 14px;
		height: 14px;
		flex-shrink: 0;
		object-fit: contain;
	}

	.hero-badge {
		font-family: 'Barlow';
		font-weight: 600;
		font-size: 0.75rem;
		line-height: 16px;
		letter-spacing: 0;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-info {
		flex-direction: column;
		margin-bottom: 1rem;
		gap: 0.9rem;
	}

	/* Registro */
	.registro-heading {
		font-family: 'Barlow Condensed';
		font-weight: 900;
		font-size: 1.8125rem;
		line-height: 29px;
		letter-spacing: 0;
	}

	.registro-description {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.8125rem;
		line-height: 20px;
		letter-spacing: 0;
	}

	.registro-form-grid {
		grid-template-columns: 1fr;
	}

	.registro-field > span {
		font-family: 'Barlow';
		font-weight: 700;
		font-size: 0.75rem;
		line-height: 12px;
		letter-spacing: 0;
	}

	.registro-field input,
	.registro-field select {
		width: 100%;
		height: 40px;
		padding-right: 0.75rem;
		padding-left: 0.75rem;
		border-radius: 11px;
		border-width: 1px;
		opacity: 1;
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.9375rem;
		line-height: 100%;
		letter-spacing: 0;
	}

	.registro-field select {
		padding-right: 2.5rem;
		background-position: right 12px center;
	}

	.registro-kids-question {
		align-items: stretch;
		flex-direction: column;
		gap: 0.5625rem;
	}

	.registro-choice-group {
		width: 100%;
		min-width: 0;
		border-radius: 8px;
	}

	.registro-choice input {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		opacity: 0;
	}

	.registro-choice span {
		height: 32px;
		border-radius: 7px;
		font-family: 'Barlow';
		font-weight: 700;
		font-size: 0.75rem;
		line-height: 14px;
		letter-spacing: 0;
	}

	.registro-choice input:checked + span {
		font-weight: 700;
	}

	.registro-kids-panel {
		gap: 0.75rem;
		padding: 0.75rem;
		border-radius: 12px;
	}

	.registro-kids-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.625rem;
	}

	.registro-kids-header-main {
		align-items: flex-start;
		gap: 0.5rem;
	}

	.registro-kids-header-icon {
		width: 24px;
		height: 24px;
		border-radius: 8px;
	}

	.registro-kids-header-main span:not(.registro-kids-header-icon) {
		font-size: 0.75rem;
		line-height: 14px;
	}

	.registro-kids-header-main p {
		max-width: 190px;
		font-size: 0.625rem;
		line-height: 13px;
	}

	.registro-kids-add {
		width: 100%;
		min-height: 32px;
		border-radius: 8px;
		justify-content: center;
	}

	.registro-kids-list {
		max-height: 188px;
	}

	.registro-kid-row {
		gap: 0.625rem;
		padding: 0.75rem;
		border-radius: 10px;
	}

	.registro-kid-row-header > span {
		font-size: 0.75rem;
		line-height: 14px;
	}

	.registro-kids-remove {
		font-size: 0.625rem;
		line-height: 12px;
	}

	.registro-kid-row-fields {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.registro-kid-row-fields .registro-field input {
		height: 38px;
	}

	.btn.btn-primary.registro-submit {
		width: 100%;
		height: 47px;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		gap: 0.5rem;
		border-radius: 14px;
		opacity: 1;
		font-family: 'Barlow Condensed';
		font-weight: 800;
		font-size: 1rem;
		line-height: 23px;
		letter-spacing: 1px;
	}

	.registro-card {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.registro-qr-card {
		width: 100%;
		max-width: 342px;
	}

	.registro-content {
		padding: 1.5rem;
	}

	.registro-visual {
		display: none;
	}

	.registro-confirmacion {
		width: 100%;
		min-width: 0;
		max-width: 342px;
		min-height: auto;
		border-radius: 20px;
		box-shadow: 0 0 0 100vmax #00000080, 0 32px 64px 4px rgba(13, 27, 75, 0.18);
	}

	.registro-confirmacion-hero {
		min-height: 150px;
		background-image: url('/wp-content/themes/futbolfest-landing/assets/images/confirmacion.jpeg');
		background-size: cover;
		background-position: center;
	}

	.registro-confirmacion-body {
		padding: 1.25rem;
	}

	.registro-confirmacion-separador {
		width: 48px;
		height: 14px;
		margin-bottom: 0.625rem;
	}

	.registro-confirmacion-label {
		margin-bottom: 0.5rem;
		font-size: 1.4375rem;
		line-height: 24px;
	}

	.registro-confirmacion-mensaje {
		margin-bottom: 0.5rem;
		font-size: 0.9375rem;
		line-height: 21px;
	}

	.registro-confirmacion-title {
		max-width: 260px;
		margin-bottom: 1rem;
		font-size: 0.8125rem;
		line-height: 20px;
	}

	.registro-confirmacion-title-strong {
		font-size: 0.8125rem;
		line-height: 20px;
	}

	.ubicacion-parking-list li::before {
		width: 16px;
		height: 16px;
	}

	.registro-confirmacion-location {
		height: auto;
		min-height: 72px;
		margin-bottom: 1.125rem;
		padding: 0.75rem;
		justify-content: flex-start;
		box-sizing: border-box;
	}

	.registro-confirmacion-location-content {
		min-width: 0;
	}

	.registro-confirmacion-location-place,
	.registro-confirmacion-location-date {
		overflow-wrap: anywhere;
	}

	.btn.btn-primary.registro-confirmacion-reset {
		width: 100%;
		height: 47px;
		font-size: 0.9375rem;
		line-height: 23px;
	}


	/* Actividades */
	.section-heading {
		display: flex;
		align-items: baseline;
		justify-content: flex-start;
		gap: 0.375rem;
		white-space: nowrap;
		font-family: 'Barlow Condensed';
		font-weight: 900;
		font-size: 1.9375rem;
		line-height: 31px;
		letter-spacing: 0;
	}

	.actividades-description {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.875rem;
		line-height: 20px;
		letter-spacing: 0;
	}

	.section-subheading {
		font-family: 'Barlow';
		font-weight: 700;
		font-size: 0.6875rem;
		line-height: 16px;
		letter-spacing: 2px;
		text-align: center;
		text-transform: uppercase;
	}

	.ubicacion-heading,
	.contacto-heading {
		font-family: 'Barlow Condensed', sans-serif;
		font-weight: 900;
		font-size: 1.125rem;
		line-height: 20px;
		letter-spacing: 0;
	}

	.actividades-grid {
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.actividades-cards {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.desafio-title {
		font-family: 'Barlow Condensed';
		font-weight: 900;
		font-size: 1.5rem;
		line-height: 24px;
		letter-spacing: 0;
		text-align: center;
	}

	.desafio-separador {
		color: #FFFFFF;
	}

	.desafio-description {
		width: 175px;
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.8125rem;
		line-height: 19px;
		letter-spacing: 0;
		text-align: center;
	}

	/* Ubicación y contacto */
	.contactoh2 {
		font-family: var(--font-barlow);
		font-weight: 700;
		font-size: 0.6875rem;
		line-height: 17px;
		letter-spacing: 2px;
		text-transform: uppercase;
	}

	.contacto-container {
		width: 100%;
		min-height: auto;
		box-sizing: border-box;
		border-radius: 16px;
		opacity: 1;
	}

	.contacto-grid {
		width: 100%;
		min-width: 0;
	}

	.reclamacion-section {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.reclamacion-page-header-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.reclamacion-container {
		padding: 1rem;
		border-radius: 16px;
	}

	.reclamacion-intro {
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}

	.reclamacion-heading {
		font-size: 1.6875rem;
		line-height: 27px;
	}

	.reclamacion-description {
		max-width: none;
		font-size: 0.8125rem;
		line-height: 19px;
	}

	.reclamacion-form-grid {
		grid-template-columns: 1fr;
	}

	.reclamacion-form-section {
		padding: 0.875rem;
	}

	.reclamacion-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.reclamacion-submit {
		width: 100%;
	}

	.ubicacion-heading {
		font-family: 'Barlow Condensed';
		font-weight: 900;
		font-size: 1.6875rem;
		line-height: 27px;
		letter-spacing: 0;
		margin-bottom: 1.5rem;
	}

	.contacto-item h3 {
		font-family: var(--font-barlow);
		font-weight: 400;
		font-size: 0.6875rem;
		line-height: 17px;
		letter-spacing: 0;
	}

	.contacto-item {
		width: 100%;
		min-height: 96px;
		height: auto;
		box-sizing: border-box;
		min-width: 0;
		gap: 0.75rem;
		border-radius: 14px;
		border-width: 1px;
		padding: 0.75rem;
		opacity: 1;
	}

	.contacto-item-main {
		min-width: 0;
	}

	.contacto-item-main>div {
		min-width: 0;
	}

	.contacto-item p {
		font-family: var(--font-barlow);
		font-weight: 700;
		font-size: 0.8125rem;
		line-height: 19px;
		letter-spacing: 0;
		overflow-wrap: anywhere;
	}

	.contacto-item p.subtitle {
		font-family: var(--font-barlow);
		font-weight: 400;
		font-size: 0.65rem;
		line-height: 17px;
		letter-spacing: 0;
		max-width: 100%;
	}

	.btn-call {
		width: auto;
		flex-shrink: 0;
		font-family: var(--font-barlow);
		font-weight: 700;
		font-size: 0.65rem;
		line-height: 18px;
		letter-spacing: 0;
	}

	.ubicacion-container,
	.contacto-grid {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		grid-template-columns: 1fr;
	}

	.contacto-schedule {
		font-size: 0.75rem;
		line-height: 1.125rem;
	}

	.contacto-schedule span {
		display: none;
	}

	.ubicacion-map {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		min-height: 192px;
	}

	.ubicacion-steps {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.ubicacion-place {
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 0.625rem;
	}

	.ubicacion-place-content h4 {
		font-family: 'Barlow Condensed';
		font-weight: 800;
		font-size: 1rem;
		line-height: 20px;
		letter-spacing: 0;
	}

	.ubicacion-place-content p {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.8125rem;
		line-height: 20px;
		letter-spacing: 0;
	}

	.ubicacion-parking,
	.ubicacion-map-action {
		flex-direction: column;
	}

	.ubicacion-parking-content h4 {
		font-family: 'Barlow';
		font-weight: 700;
		font-size: 0.75rem;
		line-height: 42px;
		letter-spacing: 0;
	}

	.ubicacion-parking-list li {
		font-family: 'Barlow';
		font-weight: 400;
		font-size: 0.8125rem;
		line-height: 19px;
		letter-spacing: 0;
	}

	.btn.btn-secondary.ubicacion-map-button {
		width: 100%;
		max-width: 295px;
		height: 41px;
		padding: 0.625rem 0.75rem;
		gap: 0.5rem;
		border-radius: 14px;
		opacity: 1;
		font-family: 'Barlow Condensed';
		font-weight: 800;
		font-size: 0.9375rem;
		line-height: 21px;
		letter-spacing: 0;
		text-align: center;
	}
}

