
@import url('/static/css/base/layout.css');
@import url('/static/css/base/topbar.css');
@import url('/static/css/base/dark.css');
@import url('/static/css/base/footer.css');
@import url('/static/css/base/login.css');
@import url('/static/css/home/hero.css');
@import url('/static/css/home/precio.css');
@import url('/static/css/home/trabajamos.css');
@import url('/static/css/home/divisor.css');
@import url('/static/css/home/cta.css');
@import url('/static/css/home/portafolio.css');


:root {
--bg-main:#111111;
--bg-card:#333333;
--primary:#7C3AED;
--text:#FFFFFF;
--muted:#aaaaaa;
}

* {
box-sizing:border-box;
}

html {
  scroll-behavior: smooth;
}
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: Arial;
	background: var(--surface-soft);
	color: var(--text);
}
main {
	background: var(--surface-soft);
}

a {
text-decoration:none;
color:inherit;
}

main {
  flex: 1 0 auto;
}


footer.footer-main {
  flex-shrink: 0;
}
#inicio {
  scroll-margin-top: 120px;
}
#servicios, #portfolio, #cta {
  scroll-margin-top: 80px;
}

#landing, #e-commerce, #negocios {
  scroll-margin-top: 300px;
}
/* =========================
	 LOADER (CARGA)
	 ========================= */
.loader {
	position: fixed;
	inset: 0;
	background: #0f0f0f;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	color: white;
	transition: .5s;
}
.loader.hide {
	opacity: 0;
	pointer-events: none;
}
.loader-circle {
	width: 40px;
	height: 40px;
	border: 3px solid #333;
	border-top: 3px solid white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 10px;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}

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


/* REVEAL ANIMATION */

.reveal{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}