/* ============================================================
   ELOHE GROUP — SISTEMA DE DISEÑO PREMIUM v1.0
   Manual de Identidad Gráfica Oficial
   Tipografía: Montserrat | Paleta: Pantone 1575 C + 2627 C
   ============================================================ */

/* ============================================================
   1. IMPORTAR FUENTES (Montserrat + Playfair Display)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   2. VARIABLES DE DISEÑO (TOKENS)
   ============================================================ */
:root {
	/* === PALETA OFICIAL ELOHE === */
	--e-orange: #FF6A00;
	/* Naranja Vibrante — Pantone 1575 C */
	--e-orange-light: #FF8C38;
	/* Naranja claro — hover/acentos */
	--e-orange-deep: #E55C00;
	/* Naranja profundo — estados activos */
	--e-orange-glow: rgba(255, 106, 0, 0.25);
	/* Glow naranja */
	--e-orange-glass: rgba(255, 106, 0, 0.08);
	/* Glass naranja */

	--e-purple-deep: #2F044A;
	/* Morado Profundo — Pantone 2627 C */
	--e-purple-mid: #840F8A;
	/* Púrpura Medio */
	--e-purple-bg: #160028;
	/* Fondo ultra-oscuro */
	--e-purple-card: #1E0035;
	/* Fondo tarjetas */
	--e-purple-border: rgba(132, 15, 138, 0.3);
	/* Bordes suaves */

	--e-gray-60: #666666;
	--e-gray-30: #B3B3B3;
	--e-gray-15: #D9D9D9;
	--e-white: #FFFFFF;
	--e-black: #03020A;

	/* === GRADIENTES CORPORATIVOS === */
	--e-grad-brand: linear-gradient(135deg, var(--e-orange) 0%, var(--e-purple-mid) 100%);
	--e-grad-dark: linear-gradient(160deg, #1E0035 0%, #0A0015 100%);
	--e-grad-hero: radial-gradient(ellipse at 60% 0%, #40006A 0%, #160028 60%, #0A0010 100%);
	--e-grad-orange: linear-gradient(135deg, #FF6A00 0%, #FF9D00 100%);
	--e-grad-glow: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);

	/* === GLASSMORPHISM === */
	--e-glass: rgba(255, 255, 255, 0.04);
	--e-glass-border: rgba(255, 255, 255, 0.08);
	--e-glass-orange: rgba(255, 106, 0, 0.06);
	--e-glass-orange-b: rgba(255, 106, 0, 0.18);

	/* === TIPOGRAFÍA === */
	--e-font: 'Montserrat', sans-serif;
	--e-font-editorial: 'Playfair Display', serif;
	--e-fw-light: 300;
	--e-fw-regular: 400;
	--e-fw-medium: 500;
	--e-fw-semibold: 600;
	--e-fw-bold: 700;
	--e-fw-extrabold: 800;
	--e-fw-black: 900;

	/* === ESPACIADOS === */
	--e-section-pad: 120px;
	--e-section-pad-sm: 70px;
	--e-container: 1240px;
	--e-radius-sm: 8px;
	--e-radius: 16px;
	--e-radius-lg: 24px;
	--e-radius-xl: 40px;

	/* === TRANSICIONES === */
	--e-transition: all 0.1s linear;
	/* Más rápido y directo */
	--e-transition-slow: all 0.2s linear;


	/* === SOMBRAS (ELEVACIÓN) === */
	--e-elev-1: 0 2px 10px rgba(0, 0, 0, 0.1);
	--e-elev-2: 0 8px 30px rgba(0, 0, 0, 0.2);
	--e-elev-3: 0 20px 50px rgba(0, 0, 0, 0.3);
	--e-elev-4: 0 30px 80px rgba(0, 0, 0, 0.4);

	--e-shadow-sm: var(--e-elev-1);
	--e-shadow: var(--e-elev-2);
	--e-shadow-orange: 0 8px 32px rgba(255, 106, 0, 0.3);
	--e-shadow-purple: 0 8px 32px rgba(47, 4, 74, 0.5);
	--e-shadow-card: var(--e-elev-3);

	/* === HERO DYNAMICS === */
	--e-hero-overlay: linear-gradient(135deg, rgba(22, 0, 40, 0.88) 0%, rgba(22, 0, 40, 0.65) 50%, rgba(10, 0, 20, 0.80) 100%);
	--e-hero-card-bg: rgba(22, 0, 40, 0.55);
}

/* ============================================================
   3. RESET Y BASE GLOBAL
   ============================================================ */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--e-font);
	font-weight: var(--e-fw-regular);
	background-color: var(--e-purple-bg);
	color: var(--e-white);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Scrollbar corporativa */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--e-purple-bg);
}

::-webkit-scrollbar-thumb {
	background: var(--e-grad-brand);
	border-radius: 3px;
}

/* ============================================================
   4. TIPOGRAFÍA
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--e-font);
	font-weight: var(--e-fw-bold);
	line-height: 1.2;
	color: var(--e-white);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: var(--e-fw-black);
}

h2 {
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	font-weight: var(--e-fw-extrabold);
}

h3 {
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	font-weight: var(--e-fw-bold);
}

h4 {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	font-weight: var(--e-fw-semibold);
}

p {
	font-family: var(--e-font);
	font-weight: var(--e-fw-regular);
	line-height: 1.75;
	color: var(--e-gray-30);
}

.e-font-editorial {
	font-family: var(--e-font-editorial);
	font-style: italic;
}

/* UTILS */
.e-mb-sm {
	margin-bottom: 24px;
}

.e-mb-md {
	margin-bottom: 48px;
}

.e-mb-lg {
	margin-bottom: 80px;
}

.e-mb-xl {
	margin-bottom: 120px;
}

.e-text-center {
	text-align: center;
}

