/* ============================================
   VARIABLES Y RESET
   ============================================ */

:root {
	/* Colores Primarios */
	--primary: #ED7443;
	--primary-dark: #D65A2A;
	--primary-light: #F58A5F;

	/* Colores Complementarios */
	--complementary: #003F5C;
	--complementary-dark: #002A3D;
	--complementary-light: #005A7A;

	/* Colores Neutros */
	--white: #FFFFFF;
	--gray-100: #F5F5F5;
	--gray-200: #E5E5E5;
	--gray-300: #D4D4D4;
	--gray-400: #A3A3A3;
	--gray-500: #737373;
	--gray-600: #525252;
	--gray-700: #404040;
	--gray-800: #262626;
	--gray-900: #171717;
	--black: #000000;

	/* Colores de Texto */
	--text-primary: #171717;
	--text-secondary: #525252;
	--text-light: #737373;

	/* Tipografía */
	--font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Espaciado */
	--container-max-width: 1200px;
	--section-padding: 120px 0;

	/* Transiciones */
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	color: var(--text-primary);
	line-height: 1.7;
	overflow-x: hidden;
	font-weight: 400;
}

.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0);
	backdrop-filter: blur(0px);
	z-index: 1000;
	padding: 1.5rem 0;
	transition: var(--transition);
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
	padding: 1.5rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 2%;
	padding-right: 2%;
	width: 100%;
	max-width: 100%;
}

.nav-brand {
	display: flex;
	align-items: center;
	height: 50px;
	text-decoration: none;
}

.nav-logo {
	height: 40px;
	width: auto;
	fill: var(--complementary);
	transition: var(--transition);
}

.navbar:not(.scrolled) .nav-logo {
	fill: var(--white);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: var(--transition-smooth);
}

.nav-menu.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu a {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.navbar:not(.scrolled) .nav-menu a {
	color: var(--white);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--primary);
	transition: var(--transition);
}

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

.nav-menu a:hover {
	color: var(--primary);
}

