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

:root {
	--orange: #F07020;
	--orange-dark: #C05010;
	--orange-light: #FF9040;
	--charcoal: #1A1A1A;
	--dark: #111111;
	--dark2: #1E1E1E;
	--dark3: #252525;
	--gray: #888888;
	--gray-light: #CCCCCC;
	--white: #F5F3EE;
	--gold: #D4A017;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Barlow', sans-serif;
	background: var(--dark);
	color: var(--white);
	overflow-x: hidden;
}

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	height: 160px;
	background: rgba(0, 0, 0);	
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(240, 112, 32, 0.15);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo-icon {
	width: 38px;
	height: 38px;
	background: var(--orange);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 18px;
	color: white;
	flex-shrink: 0;
}

.logo-text {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 24px;
	letter-spacing: 2px;
	color: var(--white);
	line-height: 1;
}

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

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--gray-light);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--orange);
}

.nav-cta {
	display: flex;
	gap: 12px;
}

.btn-outline {
	padding: 9px 22px;
	border: 1.5px solid var(--orange);
	color: var(--orange);
	background: transparent;
	font-family: 'Barlow', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.btn-outline:hover {
	background: var(--orange);
	color: white;
}

.btn-primary {
	padding: 9px 22px;
	background: var(--orange);
	color: white;
	border: 1.5px solid var(--orange);
	font-family: 'Barlow', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-primary:hover {
	background: var(--orange-dark);
	border-color: var(--orange-dark);
}

/* HERO */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 100px 5% 60px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(240, 112, 32, 0.08) 0%, transparent 50%),
		url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F07020' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-line {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 38%;
	width: 1px;
	background: linear-gradient(to bottom, transparent, rgba(240, 112, 32, 0.3), transparent);
}

.hero-diagonal {
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 120px;
	background: var(--dark2);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(240, 112, 32, 0.12);
	border: 1px solid rgba(240, 112, 32, 0.3);
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 24px;
}

.hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--orange);
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

	50% {
		opacity: 0.5;
		transform: scale(0.7);
	}
}

.hero h1 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(56px, 8vw, 96px);
	line-height: 0.95;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.hero h1 .line-orange {
	color: var(--orange);
	display: block;
}

.hero h1 .line-white {
	color: var(--white);
	display: block;
}

.hero h1 .line-stroke {
	display: block;
	-webkit-text-stroke: 1.5px rgba(245, 243, 238, 0.3);
	color: transparent;
}

.hero-sub {
	font-size: 16px;
	color: var(--gray-light);
	line-height: 1.7;
	margin: 24px 0 36px;
	max-width: 480px;
}

.hero-sub strong {
	color: var(--orange);
	font-weight: 700;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.btn-hero {
	padding: 16px 36px;
	background: var(--orange);
	color: white;
	border: none;
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
	display: inline-block;
}

.btn-hero:hover {
	background: var(--orange-dark);
	transform: translateY(-2px);
}

.btn-hero-ghost {
	padding: 14px 34px;
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(245, 243, 238, 0.3);
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-block;
}

.btn-hero-ghost:hover {
	border-color: var(--orange);
	color: var(--orange);
}

.hero-stats {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 24px;
	z-index: 2;
}

.stat-card {
	background: var(--dark3);
	border: 1px solid rgba(240, 112, 32, 0.2);
	padding: 20px 28px;
	text-align: center;
	border-left: 3px solid var(--orange);
	min-width: 160px;
}

.stat-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 48px;
	color: var(--orange);
	line-height: 1;
}

.stat-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gray);
	margin-top: 4px;
}

/* SECTION BASE */
section {
	padding: 80px 5%;
}

.section-tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}

.section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.section-sub {
	font-size: 16px;
	color: var(--gray-light);
	line-height: 1.7;
	max-width: 560px;
}

/* QUIENES SOMOS */
.about {
	background: var(--dark2);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	padding: 80px 5%;
}

.about-visual {
	position: relative;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.about-block {
	background: var(--dark3);
	border: 1px solid rgba(240, 112, 32, 0.1);
	padding: 28px 22px;
	position: relative;
	overflow: hidden;
}

.about-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--orange);
}

.about-block.big {
	grid-column: span 2;
	background: linear-gradient(135deg, rgba(240, 112, 32, 0.12), rgba(240, 112, 32, 0.04));
	border-color: rgba(240, 112, 32, 0.3);
}

.about-block-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 40px;
	color: var(--orange);
	line-height: 1;
}