.e-bg-glow {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 106, 0, 0.02) 0%, transparent 70%);
	pointer-events: none;
}

/* BADGES */
.e-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: var(--e-radius-xl);
	font-size: 0.75rem;
	font-weight: var(--e-fw-semibold);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.e-badge-orange {
	background: var(--e-orange-glass);
	border: 1px solid var(--e-glass-orange-b);
	color: var(--e-orange);
}

/* CONTACT COMPONENTS */
.e-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 80px;
	align-items: start;
}

@media (max-width: 1024px) {
	.e-contact-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
}

.e-contact-item {
	padding: 24px;
	background: var(--e-glass);
	border: 1px solid var(--e-glass-border);
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	text-decoration: none;
	transition: var(--e-transition);
}

.e-contact-item:hover {
	background: var(--e-glass-orange);
	border-color: var(--e-glass-orange-b);
	transform: translateX(5px);
}

.e-contact-item .e-icon-box {
	width: 52px;
	height: 52px;
	font-size: 1.2rem;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.03);
	color: var(--e-orange);
}

/* FORM STYLES */
.e-form-card {
	background: linear-gradient(135deg, var(--e-purple-card) 0%, rgba(30, 0, 53, 0.9) 100%);
	border: 1px solid rgba(255, 106, 0, 0.15);
	padding: 50px;
	box-shadow: var(--e-elev-4);
}

@media (max-width: 768px) {
	.e-form-card {
		padding: 30px 20px;
	}
}

.e-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 600px) {
	.e-form-grid {
		grid-template-columns: 1fr;
	}
}

.e-label {
	display: block;
	font-size: 0.82rem;
	font-weight: var(--e-fw-semibold);
	color: var(--e-white);
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.e-input {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--e-radius-sm);
	padding: 14px 18px;
	color: var(--e-white);
	font-family: var(--e-font);
	font-size: 0.95rem;
	transition: var(--e-transition);
}

.e-input:focus {
	outline: none;
	border-color: var(--e-orange);
	background: rgba(255, 106, 0, 0.03);
	box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

/* BUTTONS ADDITIONS */
.e-btn-whatsapp {
	background: #25D366 !important;
	color: white !important;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25) !important;
}

.e-btn-whatsapp:hover {
	background: #1eb956 !important;
	box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4) !important;
	transform: translateY(-3px);
}

/* ABOUT COMPONENTS */
.e-metric-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	position: relative;
	z-index: 1;
}

@media (max-width: 600px) {
	.e-metric-grid {
		gap: 16px;
	}
}

.e-metric-card {
	text-align: center;
	padding: 24px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	transition: var(--e-transition);
}

.e-metric-card:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-5px);
}

.e-value-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: var(--e-glass);
	border: 1px solid var(--e-glass-border);
	border-radius: var(--e-radius);
	transition: var(--e-transition);
}

.e-value-item:hover {
	background: var(--e-glass-orange);
	border-color: var(--e-glass-orange-b);
	transform: translateX(5px);
}

/* HERO UPDATES */
.e-hero-subtitle {
	font-size: 0.45em;
	display: block;
	margin-top: 10px;
	font-weight: 500;
	letter-spacing: 4px;
	color: var(--e-gray-15);
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.e-hero-subtitle {
		letter-spacing: 2px;
		font-size: 0.55em;
	}
}

/* ============================================================
   5. LAYOUT — CONTAINER Y GRID
   ============================================================ */
.e-container {
	max-width: var(--e-container);
	margin: 0 auto;
	padding: 0 24px;
}

@media (max-width: 768px) {
	.e-container {
		padding: 0 16px;
	}
}

.e-section {
	padding: var(--e-section-pad) 0;
}

.e-section-sm {
	padding: var(--e-section-pad-sm) 0;
}

.e-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.e-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.e-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* BENTO GRID UTILS */
.e-bento-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(180px, auto);
	gap: 24px;
}

.e-bento-item-2x2 {
	grid-column: span 2;
	grid-row: span 2;
}

.e-bento-item-2x1 {
	grid-column: span 2;
}

.e-bento-item-1x2 {
	grid-row: span 2;
}

@media (max-width: 1024px) {
	.e-bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.e-bento-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.e-bento-item-2x2,
	.e-bento-item-2x1,
	.e-bento-item-1x2 {
		grid-column: span 1;
		grid-row: span 1;
	}
}

/* Caja de iconos estándar */
.e-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--e-orange-glass);
	border: 1px solid var(--e-glass-orange-b);
	border-radius: var(--e-radius);
	color: var(--e-orange);
	transition: var(--e-transition);
}

/* ============================================================
   6. BOTONES
   ============================================================ */
.e-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: var(--e-radius-xl);
	font-family: var(--e-font);
	font-weight: var(--e-fw-semibold);
	font-size: 0.95rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: var(--e-transition);
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
}

.e-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.1);
	opacity: 0;
	transition: var(--e-transition);
}

.e-btn:hover::before {
	opacity: 1;
}

/* Botón primario — Naranja */
.e-btn-primary {
	background: var(--e-grad-orange);
	color: var(--e-white);
	box-shadow: var(--e-shadow-orange);
}

.e-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(255, 106, 0, 0.45);
	color: var(--e-white);
}

/* Botón outline — Naranja */
.e-btn-outline {
	background: transparent;
	color: var(--e-orange);
	border: 2px solid var(--e-orange);
}

.e-btn-outline:hover {
	background: var(--e-orange);
	color: var(--e-white);
	transform: translateY(-3px);
	box-shadow: var(--e-shadow-orange);
}

/* Botón ghost — Vidrio */
.e-btn-ghost {
	background: var(--e-glass);
	color: var(--e-white);
	border: 1px solid var(--e-glass-border);
	backdrop-filter: blur(10px);
}

.e-btn-ghost:hover {
	border-color: var(--e-orange);
	background: var(--e-glass-orange);
	color: var(--e-orange);
	transform: translateY(-3px);
}