.nav-cta {
	padding: 0.6rem 1.5rem;
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	border-radius: 25px;
	font-weight: 700;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
	box-shadow: 0 2px 10px rgba(237, 116, 67, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
}

.nav-cta.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-cta:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(237, 116, 67, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #003f5ccd 0%, rgba(255, 122, 69, 0.19) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: left;
	color: var(--white);
	width: 100%;
	padding-left: 0;
	padding-bottom: 5.5rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	min-height: 100vh;
}

.hero-content .container {
	width: 100%;
	max-width: 100%;
	padding-left: 2%;
	padding-right: 2%;
	padding-bottom: 2%;
}

.hero-title {
	font-size: clamp(3.5rem, 6vw, 6rem);
	font-weight: 900;
	margin-bottom: 0;
	letter-spacing: -2px;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hero-title-line {
	display: block;
	color: var(--white);
	text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
	line-height: 0.95;
	opacity: 0;
	transform: translateY(50px) translateX(-30px);
	animation: fadeInUpLeft 1s ease-out forwards;
}

.hero-title-accent {
	margin-top: 20px;
	font-size: clamp(3.5rem, 8vw, 8rem);
	color: var(--primary);
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: rgba(255, 255, 255, 0.95);
	margin-top: 1.2rem;
	font-weight: 400;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	line-height: 1.5;
	opacity: 0;
	transform: translateY(100px) translateX(-80px) scale(0.7);
	filter: blur(15px);
}

.hero-cta {
	display: inline-block;
	margin-top: 2rem;
	padding: 1rem 2.5rem;
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: clamp(0.95rem, 1.3vw, 1.1rem);
	transition: var(--transition);
	text-shadow: none;
	opacity: 0;
	transform: translateY(100px) translateX(-80px) scale(0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-cta:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 6px 30px rgba(237, 116, 67, 0.5);
}

.animate-word {
	animation: fadeInUpLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-word.delay-1 {
	animation-delay: 1s;
}

.animate-word.delay-2 {
	animation-delay: 1.6s;
}

.animate-word.delay-3 {
	animation-delay: 0.9s;
}

.animate-word.delay-4 {
	animation-delay: 1.2s;
}

@keyframes fadeInUpLeft {
	0% {
		opacity: 0;
		transform: translateY(100px) translateX(-80px) scale(0.7);
		filter: blur(15px);
	}

	40% {
		opacity: 0.3;
		filter: blur(8px);
	}

	70% {
		opacity: 0.8;
		filter: blur(3px);
	}

	100% {
		opacity: 1;
		transform: translateY(0) translateX(0) scale(1);
		filter: blur(0);
	}
}


.btn {
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-block;
	border: 2px solid transparent;
	font-size: 1rem;
}

.btn-primary {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(237, 116, 67, 0.3);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(237, 116, 67, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.btn-full {
	width: 100%;
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.mouse {
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	position: relative;
}

.wheel {
	width: 4px;
	height: 8px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: scroll 2s infinite;
}

@keyframes scroll {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(12px);
	}
}

/* ============================================
   CLIENTES SECTION
   ============================================ */

.clientes {
	background: linear-gradient(135deg, var(--complementary), var(--complementary-dark));
	padding: 60px 0;
	overflow: hidden;
	width: 100%;
}

.clientes .container {
	max-width: 100%;
	padding: 0 20px;
}

.clientes-header {
	text-align: center;
	margin-bottom: 4rem;
}

.clientes-title {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1rem;
	background: rgba(237, 116, 67, 0.15);
	padding: 0.5rem 1.25rem;
	border-radius: 25px;
	border: 1px solid rgba(237, 116, 67, 0.3);
}

.clientes-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 1rem 0;
}

.clientes-carousel {
	width: 100%;
	overflow: hidden;
}

.clientes-track {
	display: flex;
	gap: 3rem;
	width: fit-content;
	animation: scrollClientes 40s linear infinite;
}

.clientes-carousel-wrapper:hover .clientes-track {
	animation-play-state: paused;
}

.cliente-logo {
	flex-shrink: 0;
	width: 120px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.7;
	transition: var(--transition);
	filter: brightness(0) invert(1) opacity(0.7);
}

.cliente-logo:hover {
	opacity: 1;
	filter: brightness(0) invert(1) opacity(1);
	transform: scale(1.05);
}

.cliente-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: var(--transition);
}

@keyframes scrollClientes {
	0% {
		transform: translateX(0);
	}

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

/* ============================================
   SECTIONS GENERAL
   ============================================ */

section {
	padding: var(--section-padding);
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-tag {
	display: inline-block;
	color: var(--primary);
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 2rem;
	background: rgba(237, 116, 67, 0.15);
	padding: 0.5rem 1.25rem;
	border-radius: 25px;
	border: 1px solid rgba(237, 116, 67, 0.3);
}

.capacidades .section-tag {
	color: var(--primary);
	background: rgba(237, 116, 67, 0.2);
	border-color: rgba(237, 116, 67, 0.4);
}

.section-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--complementary);
	margin-bottom: 1.5rem;
	letter-spacing: -1.5px;
	line-height: 1.2;
}

.section-title--light {
	color: var(--white);
}

.section-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
}

.capacidades .section-description {
	color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CAPACIDADES SECTION
   ============================================ */

.capacidades {
	background: var(--complementary);
	color: var(--white);
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-auto-rows: minmax(280px, auto);
	gap: 2rem;
}

.bento-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 63, 92, 0.12);
	transition: var(--transition-smooth);
	border: 2px solid var(--gray-200);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.bento-card:hover .card-icon {
	transform: scale(1.05) rotate(2deg);
	box-shadow: 0 6px 20px rgba(237, 116, 67, 0.4);
}

.bento-card:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 10px 30px rgba(0, 63, 92, 0.15), 0 4px 12px rgba(237, 116, 67, 0.25);
	border-color: var(--primary);
}

/* Tamaños del Bento Grid - Diseño Equilibrado */
.bento-large {
	grid-column: span 1;
	grid-row: span 1;
	padding: 3rem;
}

.bento-wide {
	grid-column: span 5;
	grid-row: span 1;
	padding: 3rem;
}

.bento-medium {
	grid-column: span 1;
	grid-row: span 1;
	padding: 2.5rem;
}

.bento-span-2 {
	grid-column: span 2;
}

.bento-span-3 {
	grid-column: span 3;
}

.bento-small {
	grid-column: span 1;
	grid-row: span 1;
}

.card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
	color: var(--white);
	flex-shrink: 0;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 12px rgba(237, 116, 67, 0.25);
}

.card-icon svg {
	width: 28px;
	height: 28px;
}

.bento-card h3 {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--complementary);
	margin-bottom: 1.25rem;
	line-height: 1.3;
	letter-spacing: -0.5px;
}

.bento-large h3 {
	font-size: 1.5rem;
}

.bento-card p {
	color: var(--text-secondary);
	line-height: 1.8;
}

.bento-card p:last-child {
	margin-bottom: 0;
}

.bento-small p {
	font-size: 0.95rem;
}

