	/* --------------------------------------------------
		 SISTEMA DE DISEÑO & VARIABLES (LIGHT PREMIUM V3)
		 -------------------------------------------------- */
	:root {
		/* Colores Oficiales */
		--active-black: #000000;
		--pure-white: #FFFFFF;
		--light-bg-primary: #FAFAFA;
		--light-bg-secondary: #F5F5F5;

		--strong-red: #DA291C; /* Pantone 485 C (Rojo Marca Primario) */
		--deep-red: #9E1B32;   /* Pantone 7427 C (Rojo Marca Apoyo) */

		--gris-border: rgba(0, 0, 0, 0.08);
		--gris-text-muted: #666666;
		--text-dark: #1A1A1A;
		--text-light: #FAFAFA;

		/* Tipografía */
		--font-primary: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
		--font-secondary: 'Adieu', 'Outfit', sans-serif;

		/* UX Tokens */
		--transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
		--max-width: 1200px;
	}

	/* Reset Básico */
	* {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	/* Regla Global: Puntas completamente rectas */
	*, *::before, *::after {
		border-radius: 0 !important;
	}

	html {
		scroll-behavior: smooth;
		font-size: 16px;
		background-color: var(--light-bg-primary);
		color: var(--text-dark);
		font-family: var(--font-primary);
		-webkit-font-smoothing: antialiased;
	}

	body {
		overflow-x: hidden;
	}

	img, video {
		max-width: 100%;
		height: auto;
		display: block;
	}

	/* Foco Accesible */
	*:focus-visible {
		outline: 3px solid var(--strong-red);
		outline-offset: 3px;
	}

	.container {
		width: 100%;
		max-width: var(--max-width);
		margin: 0 auto;
		padding: 0 2rem;
	}

	/* Regla global de anclas para corregir superposición del header fijo */
	section[id] {
		scroll-margin-top: 110px;
	}

	/* Botones Premium Rectos */
	.btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-family: var(--font-primary);
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1.5px;
		text-decoration: none;
		padding: 1.1rem 2.5rem;
		min-height: 52px;
		cursor: pointer;
		transition: var(--transition-smooth);
		border: none;
		font-size: 0.85rem;
		width: fit-content;
	}

	.btn-primary {
		background-color: var(--strong-red);
		color: var(--pure-white);
	}

	.btn-primary:hover {
		background-color: #BD2014;
		transform: translateY(-2px);
	}

	.btn-primary:active {
		transform: translateY(0);
	}

	.btn-secondary {
		background: transparent;
		color: var(--text-dark);
		border: 1px solid var(--text-dark);
	}

	.btn-secondary:hover {
		background: var(--text-dark);
		color: var(--pure-white);
		transform: translateY(-2px);
	}

	.btn-whatsapp {
		background-color: #25D366;
		color: var(--pure-white);
		font-size: 0.85rem;
	}

	.btn-whatsapp:hover {
		background-color: #1ebe57;
		transform: translateY(-2px);
	}

	/* Títulos Editoriales con Acentuación Punctual */
	.section-title {
		font-family: var(--font-secondary);
		font-size: 2.5rem;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: -0.5px;
		line-height: 1.15;
		color: var(--text-dark);
	}

	.section-title.center {
		text-align: center;
	}

	.section-eyebrow {
		font-family: var(--font-secondary);
		color: var(--strong-red);
		font-weight: 700;
		font-size: 0.85rem;
		text-transform: uppercase;
		letter-spacing: 2.5px;
		margin-bottom: 0.75rem;
		display: block;
	}

	/* --------------------------------------------------
		 1. HEADER / NAVEGACIÓN (LIGHT/TRANSPARENT SCROLL)
		 -------------------------------------------------- */
	.header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		background-color: rgba(255, 255, 255, 0.85);
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		border-bottom: 1px solid var(--gris-border);
		transition: var(--transition-smooth);
	}

	.header.scrolled {
		background-color: var(--pure-white);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	}

	.header-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 90px;
	}

	.logo-link {
		display: flex;
		align-items: center;
		width: 140px;
	}

	.logo-img {
		width: 140px;
		height: auto;
	}

	.nav-bar {
		display: flex;
		align-items: center;
	}

	.nav-menu {
		display: flex;
		list-style: none;
		gap: 2rem;
		align-items: center;
	}

	.nav-link {
		color: var(--text-dark);
		text-decoration: none;
		font-size: 0.8rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1px;
		transition: var(--transition-smooth);
		padding: 0.5rem 0;
		position: relative;
	}

	.nav-link::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background-color: var(--strong-red);
		transition: var(--transition-smooth);
	}

	.nav-link:hover {
		color: var(--strong-red);
	}

	.nav-link:hover::after {
		width: 100%;
	}

	.nav-cta {
		margin-left: 1.5rem;
	}

	/* Hamburguesa Responsiva */
	.menu-toggle {
		display: none;
		background: none;
		border: none;
		cursor: pointer;
		width: 40px;
		height: 40px;
		position: relative;
		z-index: 1100;
	}

	.menu-toggle span {
		display: block;
		width: 24px;
		height: 2px;
		background-color: var(--text-dark);
		margin: 5px auto;
		transition: var(--transition-smooth);
	}

	.menu-toggle.open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle.open span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	/* --------------------------------------------------
		 2. HERO PRINCIPAL CON VIDEO + FORMULARIO
		 -------------------------------------------------- */
	.hero {
		position: relative;
		min-height: 100vh;
		display: flex;
		align-items: center;
		overflow: hidden;
		padding-top: 100px;
		padding-bottom: 80px;
		background-color: var(--light-bg-primary);
	}

	.hero-video-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 1;
	}

	.hero-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
		z-index: 2;
	}

	.hero-grid {
		position: relative;
		z-index: 3;
		display: grid;
		grid-template-columns: 1.1fr 0.9fr;
		gap: 4rem;
		align-items: center;
		width: 100%;
	}

	.hero-content {
		display: flex;
		flex-direction: column;
	}

	.hero-eyebrow {
		font-family: var(--font-secondary);
		font-weight: 700;
		font-size: 0.9rem;
		letter-spacing: 3px;
		color: var(--strong-red);
		text-transform: uppercase;
		margin-bottom: 1rem;
	}

	.hero-title {
		font-family: var(--font-secondary);
		font-size: 3.5rem;
		font-weight: 900;
		line-height: 1.1;
		text-transform: uppercase;
		color: var(--text-dark);
		margin-bottom: 1.5rem;
	}

	.hero-sub {
		font-size: 1.1rem;
		line-height: 1.6;
		color: #333333;
		margin-bottom: 2rem;
		max-width: 550px;
	}

	.hero-badge {
		display: flex;
		flex-direction: column;
		border-left: 3px solid var(--strong-red);
		padding-left: 1.5rem;
		margin-bottom: 2rem;
	}

	.hero-badge-title {
		font-family: var(--font-secondary);
		font-size: 1.35rem;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--text-dark);
	}

	.hero-badge-desc {
		font-size: 0.95rem;
		color: var(--gris-text-muted);
		margin-top: 0.25rem;
	}

	/* Estilo del Formulario Above The Fold */
	.hero-form-wrapper {
		background-color: var(--pure-white);
		border: 1px solid var(--gris-border);
		padding: 3rem 2.5rem;
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
		width: 100%;
	}

	.form-header {
		margin-bottom: 2rem;
		text-align: center;
	}

	.form-header h3 {
		font-family: var(--font-secondary);
		font-size: 1.5rem;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--text-dark);
		margin-bottom: 0.5rem;
	}

	.form-header p {
		font-size: 0.85rem;
		color: var(--gris-text-muted);
	}

	.form-group {
		margin-bottom: 1.5rem;
		display: flex;
		flex-direction: column;
	}

	.form-label {
		font-size: 0.75rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-bottom: 0.5rem;
		color: var(--text-dark);
	}

	.form-control {
		width: 100%;
		height: 48px;
		border: 1.5px solid #D5D5D5;
		padding: 0 1rem;
		font-family: var(--font-primary);
		font-size: 0.95rem;
		background-color: var(--pure-white);
		color: var(--text-dark);
		transition: var(--transition-smooth);
	}

	.form-control:focus {
		outline: none;
		border-color: var(--strong-red);
		background-color: var(--pure-white);
	}

	select.form-control {
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 1rem center;
		background-size: 1.1rem;
		padding-right: 2.5rem;
		cursor: pointer;
	}

	.form-error {
		display: none;
		color: var(--strong-red);
		font-size: 0.75rem;
		font-weight: 600;
		margin-top: 0.35rem;
		align-items: center;
		gap: 0.25rem;
	}

	/* Estados de validación accesibles */
	.form-control:user-invalid {
		border-color: var(--strong-red);
	}

	.form-control:user-invalid + .form-error {
		display: flex;
	}

	.form-control:user-valid {
		border-color: #188038;
	}

	.checkbox-group {
		display: flex;
		align-items: flex-start;
		gap: 0.75rem;
		margin-bottom: 2rem;
	}

	.checkbox-input {
		width: 18px;
		height: 18px;
		margin-top: 2px;
		accent-color: var(--strong-red);
		cursor: pointer;
	}

	.checkbox-label {
		font-size: 0.75rem;
		line-height: 1.5;
		color: var(--gris-text-muted);
		user-select: none;
		cursor: pointer;
	}

	.checkbox-label a {
		color: var(--text-dark);
		text-decoration: underline;
		font-weight: 600;
	}

	.form-submit-btn {
		width: 100%;
		height: 52px;
		font-size: 0.9rem;
	}

	.hero-form-whatsapp {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		margin-top: 1.5rem;
		text-decoration: none;
		color: var(--text-dark);
		font-size: 0.85rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
		transition: var(--transition-smooth);
	}

	.hero-form-whatsapp:hover {
		color: var(--strong-red);
	}

	/* Estado de Éxito en Formulario */
	.form-success-wrapper {
		display: none;
		text-align: center;
		padding: 3rem 1.5rem;
	}

	.form-success-icon {
		width: 60px;
		height: 60px;
		background-color: rgba(24, 128, 56, 0.1);
		color: #188038;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 1.5rem auto;
	}

	.form-success-title {
		font-family: var(--font-secondary);
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--text-dark);
		margin-bottom: 0.75rem;
	}

	.form-success-text {
		color: var(--gris-text-muted);
		font-size: 0.95rem;
		line-height: 1.55;
	}

	/* --------------------------------------------------
		 3. BLOQUE EDITORIAL “BENEFICIOS DE UNA MEMBRESÍA” (V3 FUSIONADO AL FONDO)
		 -------------------------------------------------- */
	.beneficios {
		position: relative;
		overflow: hidden;
		background-color: var(--pure-white);
		padding: 140px 0;
		border-bottom: 1px solid var(--gris-border);
		width: 100%;
	}

	.beneficios::before {
		content: "";
		position: absolute;
		inset: 0;
		background-image: url("assets/sw-membresias-beneficios.webp");
		background-repeat: no-repeat;
		background-size: auto 105%;
		background-position: left center;
		filter: grayscale(1) saturate(0) contrast(0.95) brightness(1.08);
		opacity: 0.28;
		z-index: 0;
		mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 82%);
		-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 82%);
	}

	.beneficios-content {
		position: relative;
		z-index: 1;
		max-width: 580px;
		margin-left: auto;
		display: flex;
		flex-direction: column;
	}

	.beneficios-desc {
		font-size: 1.1rem;
		line-height: 1.7;
		color: #333333;
		margin-top: 1.5rem;
		margin-bottom: 3.5rem;
	}

	.benefits-list {
		display: flex;
		flex-direction: column;
		gap: 2.5rem;
	}

	.benefit-item {
		display: flex;
		flex-direction: column;
		border-top: 1px solid var(--gris-border);
		padding-top: 1.5rem;
	}

	.benefit-num {
		font-family: var(--font-secondary);
		font-size: 1rem;
		font-weight: 700;
		color: var(--strong-red);
		margin-bottom: 0.5rem;
	}

	.benefit-title {
		font-family: var(--font-secondary);
		font-size: 1.35rem;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--text-dark);
		margin-bottom: 0.5rem;
	}

	.benefit-desc {
		font-size: 0.95rem;
		line-height: 1.6;
		color: var(--gris-text-muted);
	}

	.beneficios-image-fallback-mobile {
		display: none;
	}

	/* --------------------------------------------------
		 4. BLOQUE “ACTIVIDADES Y ESPACIOS” (V3 FUSIONADO AL FONDO INVERTIDO)
		 -------------------------------------------------- */
	.actividades {
		position: relative;
		overflow: hidden;
		background-color: var(--light-bg-secondary);
		padding: 140px 0;
		width: 100%;
	}

	.actividades::before {
		content: "";
		position: absolute;
		inset: 0;
		background-image: url("assets/sw-membresias-actividades.webp");
		background-repeat: no-repeat;
		background-size: auto 110%;
		background-position: right bottom;
		filter: grayscale(1) saturate(0) contrast(0.95) brightness(1.10);
		opacity: 0.24;
		z-index: 0;
		mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 35%, rgba(0,0,0,0.15) 62%, rgba(0,0,0,0) 82%);
		-webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 35%, rgba(0,0,0,0.15) 62%, rgba(0,0,0,0) 82%);
	}

	.actividades-content {
		position: relative;
		z-index: 1;
		max-width: 580px;
		margin-right: auto;
		display: flex;
		flex-direction: column;
	}

	.actividades-desc {
		font-size: 1.1rem;
		line-height: 1.7;
		color: #333333;
		margin-top: 1.5rem;
		margin-bottom: 3.5rem;
	}

	.actividades-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 3rem;
		row-gap: 1.25rem;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
		padding-top: 2rem;
	}

	.actividad-item {
		font-size: 0.95rem;
		font-weight: 600;
		color: var(--text-dark);
		padding: 0.5rem 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.actividad-item::after {
		content: '';
		width: 1rem;
		height: 1rem;
		flex: 0 0 1rem;
		margin-left: 1rem;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DA291C' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'%2F%3E%3Cpath d='M8 12.2l2.6 2.6L16.5 9'%2F%3E%3C%2Fsvg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		opacity: 0.6;
		pointer-events: none;
	}

	.actividades-image-fallback-mobile {
		display: none;
	}

	/* --------------------------------------------------
		 5. BLOQUE “49 CLUBES / EXPERIENCIA SPORTS WORLD” (GRILA EDITORIAL)
		 -------------------------------------------------- */
	.experiencia {
		background-color: var(--pure-white);
		padding: 120px 0;
		border-bottom: 1px solid var(--gris-border);
	}

	.experiencia-intro {
		text-align: center;
		max-width: 750px;
		margin: 0 auto 5rem auto;
	}

	.experiencia-intro p {
		font-size: 1.1rem;
		line-height: 1.7;
		color: var(--gris-text-muted);
		margin-top: 1.5rem;
	}

	.experiencia-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		border-top: 1px solid var(--text-dark);
		border-bottom: 1px solid var(--text-dark);
	}

	.exp-card {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		border-right: 1px solid var(--gris-border);
		padding: 4rem 2.5rem;
		background: transparent;
	}

	.exp-card:last-child {
		border-right: none;
	}

	.exp-num {
		font-family: var(--font-secondary);
		font-size: 3.5rem;
		font-weight: 900;
		color: var(--text-dark);
		line-height: 1;
		margin-bottom: 1.25rem;
		letter-spacing: -1px;
	}

	.exp-card.accent .exp-num {
		color: var(--strong-red);
	}

	.exp-title {
		font-family: var(--font-secondary);
		font-size: 1.15rem;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--text-dark);
		margin-bottom: 0.75rem;
	}

	.exp-desc {
		font-size: 0.85rem;
		line-height: 1.55;
		color: var(--gris-text-muted);
	}

	/* --------------------------------------------------
		 6. SECCIÓN “APP, CLASES Y AMENIDADES” (BREVE EDITORIAL)
		 -------------------------------------------------- */
	.experiencia-completa {
		background-color: var(--light-bg-primary);
		padding: 100px 0;
		border-bottom: 1px solid var(--gris-border);
	}

	.exp-comp-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
	}

	.exp-comp-text h2 {
		margin-bottom: 1.5rem;
	}

	.exp-comp-text p {
		font-size: 1.1rem;
		line-height: 1.7;
		color: var(--gris-text-muted);
		margin-bottom: 2rem;
	}

	.exp-comp-bullets {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
	}

	.exp-comp-bullet-item {
		display: flex;
		align-items: flex-start;
		gap: 0.75rem;
		font-size: 1rem;
		font-weight: 600;
		color: var(--text-dark);
	}

	.exp-comp-bullet-item svg {
		color: var(--strong-red);
		flex-shrink: 0;
		margin-top: 3px;
	}

	/* --------------------------------------------------
		 7. BLOQUE “MEMBRESÍA SPORTS WORLD” (V3 FUSIONADO SIN BORDE)
		 -------------------------------------------------- */
	.membresia {
		position: relative;
		overflow: hidden;
		padding: 120px 0;
		width: 100%;
		background-color: var(--light-bg-secondary);
	}

	.membresia::before {
		content: "";
		position: absolute;
		inset: 0;
		background-image: url('assets/sw-membresias-hero-fallback.webp');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		filter: grayscale(1) saturate(0) contrast(0.95) brightness(1.05);
		opacity: 0.35;
		z-index: 0;
	}

	.membresia-overlay-layer {
		position: absolute;
		inset: 0;
		background: rgba(255, 255, 255, 0.25);
		z-index: 1;
	}

	.membresia-image-fallback-mobile {
		display: none;
	}

	.membresia-container {
		position: relative;
		z-index: 2;
	}

	.membresia-content-card {
		background: rgba(255, 255, 255, 0.72);
		border: none;
		box-shadow: none;
		backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
		padding: 4.5rem 3.5rem;
		max-width: 580px;
		display: flex;
		flex-direction: column;
	}

	.membresia-content-card p {
		font-size: 1.1rem;
		line-height: 1.7;
		color: #333333;
		margin-top: 1.5rem;
		margin-bottom: 2.5rem;
	}

	.membresia-bullets {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		margin-bottom: 3.5rem;
	}

	.membresia-bullet-item {
		display: flex;
		align-items: flex-start;
		gap: 1rem;
		font-size: 1rem;
		font-weight: 600;
		color: var(--text-dark);
	}

	.membresia-bullet-item svg {
		color: var(--strong-red);
		flex-shrink: 0;
		margin-top: 3px;
	}

	/* --------------------------------------------------
		 8. BLOQUE FAQ / AEO (ACCORDION)
		 -------------------------------------------------- */
	.faq {
		background-color: var(--pure-white);
		padding: 120px 0;
		border-bottom: 1px solid var(--gris-border);
	}

	.faq-container {
		max-width: 800px;
		margin: 0 auto;
	}

	.faq-list {
		margin-top: 4rem;
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.faq-item {
		border: 1px solid var(--gris-border);
		background-color: var(--light-bg-primary);
		transition: var(--transition-smooth);
	}

	.faq-item[open] {
		background-color: var(--pure-white);
		border-color: var(--text-dark);
	}

	.faq-summary {
		padding: 1.5rem 2rem;
		font-weight: 700;
		font-size: 1.05rem;
		cursor: pointer;
		list-style: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
		color: var(--text-dark);
		user-select: none;
	}

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

	.faq-summary-icon {
		font-size: 1.3rem;
		font-weight: 300;
		color: var(--strong-red);
		transition: transform 0.3s ease;
	}

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

	.faq-content {
		padding: 0 2rem 2rem 2rem;
		font-size: 0.95rem;
		line-height: 1.65;
		color: var(--gris-text-muted);
		border-top: 1px solid var(--gris-border);
		padding-top: 1.25rem;
	}

	/* --------------------------------------------------
		 9. CIERRE DE CONVERSIÓN
		 -------------------------------------------------- */
	.cierre {
		position: relative;
		padding: 140px 0;
		background-color: var(--text-dark);
		color: var(--text-light);
		overflow: hidden;
	}

	.cierre-bg {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 1;
		opacity: 0.3;
	}

	.cierre-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.9) 100%);
		z-index: 2;
	}

	.cierre-container {
		position: relative;
		z-index: 3;
		text-align: center;
		max-width: 700px;
		margin: 0 auto;
	}

	.cierre-title {
		font-family: var(--font-secondary);
		font-size: 2.8rem;
		font-weight: 900;
		text-transform: uppercase;
		color: var(--pure-white);
		line-height: 1.15;
		margin-bottom: 1.5rem;
	}

	.cierre-desc {
		font-size: 1.1rem;
		line-height: 1.65;
		color: #CCCCCC;
		margin-bottom: 3.5rem;
	}

	.cierre-actions {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		flex-wrap: wrap;
	}

	.cierre-whatsapp {
		color: var(--pure-white);
		text-decoration: none;
		font-size: 0.85rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1.5px;
		transition: var(--transition-smooth);
		border-bottom: 2px solid var(--pure-white);
		padding-bottom: 0.25rem;
	}

	.cierre-whatsapp:hover {
		color: var(--strong-red);
		border-bottom-color: var(--strong-red);
	}

	/* --------------------------------------------------
		 10. FOOTER / LEGAL
		 -------------------------------------------------- */
	.footer {
		background-color: var(--active-black);
		color: #999999;
		font-size: 0.8rem;
		padding: 80px 0 40px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.footer-grid {
		display: grid;
		grid-template-columns: 1.2fr 1fr 1fr;
		gap: 4rem;
		margin-bottom: 4rem;
	}

	.footer-brand p {
		margin-top: 1.5rem;
		line-height: 1.6;
	}

	.footer-title {
		color: var(--pure-white);
		font-family: var(--font-primary);
		font-weight: 700;
		text-transform: uppercase;
		font-size: 0.85rem;
		letter-spacing: 1.5px;
		margin-bottom: 1.5rem;
	}

	.footer-links-list {
		list-style: none;
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.footer-link {
		color: #999999;
		text-decoration: none;
		transition: var(--transition-smooth);
	}

	.footer-link:hover {
		color: var(--pure-white);
	}

	.footer-contact p {
		margin-bottom: 0.75rem;
		line-height: 1.5;
	}

	.footer-contact strong {
		color: var(--pure-white);
	}

	.footer-legal {
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		padding-top: 2rem;
		margin-bottom: 2rem;
		line-height: 1.6;
		text-align: justify;
		font-size: 0.75rem;
	}

	.footer-legal p {
		margin-bottom: 1rem;
	}

	.footer-bottom {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		padding-top: 1.5rem;
		font-size: 0.7rem;
	}

	.footer-bottom-links {
		display: flex;
		gap: 1.5rem;
	}

	/* Float WhatsApp */
	.whatsapp-float {
		position: fixed;
		bottom: 2rem;
		right: 2rem;
		z-index: 999;
		width: 56px;
		height: 56px;
		background-color: #25D366;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--pure-white);
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
		text-decoration: none;
		transition: var(--transition-smooth);
	}

	.whatsapp-float:hover {
		transform: scale(1.08);
		background-color: #1ebe57;
	}

	/* --------------------------------------------------
		 ANIMACIONES DE ENTRADA AL HACER SCROLL
		 -------------------------------------------------- */
	.reveal-up {
		opacity: 1;
		transform: none;
	}

	.js .reveal-up {
		opacity: 0;
		transform: translateY(32px);
		transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	}

	.js .reveal-up.is-visible {
		opacity: 1;
		transform: translateY(0);
	}

	@media (prefers-reduced-motion: reduce) {
		.reveal-up,
		.js .reveal-up {
			opacity: 1 !important;
			transform: none !important;
			transition: none !important;
		}
	}

	/* --------------------------------------------------
		 RESPONSIVE DESIGN (MOBILE-FIRST)
		 -------------------------------------------------- */
	@media (max-width: 1024px) {
		.hero {
			min-height: auto;
			padding-top: 120px;
			padding-bottom: 80px;
		}
		.hero-grid {
			grid-template-columns: 1fr;
			gap: 3rem;
		}
		.hero-content {
			align-items: center;
			text-align: center;
		}
		.hero-sub {
			max-width: 100%;
		}
		.hero-badge {
			align-items: center;
			border-left: none;
			border-top: 3px solid var(--strong-red);
			padding-left: 0;
			padding-top: 1rem;
			width: 100%;
		}

		/* V3 Mobile Fallbacks: Integrar imágenes de fondo suave para evitar bloques rígidos */
		.beneficios {
			padding: 80px 0;
		}
		.beneficios::before {
			display: block;
			background-size: cover;
			background-position: center top;
			opacity: 0.14;
			mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 85%);
			-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 85%);
		}
		.beneficios-image-fallback-mobile {
			display: none;
		}
		.beneficios-content {
			position: relative;
			z-index: 1;
			max-width: 100%;
			padding: 0 2rem;
			margin-left: 0;
		}

		.actividades {
			padding: 80px 0;
		}
		.actividades::before {
			display: block;
			background-size: cover;
			background-position: center top;
			opacity: 0.12;
			mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 85%);
			-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 85%);
		}
		.actividades-image-fallback-mobile {
			display: none;
		}
		.actividades-content {
			position: relative;
			z-index: 1;
			max-width: 100%;
			padding: 0 2rem;
			margin-right: 0;
		}

		.experiencia-grid {
			grid-template-columns: 1fr 1fr;
		}
		.exp-card {
			border-right: none;
			border-bottom: 1px solid var(--gris-border);
			padding: 3rem 2rem;
		}
		.exp-card:nth-child(even) {
			border-left: 1px solid var(--gris-border);
		}
		.exp-card:nth-child(3), .exp-card:nth-child(4) {
			border-bottom: none;
		}

		.exp-comp-container {
			grid-template-columns: 1fr;
			gap: 2.5rem;
			text-align: center;
		}
		.exp-comp-bullets {
			align-items: center;
		}

		/* V3 Anualidad Section adaptada a Mobile */
		.membresia {
			padding: 80px 0;
			background-color: var(--light-bg-secondary);
		}
		.membresia::before {
			display: block;
			background-size: cover;
			background-position: center top;
			opacity: 0.14;
			mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 85%);
			-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 85%);
		}
		.membresia-overlay-layer {
			display: none;
		}
		.membresia-image-fallback-mobile {
			display: none;
		}
		.membresia-content-card {
			max-width: 100%;
			border: none;
			padding: 0 2rem;
			background: transparent;
		}
	}

	@media (max-width: 768px) {
		.header-container {
			height: 75px;
		}
		.logo-link {
			width: 120px;
		}
		.menu-toggle {
			display: block;
		}
		.nav-menu {
			position: fixed;
			top: 75px;
			left: 0;
			width: 100%;
			height: calc(100vh - 75px);
			background-color: var(--pure-white);
			flex-direction: column;
			justify-content: center;
			gap: 2.5rem;
			padding: 3rem;
			transform: translateY(-120%);
			transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
			border-top: 1px solid var(--gris-border);
		}
		.nav-menu.open {
			transform: translateY(0);
		}
		.nav-cta {
			margin-left: 0;
			width: 100%;
		}
		.nav-cta .btn {
			width: 100%;
		}
		.hero-title {
			font-size: 2.5rem;
		}
		.section-title {
			font-size: 2rem;
		}
		.experiencia {
			padding: 80px 0;
		}
		.experiencia-grid {
			grid-template-columns: 1fr;
		}
		.exp-card {
			border-left: none !important;
			border-right: none !important;
			border-bottom: 1px solid var(--gris-border) !important;
		}
		.exp-card:last-child {
			border-bottom: none !important;
		}
		.footer-grid {
			grid-template-columns: 1fr;
			gap: 2.5rem;
		}
		.footer-bottom {
			flex-direction: column;
			gap: 1rem;
			text-align: center;
		}
	}

	@media (max-width: 480px) {
		.hero-title {
			font-size: 2.2rem;
		}
		.hero-form-wrapper {
			padding: 2rem 1.5rem;
		}
		.actividades-list {
			grid-template-columns: 1fr;
			column-gap: 0;
		}
		.cierre-title {
			font-size: 2rem;
		}
	}