/* ============================================================
   7. TARJETAS GLASSMORPHISM
   ============================================================ */
.e-card {
	background: var(--e-glass);
	border: 1px solid var(--e-glass-border);
	border-radius: var(--e-radius-lg);
	padding: 36px;
	backdrop-filter: blur(20px);
	transition: var(--e-transition);
	position: relative;
	overflow: hidden;
}

.e-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.4), transparent);
	opacity: 0;
	transition: var(--e-transition);
}

.e-card:hover {
	border-color: var(--e-glass-orange-b);
	transform: translateY(-6px);
	box-shadow: var(--e-shadow-card), 0 0 30px var(--e-orange-glow);
	background: var(--e-glass-orange);
}

.e-card:hover::before {
	opacity: 1;
}

/* ============================================================
   8. ÍCONOS CON GRADIENTE
   ============================================================ */
.e-icon-box {
	width: 64px;
	height: 64px;
	border-radius: var(--e-radius);
	background: var(--e-grad-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: var(--e-white);
	flex-shrink: 0;
	box-shadow: var(--e-shadow-orange);
	transition: var(--e-transition);
}

.e-card:hover .e-icon-box {
	transform: scale(1.1) rotate(-3deg);
}

.e-icon-lg {
	width: 80px;
	height: 80px;
	font-size: 2rem;
	border-radius: var(--e-radius-lg);
}

/* ============================================================
   9. TÍTULOS DE SECCIÓN
   ============================================================ */
.e-section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--e-font);
	font-weight: var(--e-fw-semibold);
	font-size: 0.8rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--e-orange);
	margin-bottom: 16px;
}

.e-section-label::before {
	content: '';
	width: 32px;
	height: 2px;
	background: var(--e-grad-orange);
	border-radius: 2px;
}

.e-section-title {
	font-weight: var(--e-fw-black);
	margin-bottom: 20px;
	line-height: 1.15;
}

.e-section-title .e-highlight {
	background: var(--e-grad-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.e-section-sub {
	font-size: 1.1rem;
	color: var(--e-gray-30);
	max-width: 560px;
	margin: 0 auto;
}

/* ============================================================
   10. DECORADORES Y SEPARADORES
   ============================================================ */
.e-divider {
	width: 60px;
	height: 3px;
	background: var(--e-grad-orange);
	border-radius: 3px;
	margin: 20px 0;
}

.e-divider-center {
	margin: 20px auto;
}

/* Línea decorativa con gradiente a transparente */
.e-line {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--e-orange), transparent);
	opacity: 0.3;
	margin: 0;
}

/* ============================================================
   11. EFECTOS DE TEXTO
   ============================================================ */