.card-badge {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0.4rem 1rem;
	background: var(--primary);
	color: var(--white);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	align-self: flex-start;
	box-shadow: 0 2px 8px rgba(237, 116, 67, 0.3);
}

/* ============================================
   TECNOLOGÍAS SECTION
   ============================================ */

.tecnologias {
	background: var(--gray-100);
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.tech-category {
	background: linear-gradient(135deg, var(--complementary), var(--complementary-dark));
	padding: 2.5rem;
	border-radius: 20px;
	color: var(--white);
}

.tech-category h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--primary-light);
}

.tech-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tech-tag {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1.25rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: var(--transition);
}

.tech-tag:hover {
	background: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(237, 116, 67, 0.3);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
	background: linear-gradient(135deg, var(--complementary), var(--complementary-dark));
	color: var(--white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	text-align: center;
}

.stat-number {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.stat-label {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

/* ============================================
   PROBLEMAS Y SOLUCIONES SECTION
   ============================================ */

.problemas-soluciones {
	background: var(--gray-100);
	padding: 120px 0;
}

.problemas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.problema-item {
	background: var(--white);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.problema-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ef4444, #dc2626);
	transform: scaleX(0);
	transition: var(--transition);
}

.problema-item:hover::before {
	transform: scaleX(1);
}

.problema-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	border-color: rgba(239, 68, 68, 0.3);
}

.problema-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	flex-shrink: 0;
}

.problema-icon.problema {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: var(--white);
}

.problema-icon svg {
	width: 28px;
	height: 28px;
}

.problema-item h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--complementary);
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.problema-item>p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.solucion {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
	border-radius: 12px;
	border-left: 4px solid #10b981;
	margin-top: auto;
}

.solucion-icon {
	width: 24px;
	height: 24px;
	background: #10b981;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	flex-shrink: 0;
}

.solucion-icon svg {
	width: 14px;
	height: 14px;
}

.solucion span {
	color: #059669;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* ============================================
   PROCESO SECTION
   ============================================ */

.proceso-section {
	background: var(--gray-100);
	padding: 120px 0;
}

.process-timeline {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	position: relative;
	padding-left: 3rem;
	margin-top: 3rem;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 1.5rem;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--complementary) 100%);
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(237, 116, 67, 0.3);
}

.process-step {
	position: relative;
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.step-number {
	position: absolute;
	left: -3rem;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	box-shadow: 0 4px 20px rgba(237, 116, 67, 0.3);
	z-index: 2;
	transition: var(--transition);
}

.process-step:hover .step-number {
	transform: scale(1.1) rotate(360deg);
}

.step-content {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 2px solid var(--gray-200);
	flex: 1;
	transition: var(--transition);
}

.process-step:hover .step-content {
	transform: translateX(10px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	border-color: var(--primary);
}

.step-icon {
	width: 56px;
	height: 56px;
	background: rgba(237, 116, 67, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--primary);
	transition: var(--transition);
}

.step-icon svg {
	width: 28px;
	height: 28px;
}

.process-step:hover .step-icon {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: var(--white);
	transform: scale(1.1);
}

.step-title {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--complementary);
}

.step-description {
	font-size: 1.05rem;
	margin-bottom: 1rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

.step-features {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.step-feature-tag {
	background: var(--gray-200);
	color: var(--text-secondary);
	padding: 0.4rem 0.9rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: var(--transition);
	border: 1px solid var(--gray-300);
}

.process-step:hover .step-feature-tag {
	background: rgba(237, 116, 67, 0.15);
	color: var(--primary);
	border-color: var(--primary);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.step-label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: var(--complementary);
	margin-bottom: 1.25rem;
}

.step-back-btn {
	background: transparent;
	border: 2px solid var(--gray-200);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	margin-bottom: 1rem;
	padding: 0;
	color: var(--text-secondary);
}

.step-back-btn svg {
	width: 20px;
	height: 20px;
}

.step-back-btn:hover {
	border-color: var(--primary);
	background: rgba(237, 116, 67, 0.1);
	color: var(--primary);
	transform: translateX(-2px);
}

.step-back-btn:active {
	transform: translateX(-4px);
}

.option-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.option-btn {
	background: var(--gray-100);
	border: 2px solid var(--gray-200);
	border-radius: 16px;
	padding: 1.5rem;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
	font-family: var(--font-family);
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
}

.option-btn svg {
	width: 32px;
	height: 32px;
	color: var(--primary);
}

.option-btn small {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--text-secondary);
	margin-top: 0.25rem;
}

.option-btn:hover {
	border-color: var(--primary);
	background: rgba(237, 116, 67, 0.05);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(237, 116, 67, 0.15);
}

.option-btn.selected {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-color: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(237, 116, 67, 0.3);
}

.option-btn.selected svg {
	color: var(--white);
}

.option-btn.selected small {
	color: rgba(255, 255, 255, 0.9);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.feature-checkbox {
	display: flex;
	align-items: center;
	padding: 1rem 1.25rem;
	background: var(--gray-100);
	border: 2px solid var(--gray-200);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition);
}

.feature-checkbox:hover {
	border-color: var(--primary);
	background: rgba(237, 116, 67, 0.05);
}

.feature-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 0.75rem;
	cursor: pointer;
	accent-color: var(--primary);
}

.feature-checkbox input[type="checkbox"]:checked+span {
	color: var(--primary);
	font-weight: 600;
}

.feature-checkbox:has(input:checked) {
	border-color: var(--primary);
	background: rgba(237, 116, 67, 0.1);
}

.calculator-result {
	background: linear-gradient(135deg, var(--complementary), var(--complementary-dark));
	padding: 2rem;
	border-radius: 16px;
	color: var(--white);
	margin-top: 2rem;
	display: none;
}

.calculator-result.show {
	display: block;
	animation: fadeIn 0.3s ease;
}

.result-header h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.result-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}

