:root {
	--primary: #0b0f5a;
	--secondary: #c89b3c;
	--dark: #0a0f2c;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: #f8fafc;
}

.navbar {
	background: rgba(10, 15, 44, 0.6);
	backdrop-filter: blur(10px);
	transition: all .3s ease;
}

.navbar.scrolled {
	background: rgba(10, 15, 44, 0.95);
	box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

.nav-link {
	position: relative;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--secondary);
}

.btn-nav {
	background: var(--secondary);
	border-radius: 25px;
	padding: 6px 18px;
	margin-left: 10px;
	color: #0a0f2c;
	transition: all .3s ease;
}

.btn-nav:hover {
	background: #e0b24a;
	color: #0a0f2c;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25D366;
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
	z-index: 999;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.08);
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.24), transparent 28%),
		radial-gradient(circle at 80% 30%, rgba(200, 155, 60, 0.16), transparent 24%),
		radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.18), transparent 30%),
		linear-gradient(135deg, #081225 0%, #0b0f5a 45%, #0a0f2c 100%);
	color: white;
	padding: 140px 0 100px;
	isolation: isolate;
}

.btn-gold {
	background: var(--secondary);
	border-radius: 30px;
	padding: 10px 25px;
	border: none;
	color: #0a0f2c;
	font-weight: 600;
}

.btn-gold:hover {
	background: #e0b24a;
	color: #0a0f2c;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: 0.14;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.15));
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.15));
	pointer-events: none;
	z-index: -1;
}

.hero::after {
	content: '';
	position: absolute;
	width: 540px;
	height: 540px;
	right: -120px;
	top: -140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(200, 155, 60, 0.22) 0%, rgba(200, 155, 60, 0.08) 35%, transparent 68%);
	filter: blur(18px);
	animation: heroFloat 9s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
}

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

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(14px);
	pointer-events: none;
	z-index: 1;
	opacity: 0.9;
}

.hero-glow-1 {
	width: 260px;
	height: 260px;
	left: 8%;
	top: 24%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.26), transparent 70%);
	animation: heroFloat 10s ease-in-out infinite;
}

.hero-glow-2 {
	width: 220px;
	height: 220px;
	right: 18%;
	bottom: 8%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.22), transparent 70%);
	animation: heroFloat 12s ease-in-out infinite reverse;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(10px);
	font-size: 0.92rem;
	font-weight: 600;
	margin-bottom: 18px;
}

.hero-badge i,
.hero-subpoints i,
.contact-info i,
.footer-contact i {
	color: #c89b3c;
}

.hero-subpoints {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
}

.hero-subpoints span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.section-title {
	font-weight: 700;
	color: var(--primary);
}

.glass {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card {
	border-radius: 16px;
	transition: .3s;
	height: 100%;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, .10);
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 155, 60, 0.1);
	color: var(--secondary);
	font-size: 26px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-icon {
	background: var(--secondary);
	color: #0a0f2c;
	transform: scale(1.05);
}

/* Habilitar para el carrusel */

/*.logo-marquee {
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
*/
/*
.logo-track {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 820px;
	margin: 0 auto;
}
*/

/* Ini Solo para 3 */
.clients-row {
  max-width: 900px;
  margin: 0 auto;
}

.client-item {
  display: flex;
  justify-content: center;
}

.client-card {
  width: 100%;
  max-width: 240px;
  height: 110px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10);
  border-color: rgba(200, 155, 60, 0.35);
}

.client-logo {
  max-width: 150px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.client-card:hover .client-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .client-card {
    max-width: 220px;
    height: 96px;
    padding: 16px 22px;
  }

  .client-logo {
    max-width: 130px;
    max-height: 44px;
  }
}

/*  fin  Agregado para 3*/
}

.client-card {
	min-width: 190px;
	height: 96px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 24px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
	backdrop-filter: blur(8px);
}

.client-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.10);
	border-color: rgba(200, 155, 60, 0.35);
	background: #ffffff;
}

.client-logo {
	max-height: 34px;
	max-width: 120px;
	opacity: .65;
	filter: grayscale(100%);
	transition: transform .3s ease, opacity .3s ease, filter .3s ease;
}

.client-card:hover .client-logo {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.05);
}

.tech-badge {
	padding: 18px;
	border-radius: 14px;
	background: white;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-badge:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.tech-logo {
	max-height: 48px;
	max-width: 100%;
	object-fit: contain;
	display: block;
	margin: auto;
	filter: grayscale(100%);
	opacity: .7;
	transition: .3s;
}

.tech-logo:hover {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.1);
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all .6s ease;
}

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

.contact-section {
	background: #f8fafc;
}

.contact-title {
	color: #0a0f2c;
}

.contact-subtitle {
	color: #64748b;
	max-width: 420px;
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #334155;
	margin-bottom: 10px;
}

.contact-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-control {
	border-radius: 10px;
	padding: 12px;
	border: 1px solid #e2e8f0;
}

.form-control:focus {
	border-color: #c89b3c;
	box-shadow: 0 0 0 0.2rem rgba(200, 155, 60, 0.2);
}

.contact-note {
	font-size: 0.9rem;
	color: #64748b;
}

.site-footer {
	background: #0a0f2c;
	color: #cbd5e1;
	padding: 70px 0 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-text {
	color: #b8c1d1;
	max-width: 460px;
	line-height: 1.7;
}

.footer-title {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
	color: #cbd5e1;
	text-decoration: none;
	transition: all .25s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
	color: #c89b3c;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #cbd5e1;
}

.footer-contact i {
	font-size: 1rem;
	min-width: 18px;
}

.footer-divider {
	border-color: rgba(255, 255, 255, 0.08);
	margin: 34px 0 20px;
}

.footer-bottom p {
	color: #94a3b8;
	font-size: 0.95rem;
}

.footer-social a {
	color: #cbd5e1;
	font-size: 1.15rem;
	transition: all .25s ease;
}

.footer-cta {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.footer-cta:hover {
	transform: translateY(-2px);
}

.brand-wordmark {
	display: inline-flex;
	align-items: center;
	letter-spacing: -0.02em;
	font-size: 1.3rem;
	line-height: 1;
}

.brand-dev {
	color: var(--secondary);
}

.navbar-brand,
.footer-brand {
	text-decoration: none;
}

background: linear-gradient(90deg, #c89b3c, #f5d27a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

@keyframes heroFloat {

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

	50% {
		transform: translate3d(0, 16px, 0) scale(1.03);
	}
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

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

@media (prefers-reduced-motion: reduce) {

	.hero::after,
	.hero-glow-1,
	.hero-glow-2 {
		animation: none;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 120px 0 80px;
	}

	.hero-subpoints {
		gap: 12px;
		font-size: 0.9rem;
	}

	.client-card {
		min-width: 160px;
		height: 86px;
	}
}