.e-text-gradient {
	background: var(--e-grad-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.e-text-orange {
	color: var(--e-orange);
}

.e-text-muted {
	color: var(--e-gray-60);
}

/* ============================================================
   12. HEADER PREMIUM
   ============================================================ */
.e-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 18px 0;
	background: rgba(22, 0, 40, 0.7);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid var(--e-glass-border);
	transition: var(--e-transition);
}

.e-header.scrolled {
	padding: 10px 0;
	background: rgba(22, 0, 40, 0.95);
	border-bottom-color: rgba(255, 106, 0, 0.2);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.e-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.e-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.e-logo img {
	height: 38px;
	width: auto;
	transition: var(--e-transition);
}

.e-logo:hover img {
	opacity: 0.85;
	transform: scale(1.03);
}

/* Navegación */
.e-nav {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 6px;
}

.e-nav a {
	display: block;
	padding: 8px 16px;
	font-family: var(--e-font);
	font-weight: var(--e-fw-medium);
	font-size: 0.9rem;
	color: var(--e-gray-30);
	text-decoration: none;
	border-radius: var(--e-radius-sm);
	transition: var(--e-transition);
	position: relative;
}

/* DROPDOWN SYSTEM */
.e-has-dropdown {
	position: relative;
}

.e-nav-arrow {
	font-size: 0.7rem;
	margin-left: 6px;
	transition: transform 0.3s ease;
	opacity: 0.7;
}

.e-dropdown {
	position: absolute;
	top: calc(100% + 15px);
	left: 0;
	transform: translateY(10px);
	width: 250px;
	background: var(--e-purple-card);
	/* Theme aware */
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid var(--e-glass-border);
	border-radius: var(--e-radius);
	padding: 12px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: var(--e-elev-4), 0 10px 40px rgba(0, 0, 0, 0.4);
	z-index: 1000;
	list-style: none !important;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/* Rediseño a 2 columnas en Desktop */
@media (min-width: 1025px) {
	.e-dropdown {
		width: 480px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2px 12px;
		padding: 12px 14px;
	}
}

/* Hover reveal */
.e-has-dropdown:hover .e-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.e-has-dropdown:hover .e-nav-arrow {
	transform: rotate(180deg);
	color: var(--e-orange);
}

/* Dropdown Links */
.e-dropdown-link {
	display: flex !important;
	align-items: center !important;
	gap: 12px;
	padding: 5px 12px !important;
	width: 100%;
	border-radius: var(--e-radius-sm) !important;
	color: var(--e-gray-30) !important;
	/* Theme aware text color */
	font-size: 0.8rem !important;
	font-weight: var(--e-fw-medium) !important;
	text-decoration: none;
	transition: var(--e-transition) !important;
	background: transparent;
}

.e-dropdown-link i {
	width: 16px;
	text-align: center;
	color: var(--e-orange);
	font-size: 0.9rem;
	opacity: 0.8;
}

.e-dropdown-link:hover {
	background: rgba(255, 106, 0, 0.08) !important;
	color: var(--e-white) !important;
	padding-left: 20px !important;
}

.e-dropdown-link:hover i {
	opacity: 1;
	transform: scale(1.1);
}

/* Mobile Dropdown (Responsive) */
@media (max-width: 1024px) {
	.e-dropdown {
		position: static;
		transform: none !important;
		width: 100%;
		opacity: 1;
		visibility: visible;
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 0 0 0 20px;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease;
	}

	/* In mobile we might use a JS class or just expand it directly if wanted */
	.e-has-dropdown.active .e-dropdown {
		max-height: 500px;
		margin-top: 5px;
		margin-bottom: 10px;
	}

	.e-has-dropdown:hover .e-dropdown {
		/* On mobile touch might trigger hover, but better to use a click class if we had JS */
		/* For now let's keep it consistent */
		max-height: 500px;
	}

	.e-dropdown-link {
		border-bottom: 1px solid rgba(255, 255, 255, 0.03);
	}
}

.e-nav a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 16px;
	right: 16px;
	height: 2px;
	background: var(--e-orange);
	transform: scaleX(0);
	border-radius: 2px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: left;
}

.e-nav a:hover {
	color: var(--e-white);
	background: rgba(255, 255, 255, 0.05);
}

.e-nav a:hover::after {
	transform: scaleX(1);
}

.e-nav a.active {
	color: var(--e-orange);
}

.e-nav a.active::after {
	transform: scaleX(1);
}

/* Selector de idioma */
.e-lang-btn {
	font-family: var(--e-font);
	font-weight: var(--e-fw-semibold);
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	color: var(--e-gray-60) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: var(--e-radius-sm) !important;
	padding: 6px 12px !important;
}

.e-lang-btn:hover {
	border-color: var(--e-orange) !important;
	color: var(--e-orange) !important;
	background: var(--e-orange-glass) !important;
}

/* Nav socials */
.e-nav-socials {
	display: flex;
	gap: 8px;
}

.e-nav-socials a {
	width: 36px;
	height: 36px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: var(--e-radius-sm);
	font-size: 1rem;
	color: var(--e-gray-30) !important;
	background: transparent !important;
	border: 1px solid transparent;
	transition: var(--e-transition);
}

.e-nav-socials a:hover {
	color: var(--e-orange) !important;
	border-color: var(--e-orange) !important;
	background: var(--e-orange-glass) !important;
}

.e-nav-socials a::after {
	display: none !important;
}

/* WhatsApp CTA */
.e-nav-cta {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 10px 22px !important;
	background: var(--e-grad-orange) !important;
	color: var(--e-white) !important;
	border-radius: var(--e-radius-xl) !important;
	font-weight: var(--e-fw-semibold) !important;
	font-size: 0.88rem !important;
	box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
	transition: var(--e-transition) !important;
}

.e-nav-cta:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(255, 106, 0, 0.5) !important;
	background: linear-gradient(135deg, #FF8C38, #FF6A00) !important;
}

.e-nav-cta::after {
	display: none !important;
}

/* Hamburger */
.e-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: var(--e-glass);
	border: 1px solid var(--e-glass-border);
	border-radius: var(--e-radius-sm);
	padding: 8px;
	transition: var(--e-transition);
}

.e-hamburger span {
	display: block;
	width: 22px;
	/* Ancho fijo para asegurar visibilidad */
	height: 2px;
	background: var(--e-white);
	border-radius: 2px;
	transition: var(--e-transition);
}

.e-hamburger:hover {
	border-color: var(--e-orange);
}

.e-hamburger:hover span {
	background: var(--e-orange);
}

.e-hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.e-hamburger.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.e-hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   13. FOOTER PREMIUM
   ============================================================ */
.e-footer {
	background: #03020A;
	padding: 80px 0 0;
	position: relative;
	overflow: hidden;
}

.e-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--e-grad-brand);
}

.e-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 60px;
	align-items: start;
}

/* Footer de 3 columnas (version ES) */
.e-footer-grid-3 {
	grid-template-columns: 2fr 1fr 1.5fr;
}

.e-footer-brand .e-footer-logo {
	height: 36px;
	width: auto;
	margin-bottom: 24px;
	display: block;
}

.e-footer-brand p {
	font-size: 0.95rem;
	color: var(--e-gray-60);
	max-width: 280px;
	line-height: 1.7;
}

.e-footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 28px;
}

.e-footer-socials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--e-gray-60);
	font-size: 1rem;
	text-decoration: none;
	transition: var(--e-transition);
}

.e-footer-socials a:hover {
	background: var(--e-orange);
	border-color: var(--e-orange);
	color: var(--e-white);
	transform: translateY(-3px);
	box-shadow: var(--e-shadow-orange);
}

.e-footer-col h4 {
	font-weight: var(--e-fw-semibold);
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--e-orange);
	margin-bottom: 24px;
}

.e-footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.e-footer-col ul a {
	text-decoration: none;
	color: var(--e-gray-60);
	font-size: 0.95rem;
	transition: var(--e-transition);
	display: flex;
	align-items: center;
	gap: 8px;
}

.e-footer-col ul a:hover {
	color: var(--e-white);
	padding-left: 6px;
}

.e-footer-col ul a:hover .e-footer-link-dot {
	background: var(--e-orange);
}

.e-footer-link-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--e-gray-60);
	flex-shrink: 0;
	transition: var(--e-transition);
}

.e-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.e-footer-contact-item i {
	color: var(--e-orange);
	width: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.e-footer-contact-item p {
	color: var(--e-gray-60);
	font-size: 0.9rem;
	line-height: 1.5;
}

.e-footer-contact-item strong {
	color: var(--e-gray-15);
	display: block;
	font-weight: var(--e-fw-semibold);
	font-size: 0.85rem;
	margin-bottom: 2px;
}

.e-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.e-footer-bottom p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.2);
}