.result-label {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.result-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
	background: var(--complementary-dark);
	color: var(--white);
	padding: 3rem 0 1.5rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-section {
	display: flex;
	flex-direction: column;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.logo-image {
	width: 120px;
	height: auto;
	object-fit: contain;
}

.footer-cta {
	margin-bottom: 1rem;
	align-self: flex-start;
	padding: 0.5rem 1.25rem;
	font-size: 0.9rem;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
}

.footer-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	font-size: 0.95rem;
}

.footer-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--primary);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-links li a:hover {
	color: var(--primary);
	padding-left: 5px;
}

.footer-links li a svg {
	flex-shrink: 0;
}


.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.footer-legal-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-legal-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
	font-size: 0.9rem;
}

.footer-legal-links a:hover {
	color: var(--primary);
}

.footer-separator {
	color: rgba(255, 255, 255, 0.3);
}

.footer-video-credit {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
	background: var(--complementary);
	padding: var(--section-padding);
	color: var(--white);
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info {
	text-align: left;
}

.contact-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.75rem;
	line-height: 1.2;
}

.contact-subtitle {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 2.5rem;
	opacity: 0.95;
}

.contact-details {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-details li {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--primary);
	transition: var(--transition);
}

.contact-icon svg {
	width: 24px;
	height: 24px;
}

.contact-details li:hover .contact-icon {
	transform: scale(1.1);
	color: var(--primary-light);
}

.contact-details a {
	color: var(--white);
	text-decoration: none;
	font-weight: 400;
	transition: var(--transition);
}

.contact-details a:hover {
	color: var(--primary-light);
	text-decoration: underline;
}

.contact-addresses {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-address-card {
	background: rgba(0, 42, 61, 0.6);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	padding: 2rem;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: var(--transition-smooth);
}

.contact-address-card:hover,
.contact-address-card.fade-in-up.visible:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 63, 92, 0.4);
	border-color: var(--complementary-light);
}

.contact-address-card:hover .contact-address-icon {
	transform: scale(1.1);
	color: var(--primary-light);
}

.contact-address-icon {
	display: inline-flex;
	color: var(--primary);
	margin-bottom: 1rem;
	transition: var(--transition);
}

.contact-address-icon svg {
	width: 24px;
	height: 24px;
}

.contact-address-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.contact-address-text {
	font-style: normal;
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--white);
	line-height: 1.7;
	opacity: 0.95;
}

@media (max-width: 900px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

/* ============================================
   KIT CONSULTING SECTION
   ============================================ */

.kit-consulting {
	background: var(--white);
	padding: 120px 0;
}

.kit-consulting-logo-wrapper {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.kit-consulting-logo {
	max-width: 100%;
	height: auto;
	max-height: 90px;
	object-fit: contain;
}

.kit-consulting-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.kit-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 63, 92, 0.12);
	border: 2px solid var(--gray-200);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kit-card:hover,
.kit-card.fade-in-up.visible:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 10px 30px rgba(0, 63, 92, 0.15), 0 4px 12px rgba(237, 116, 67, 0.25);
	border-color: var(--primary);
}

.kit-card h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--complementary);
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.kit-card>p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1rem;
}


.kit-services-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.kit-services-list li {
	color: var(--text-secondary);
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
}

.kit-services-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: 700;
	font-size: 1.1rem;
}

.kit-amounts-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.kit-amounts-list li {
	color: var(--text-secondary);
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
}