.about-block-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gray);
	margin-top: 4px;
}

.about-mission {
	font-size: 22px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.5px;
	line-height: 1.3;
}

.about-text p {
	font-size: 15px;
	color: var(--gray-light);
	line-height: 1.8;
	margin-bottom: 16px;
}

.values-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
}

.value-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.value-icon {
	width: 36px;
	height: 36px;
	background: rgba(240, 112, 32, 0.12);
	border: 1px solid rgba(240, 112, 32, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 16px;
}

.value-text strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.value-text span {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.5;
}

/* CÓMO FUNCIONA */
.how {
	text-align: center;
}

.how .section-sub {
	margin: 0 auto 56px;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 56px;
	position: relative;
}

.steps-grid::before {
	content: '';
	position: absolute;
	top: 36px;
	left: calc(12.5% + 18px);
	right: calc(12.5% + 18px);
	height: 1px;
	background: linear-gradient(to right, var(--orange), rgba(240, 112, 32, 0.2), var(--orange));
}

.step {
	background: var(--dark2);
	padding: 40px 24px 32px;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
	border-color: rgba(240, 112, 32, 0.3);
	transform: translateY(-4px);
}

.step-num {
	width: 36px;
	height: 36px;
	background: var(--orange);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	position: relative;
	z-index: 1;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.step h3 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 10px;
}

.step p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.7;
}

/* SERVICIOS */
.services {
	background: var(--dark2);
}

.services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
}

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

.service-card {
	background: var(--dark3);
	padding: 36px 28px;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transition: border-color 0.3s;
	cursor: default;
}

.service-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.service-card:hover {
	border-color: rgba(240, 112, 32, 0.2);
}

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

.service-icon {
	font-size: 32px;
	margin-bottom: 20px;
	display: block;
}

.service-card h3 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 10px;
}

.service-card p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.7;
}

.service-tag {
	display: inline-block;
	margin-top: 16px;
	padding: 4px 10px;
	background: rgba(240, 112, 32, 0.1);
	color: var(--orange);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* TESTIMONIOS */
.testimonios {
	background: var(--dark);
}

.testi-header {
	text-align: center;
	margin-bottom: 56px;
}

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

.testi-card {
	background: var(--dark2);
	padding: 32px 28px;
	border: 1px solid rgba(255, 255, 255, 0.04);
	position: relative;
}

.testi-card::before {
	content: '"';
	font-family: 'Bebas Neue', sans-serif;
	font-size: 80px;
	color: rgba(240, 112, 32, 0.15);
	position: absolute;
	top: 10px;
	right: 20px;
	line-height: 1;
}

.testi-stars {
	color: var(--gold);
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.testi-text {
	font-size: 14px;
	color: var(--gray-light);
	line-height: 1.8;
	margin-bottom: 24px;
	font-style: italic;
}

.testi-person {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-avatar {
	width: 44px;
	height: 44px;
	background: var(--orange);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 16px;
	color: white;
}

.testi-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
}

.testi-role {
	font-size: 11px;
	color: var(--gray);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 2px;
}

/* CTA FINAL */
.cta-final {
	background: linear-gradient(135deg, #1A0E00 0%, #111111 50%, #1A0E00 100%);
	text-align: center;
	padding: 100px 5%;
	position: relative;
	overflow: hidden;
}

.cta-final::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F07020' fill-opacity='0.04'%3E%3Cpath d='M40 0l40 20v40l-40 20L0 60V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-final-content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.cta-final h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.cta-final h2 span {
	color: var(--orange);
}

.cta-final p {
	font-size: 16px;
	color: var(--gray-light);
	line-height: 1.7;
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* FOOTER */
footer {
	background: #0A0A0A;
	padding: 56px 5% 32px;
	border-top: 1px solid rgba(240, 112, 32, 0.1);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.7;
	margin-top: 16px;
	max-width: 260px;
}

.footer-col h4 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 16px;
}

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

.footer-col ul a {
	font-size: 13px;
	color: var(--gray);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col ul a:hover {
	color: var(--white);
}

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

.footer-bottom p {
	font-size: 12px;
	color: var(--gray);
}

.footer-bottom span {
	color: var(--orange);
}

/* MOBILE */
@media (max-width: 900px) {
	.nav-links {
		display: none;
	}

	.hero-stats {
		display: none;
	}

	.about {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.steps-grid::before {
		display: none;
	}

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

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

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.services-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

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

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

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

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.nav-cta {
		display: none;
	}
}