.e-footer-contact span {
	display: block;
	font-size: 0.78rem;
	color: var(--e-gray-60);
	margin-bottom: 2px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.e-footer-contact a {
	color: var(--e-gray-30);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: var(--e-fw-medium);
	transition: var(--e-transition);
}

.e-footer-contact a:hover {
	color: var(--e-orange);
}

/* ============================================================
   14. HERO SECTION
   ============================================================ */
.e-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--e-grad-hero);
	overflow: hidden;
	padding-top: 80px;
}

/* Fondo de partículas CSS */
.e-hero-particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.e-particle {
	position: absolute;
	border-radius: 50%;
	background: var(--e-orange);
	animation: e-particle-float linear infinite;
	opacity: 0;
}

@keyframes e-particle-float {
	0% {
		transform: translateY(100vh) translateX(0) scale(0);
		opacity: 0;
	}

	10% {
		opacity: 0.6;
	}

	90% {
		opacity: 0.3;
	}

	100% {
		transform: translateY(-100px) translateX(var(--drift, 40px)) scale(1.2);
		opacity: 0;
	}
}

/* Orbes de fondo */
.e-hero-orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.e-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: e-orb-drift 15s ease-in-out infinite alternate;
}

.e-orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(47, 4, 74, 0.6), transparent 70%);
	top: -200px;
	right: -100px;
	animation-duration: 18s;
}

.e-orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 106, 0, 0.12), transparent 70%);
	bottom: -100px;
	left: -100px;
	animation-duration: 12s;
	animation-delay: -5s;
}

.e-orb-3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(132, 15, 138, 0.2), transparent 70%);
	top: 40%;
	left: 35%;
	animation-duration: 20s;
	animation-delay: -8s;
}

@keyframes e-orb-drift {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(40px, 30px) scale(1.1);
	}
}

/* Marca de agua isotipo */
.e-hero-watermark {
	position: absolute;
	right: -80px;
	top: 50%;
	transform: translateY(-50%);
	width: 600px;
	height: 600px;
	opacity: 0.04;
	animation: e-watermark-spin 60s linear infinite;
	pointer-events: none;
}

@keyframes e-watermark-spin {
	from {
		transform: translateY(-50%) rotate(0deg);
	}

	to {
		transform: translateY(-50%) rotate(360deg);
	}
}

/* Hero layout 2 columnas desktop */
.e-hero-layout {
	display: grid;
	grid-template-columns: 55% 45%;
	gap: 60px;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 2;
}

/* Contenido del hero (columna izquierda) */
.e-hero-content {
	position: relative;
	z-index: 2;
	max-width: 640px;
}

/* Columna visual derecha del hero */
.e-hero-visual {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.e-hero-img-card {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 106, 0, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.06);
	width: 100%;
	aspect-ratio: 4/3;
}

.e-hero-img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.8) brightness(0.75);
	transition: transform 6s ease;
}

.e-hero-img-card:hover img {
	transform: scale(1.03);
}

/* Overlay naranja en la esquina */
.e-hero-img-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(47, 4, 74, 0.4) 0%, transparent 60%);
	pointer-events: none;
}

/* Floating badge sobre la imagen */
.e-hero-img-badge {
	position: absolute;
	bottom: -16px;
	left: -16px;
	background: var(--e-grad-orange);
	border-radius: 16px;
	padding: 14px 20px;
	box-shadow: 0 8px 30px rgba(255, 106, 0, 0.4);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	animation: e-float 4s ease-in-out infinite;
}

.e-hero-img-badge-2 {
	position: absolute;
	top: -16px;
	right: -16px;
	background: rgba(22, 0, 40, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 12px 18px;
	backdrop-filter: blur(20px);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	animation: e-float 4s ease-in-out infinite;
	animation-delay: -2s;
}

@keyframes e-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

/* Tarjeta visual de la derecha del hero */
.e-hero-card {
	background: var(--e-hero-card-bg);
	border: 1px solid var(--e-glass-border);
	border-radius: var(--e-radius-lg);
	padding: 36px;
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	width: 100%;
	position: relative;
	box-shadow: var(--e-shadow-card);
}

.e-hero-card-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 16px;
	transition: var(--e-transition);
}

[data-theme="light"] .e-hero-card {
	border-color: rgba(132, 15, 138, 0.1);
}

[data-theme="light"] .e-hero-card-item {
	background: rgba(47, 4, 74, 0.03);
	border-color: rgba(47, 4, 74, 0.08);
}

.e-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--e-glass-orange);
	border: 1px solid var(--e-glass-orange-b);
	color: var(--e-orange);
	font-size: 0.78rem;
	font-weight: var(--e-fw-semibold);
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 8px 18px;
	border-radius: var(--e-radius-xl);
	margin-bottom: 28px;
	backdrop-filter: blur(10px);
}

.e-hero-badge i {
	font-size: 0.9rem;
}