.kit-amounts-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: 700;
	font-size: 1.2rem;
}

.kit-card strong {
	color: var(--complementary);
	font-weight: 700;
}

/* ============================================
   ANIMACIONES
   ============================================ */

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.fade-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.delay-1 {
	transition-delay: 0.1s;
}

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

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* Media query para pantallas medianas (portátiles) */
@media (min-width: 769px) and (max-width: 1440px) {
	.hero-title {
		font-size: clamp(3rem, 8vw, 6rem);
		letter-spacing: -3px;
	}

	.hero-subtitle {
		font-size: clamp(1rem, 2vw, 1.4rem);
		margin-top: 1rem;
	}

	.hero-cta {
		padding: 1rem 2.5rem;
		font-size: clamp(0.9rem, 1.2vw, 1.1rem);
		margin-top: 2rem;
	}

	.hero-content {
		padding-bottom: 5.5rem;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		flex-direction: column;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		width: 100%;
		padding: 2rem;
		transition: var(--transition);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu a {
		color: var(--text-primary);
		text-shadow: none;
	}

	.hamburger {
		display: flex;
	}

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

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}

	.nav-logo {
		height: 35px;
	}

	.hero-content {
		text-align: left;
		padding-left: 2%;
		padding-bottom: 5.5rem;
		align-items: flex-end;
	}

	.hero-content .container {
		padding: 0 2%;
	}

	.hero-title {
		text-align: left;
	}

	.bento-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.bento-large,
	.bento-medium,
	.bento-small,
	.bento-wide,
	.bento-span-2,
	.bento-span-3 {
		grid-column: span 1;
		grid-row: span 1;
		min-height: auto;
	}

	.bento-large {
		padding: 2rem;
	}

	.bento-large h3 {
		font-size: 1.5rem;
	}

	.tech-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.problemas-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.problema-item {
		padding: 1.5rem;
	}

	.problemas-soluciones {
		padding: 60px 0;
	}

	.proceso-section {
		padding: 60px 0;
	}

	.process-timeline {
		padding-left: 2rem;
		gap: 2rem;
	}

	.process-timeline::before {
		left: 1rem;
	}

	.step-number {
		left: -2rem;
		width: 50px;
		height: 50px;
		font-size: 1rem;
	}

	.step-content {
		padding: 1.5rem;
	}

	.step-title {
		font-size: 1.5rem;
	}

	.step-description {
		font-size: 1rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
	}

	.contact-content--two-cols {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.option-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.calculator-container {
		padding: 1.5rem;
	}

	.result-content {
		flex-direction: column;
		gap: 0.75rem;
	}

	.result-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.footer {
		padding: 3rem 0 1.5rem;
	}

	.footer .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 2rem;
	}

	.footer-section {
		display: flex;
		flex-direction: column;
	}

	.footer .logo {
		margin-bottom: 1rem;
	}

	.footer-cta {
		margin-bottom: 1rem;
	}

	.footer-description {
		line-height: 1.7;
		font-size: 0.95rem;
		margin-bottom: 0;
	}

	.footer-title {
		font-size: 1.125rem;
		margin-bottom: 1rem;
	}

	.footer-links li {
		margin-bottom: 0.75rem;
	}

	.footer-bottom {
		text-align: center;
		padding-top: 2rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 0;
	}

	.footer-bottom p {
		margin: 0 0 0.25rem 0;
		line-height: 1.5;
		font-size: 0.9rem;
	}

	.footer-legal-links {
		flex-direction: column;
		gap: 0.5rem;
	}

	.footer-video-credit {
		font-size: 0.8rem;
		margin-top: 0.5rem;
		line-height: 1.5;
	}

	.footer-separator {
		display: none;
	}

	.back-to-top {
		bottom: 24px;
		right: 24px;
		width: 3rem;
		height: 3rem;
	}

	section {
		padding: 60px 0;
	}

	.clientes {
		padding: 40px 0;
	}

	.clientes-title {
		font-size: 1.5rem;
	}

	.cliente-logo {
		width: 150px;
		height: 80px;
	}

	.clientes-track {
		gap: 2rem;
	}

	.kit-consulting {
		padding: 60px 0;
	}

	.kit-consulting-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.kit-card {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.hero-title {
		font-size: 3rem;
		letter-spacing: -2px;
	}

	.hero-cta {
		padding: 1rem 2rem;
		font-size: 1rem;
	}
}

/* Botón volver arriba */
.back-to-top {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(237, 116, 67, 0.4);
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.5rem);
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
	z-index: 1000;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--primary-dark);
	color: #fff;
}