.e-hero-title {
	font-size: clamp(3rem, 6vw, 5.5rem);
	font-weight: var(--e-fw-black);
	line-height: 1.08;
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.e-hero-title .line-orange {
	display: block;
	background: var(--e-grad-orange);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.e-hero-desc {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: var(--e-gray-30);
	margin-bottom: 44px;
	max-width: 560px;
	line-height: 1.75;
}

.e-hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

/* Stats del hero */
.e-hero-stats {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
}

.e-stat {
	display: flex;
	flex-direction: column;
}

.e-stat-number {
	font-size: 2.2rem;
	font-weight: var(--e-fw-black);
	color: var(--e-orange);
	line-height: 1;
	background: var(--e-grad-orange);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.e-stat-label {
	font-size: 0.82rem;
	color: var(--e-gray-60);
	font-weight: var(--e-fw-medium);
	letter-spacing: 0.5px;
	margin-top: 4px;
}

/* Scroll indicator */
.e-scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.5;
	animation: e-bounce-down 2s ease-in-out infinite;
	z-index: 2;
}

.e-scroll-indicator span {
	font-size: 0.7rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--e-gray-60);
}

.e-scroll-indicator i {
	font-size: 1.2rem;
	color: var(--e-orange);
}

@keyframes e-bounce-down {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

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

/* ============================================================
   15. TARJETAS DE SERVICIOS
   ============================================================ */
.e-service-card {
	background: var(--e-glass);
	border: 1px solid var(--e-glass-border);
	border-radius: var(--e-radius-lg);
	padding: 36px 30px;
	transition: var(--e-transition);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: block;
}

.e-service-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--e-grad-orange);
	transform: scaleX(0);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.e-service-card:hover {
	border-color: rgba(255, 106, 0, 0.25);
	transform: translateY(-8px);
	box-shadow: var(--e-shadow-card), 0 0 40px var(--e-orange-glow);
	background: rgba(255, 106, 0, 0.03);
}

.e-service-card:hover::before {
	transform: scaleX(1);
}

.e-service-icon {
	width: 60px;
	height: 60px;
	border-radius: var(--e-radius);
	background: var(--e-orange-glass);
	border: 1px solid rgba(255, 106, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: var(--e-orange);
	margin-bottom: 24px;
	transition: var(--e-transition);
}

.e-service-card:hover .e-service-icon {
	background: var(--e-orange);
	color: var(--e-white);
	box-shadow: var(--e-shadow-orange);
	transform: scale(1.1);
}

.e-service-card-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.e-service-card h3 {
	font-size: 1.15rem;
	font-weight: var(--e-fw-bold);
	margin-bottom: 12px;
	color: var(--e-white);
	transition: var(--e-transition);
}

.e-service-card:hover h3 {
	color: var(--e-orange);
}

.e-service-card p {
	font-size: 0.9rem;
	color: var(--e-gray-60);
	line-height: 1.65;
	margin-bottom: 24px;
}

.e-service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: var(--e-fw-semibold);
	color: var(--e-orange);
	transition: var(--e-transition);
}

.e-service-card:hover .e-service-link {
	gap: 12px;
}

/* ============================================================
   16. ANIMACIONES DE ENTRADA (REVEAL)
   ============================================================ */
.e-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.e-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.e-reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.e-reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.e-reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.e-reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Delays escalonados */
.e-delay-1 {
	transition-delay: 0.1s;
}

.e-delay-2 {
	transition-delay: 0.2s;
}

.e-delay-3 {
	transition-delay: 0.3s;
}

.e-delay-4 {
	transition-delay: 0.4s;
}

.e-delay-5 {
	transition-delay: 0.5s;
}

.e-delay-6 {
	transition-delay: 0.6s;
}

/* ============================================================
   17. WHATSAPP FLOATING BUTTON
   ============================================================ */
.e-whatsapp-fab {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	text-decoration: none;
	z-index: 900;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
	transition: var(--e-transition);
	animation: e-fab-pulse 3s ease-in-out infinite;
}

.e-whatsapp-fab:hover {
	transform: scale(1.12) translateY(-3px);
	box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

@keyframes e-fab-pulse {

	0%,
	100% {
		box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
	}

	50% {
		box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.08);
	}
}

/* ============================================================
   18. LOADER DE PÁGINA
   ============================================================ */
.e-page-loader {
	position: fixed;
	inset: 0;
	background: var(--e-purple-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.e-page-loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.e-loader-logo {
	width: 80px;
	height: 80px;
	margin-bottom: 24px;
	animation: e-loader-pulse 1.5s ease-in-out infinite;
}

@keyframes e-loader-pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(0.9);
		opacity: 0.6;
	}
}

.e-loader-bar {
	width: 160px;
	height: 3px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	overflow: hidden;
}

.e-loader-bar-fill {
	height: 100%;
	background: var(--e-grad-orange);
	border-radius: 3px;
	animation: e-loader-fill 1.5s ease-out forwards;
}

@keyframes e-loader-fill {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

/* ============================================================
   19. CARRUSEL INFINITO DE PARTNERS (GOLD-TIER UPGRADE)
   ============================================================ */
.e-partners {
	padding: 100px 0;
	background: var(--e-purple-bg);
	border-top: 1px solid var(--e-glass-border);
	border-bottom: 1px solid var(--e-glass-border);
	overflow: hidden;
	position: relative;
	z-index: 10;
}

/* Decorative background glow for marquee area */
.e-partners::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 150px;
	background: radial-gradient(circle, rgba(255, 106, 0, 0.03) 0%, transparent 70%);
	pointer-events: none;
	z-index: -1;
}

.e-marquee-wrapper {
	overflow: hidden;
	position: relative;
	padding: 20px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.e-marquee-track {
	display: flex;
	gap: 30px;
	width: max-content;
	animation: e-marquee-scroll 40s linear infinite;
	align-items: center;
}

.e-marquee-track:hover {
	animation-play-state: paused;
}

@keyframes e-marquee-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.e-partner-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
	height: 110px;
	min-width: 260px;
	background: var(--e-glass);
	border: 1px solid var(--e-glass-border);
	border-radius: 20px;
	transition: var(--e-transition);
	cursor: default;
	position: relative;
	overflow: hidden;
}

.e-partner-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
	opacity: 0;
	transition: var(--e-transition);
}

.e-partner-item:hover {
	transform: translateY(-5px) scale(1.02);
	border-color: rgba(255, 106, 0, 0.3);
	box-shadow: var(--e-elev-3);
	background: rgba(255, 255, 255, 0.02);
}

.e-partner-item:hover::before {
	opacity: 1;
}

.e-partner-logo-container {
	opacity: 0.4;
	filter: grayscale(100%) brightness(1.2);
	transition: var(--e-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

[data-theme="light"] .e-partner-logo-container {
	filter: grayscale(100%) brightness(0.6);
	opacity: 0.5;
}

.e-partner-item:hover .e-partner-logo-container {
	opacity: 1;
	filter: grayscale(0%) brightness(1);
}

.e-partner-logo {
	height: 48px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

.e-partner-item svg {
	height: 40px;
	width: auto;
	max-width: 180px;
	color: var(--e-white);
	transition: var(--e-transition);
}

.e-partner-item:hover svg {
	color: var(--e-orange);
}

/* SVG logos inline */
.e-partner-name {
	font-family: var(--e-font);
	font-weight: var(--e-fw-bold);
	font-size: 1.1rem;
	color: var(--e-white);
	letter-spacing: -0.3px;
	user-select: none;
	white-space: nowrap;
}

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	:root {
		--e-section-pad: 90px;
	}

	.e-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.e-footer-grid,
	.e-footer-grid.e-footer-grid-3 {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

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

	.e-hero-visual {
		display: none;
	}

	/* Navigation Mobile/Tablet */
	.e-nav {
		display: none;
	}

	.e-hamburger {
		display: flex;
		z-index: 10001;
		/* Above mobile menu */
	}

	.e-nav.open {
		display: flex;
		flex-direction: column;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		background: #0e001a;
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		align-items: flex-start;
		/* Alineado a la izquierda estricto */
		justify-content: flex-start;
		gap: 0;
		z-index: 2000000;
		/* Prioridad máxima absoluta */
		padding: 80px 0 40px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.e-nav.open li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.e-nav.open li:last-child {
		border-bottom: none;
	}

	.e-nav.open a {
		font-size: 1.15rem;
		font-weight: var(--e-fw-semibold);
		padding: 14px 30px;
		/* Alineado con el logo lateralmente */
		width: 100%;
		text-align: left;
		color: #fff;
		display: block;
		transition: background 0.2s;
	}

	.e-nav.open a:active {
		background: rgba(255, 255, 255, 0.05);
	}

	/* Barra de controles compacta inferior */
	.e-nav-controls-row {
		display: flex;
		width: 100%;
		padding: 20px 30px;
		gap: 15px;
		align-items: center;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		margin-top: auto;
		background: rgba(0, 0, 0, 0.2);
	}

	.e-nav.open .e-lang-btn,
	.e-nav.open .e-nav-theme {
		flex: 1;
		width: auto;
		display: inline-flex;
		padding: 12px !important;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1) !important;
		border-radius: 12px;
		justify-content: center;
		margin: 0;
	}

	.e-nav.open .e-nav-cta {
		margin: 20px 30px 40px;
		width: calc(100% - 60px);
		justify-content: center;
		padding: 15px !important;

		/* Service Dropdown Accordion in Mobile */
		.e-dropdown {
			position: static;
			transform: none !important;
			width: 100%;
			opacity: 1;
			visibility: visible;
			background: transparent;
			border: none;
			box-shadow: none;
			padding: 0 0 0 20px;
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.5s ease;
			display: flex;
			/* Reset from grid in desktop */
			flex-direction: column;
		}

		.e-has-dropdown.active .e-dropdown {
			max-height: 800px;
			margin-top: 5px;
			margin-bottom: 15px;
		}

		.e-dropdown-link {
			padding: 6px 15px !important;
			font-size: 1rem !important;
			border-left: 1px solid rgba(255, 106, 0, 0.2);
		}
	}

	@media (max-width: 768px) {
		:root {
			--e-section-pad: 70px;
		}

		.e-grid-2,
		.e-grid-3,
		.e-grid-4 {
			grid-template-columns: 1fr;
		}

		.e-footer-grid,
		.e-footer-grid.e-footer-grid-3 {
			grid-template-columns: 1fr;
			gap: 28px;
		}

		.e-hero-title {
			font-size: clamp(2.2rem, 8vw, 3rem);
		}

		.e-hero-stats {
			gap: 20px;
			flex-wrap: wrap;
			justify-content: center;
		}

		.e-stat {
			align-items: center;
			text-align: center;
		}

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

		.e-hero-layout {
			text-align: center;
			gap: 30px;
		}

		.e-hero-actions {
			justify-content: center;
		}

		.e-whatsapp-fab {
			bottom: 24px;
			right: 24px;
			width: 52px;
			height: 52px;
			font-size: 1.4rem;
		}

		.e-partner-item {
			padding: 0 24px;
			min-width: 130px;
		}

		.e-partner-name {
			font-size: 0.9rem;
		}

		.e-hero-visual {
			display: flex;
			order: -1;
			margin-bottom: 20px;
		}

		.e-hero-card {
			padding: 24px;
		}

		.e-contact-form-card {
			padding: 28px;
		}
	}

	@media (max-width: 480px) {
		.e-hero-actions {
			flex-direction: column;
			width: 100%;
		}

		.e-btn {
			justify-content: center;
			width: 100%;
		}

		.e-hero-stats {
			gap: 12px;
		}

		.e-hero-visual {
			display: none;
		}

		/* On very small screens hide it again if needed, or simplify */
		.e-form-row-2 {
			grid-template-columns: 1fr;
		}

		.e-contact-form-card {
			padding: 20px;
		}
	}


	/* ============================================================
   21. SECCIÓN CONTACTO
   ============================================================ */
	.e-contact-section {
		background: linear-gradient(180deg, var(--e-purple-bg) 0%, #100020 100%);
		position: relative;
		overflow: hidden;
	}

	.e-contact-orb {
		position: absolute;
		bottom: -300px;
		right: -300px;
		width: 700px;
		height: 700px;
		background: radial-gradient(circle, rgba(255, 106, 0, 0.05) 0%, transparent 70%);
		pointer-events: none;
		border-radius: 50%;
	}

	/* Grid 2 columnas */
	.e-contact-grid {
		display: grid;
		grid-template-columns: 1fr 1.4fr;
		gap: 60px;
		align-items: start;
	}

	/* Items de información de contacto */
	.e-contact-items {
		display: flex;
		flex-direction: column;
		gap: 16px;
		margin-bottom: 32px;
	}

	.e-contact-item {
		display: flex;
		align-items: center;
		gap: 18px;
		padding: 20px 24px;
		background: var(--e-glass);
		border: 1px solid var(--e-glass-border);
		border-radius: var(--e-radius);
		text-decoration: none;
		transition: var(--e-transition);
	}

	.e-contact-item:hover {
		border-color: rgba(255, 106, 0, 0.3);
		background: rgba(255, 106, 0, 0.04);
		transform: translateX(4px);
	}

	.e-contact-item-label {
		display: block;
		font-size: 0.72rem;
		color: var(--e-gray-60);
		text-transform: uppercase;
		letter-spacing: 1.5px;
		font-weight: 600;
		margin-bottom: 3px;
	}

	.e-contact-item-val {
		color: var(--e-white);
		font-size: 0.95rem;
		font-weight: 600;
	}

	/* Botón WhatsApp */
	.e-btn-whatsapp {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		padding: 14px 24px;
		background: #25D366;
		color: var(--e-white);
		border-radius: var(--e-radius-xl);
		font-family: var(--e-font);
		font-weight: var(--e-fw-semibold);
		font-size: 0.95rem;
		text-decoration: none;
		border: none;
		cursor: pointer;
		box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
		transition: var(--e-transition);
	}

	.e-btn-whatsapp:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
		color: var(--e-white);
	}

	.e-btn-whatsapp i {
		font-size: 1.2rem;
	}

	/* Tarjeta glassmorphism del formulario */
	.e-contact-form-card {
		background: linear-gradient(135deg, var(--e-glass) 0%, rgba(47, 4, 74, 0.2) 100%);
		border: 1px solid var(--e-glass-border);
		border-radius: var(--e-radius-lg);
		padding: 44px;
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
	}

	.e-contact-form-card h3 {
		font-size: 1.3rem;
		margin-bottom: 8px;
	}

	.e-contact-form-sub {
		color: var(--e-gray-60);
		font-size: 0.88rem;
		margin-bottom: 32px;
	}

	.e-contact-form {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	/* Fila 2 columnas dentro del form */
	.e-form-row-2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.e-select {
		-webkit-appearance: none;
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 16px center;
		cursor: pointer;
	}

	.e-textarea {
		resize: vertical;
		min-height: 100px;
	}

	.e-btn-submit {
		border: none;
		justify-content: center;
		font-size: 1rem;
		width: 100%;
	}

	/* Responsive: contacto */
	@media (max-width: 900px) {
		.e-contact-grid {
			grid-template-columns: 1fr;
			gap: 40px;
		}

		.e-contact-form-card {
			padding: 28px;
		}
	}

	@media (max-width: 480px) {
		.e-form-row-2 {
			grid-template-columns: 1fr;
		}

		.e-contact-form-card {
			padding: 20px;
		}
	}

	/* ============================================================
   22. UTILIDADES EXTRA
   ============================================================ */
	.e-text-center {
		text-align: center;
	}

	.e-text-center .e-section-label {
		justify-content: center;
	}

	.e-text-center .e-divider {
		margin: 20px auto;
	}

	.e-text-center .e-section-sub {
		margin: 0 auto;
	}

	.e-mt-sm {
		margin-top: 16px;
	}

	.e-mt-md {
		margin-top: 32px;
	}

	.e-mt-lg {
		margin-top: 56px;
	}

	.e-mb-sm {
		margin-bottom: 16px;
	}

	.e-mb-md {
		margin-bottom: 32px;
	}

	/* Input corporativo */
	.e-input {
		width: 100%;
		padding: 14px 18px;
		background: var(--e-glass);
		border: 1px solid var(--e-glass-border);
		border-radius: var(--e-radius);
		color: var(--e-white);
		font-family: var(--e-font);
		font-size: 0.95rem;
		transition: var(--e-transition);
		outline: none;
		-webkit-appearance: none;
		appearance: none;
	}

	.e-input::placeholder {
		color: var(--e-gray-60);
	}

	.e-input:focus {
		border-color: var(--e-orange);
		background: var(--e-orange-glass);
		box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
	}

	.e-label {
		display: block;
		font-size: 0.82rem;
		font-weight: var(--e-fw-semibold);
		letter-spacing: 0.5px;
		color: var(--e-gray-30);
		margin-bottom: 8px;
		text-transform: uppercase;
	}

	/* Badge corporativo */
	.e-badge {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 5px 14px;
		border-radius: var(--e-radius-xl);
		font-size: 0.78rem;
		font-weight: var(--e-fw-semibold);
	}

	.e-badge-orange {
		background: var(--e-orange-glass);
		border: 1px solid rgba(255, 106, 0, 0.25);
		color: var(--e-orange);
	}

	.e-badge-purple {
		background: rgba(132, 15, 138, 0.1);
		border: 1px solid rgba(132, 15, 138, 0.3);
		color: #C760CC;
	}

	/* ============================================================
   14. COMPLEMENTOS DE SERVICIOS
   ============================================================ */
	.e-details-list {
		list-style: none;
		display: grid;
		gap: 24px;
		margin-top: 30px;
	}

	.e-details-list li {
		display: flex;
		gap: 20px;
		align-items: flex-start;
	}

	.e-details-list li i {
		color: var(--e-orange);
		font-size: 1.25rem;
		margin-top: 4px;
		width: 24px;
		text-align: center;
	}

	.e-details-list li strong {
		display: block;
		color: var(--e-white);
		font-weight: var(--e-fw-bold);
		margin-bottom: 4px;
		font-size: 1rem;
	}

	.e-details-list li span {
		font-size: 0.92rem;
		color: var(--e-gray-30);
		line-height: 1.6;
	}
}