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

:root {
	--navy: #0d1b2a;
	--navy2: #0a1520;
	--gold: #c6aa47;
	--gold2: #e0c96a;
	--gold3: #a08930;
	--white: #ffffff;
	--gray: #8a9ab0;
	--light: #f4f1ea;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif;
	background: var(--navy);
	color: var(--white);
	overflow-x: hidden;
}
.contenedor {
	max-width: 1600px;
	margin: 0 auto;
}

/* ─── NAVBAR ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 5%;
	background: rgba(13, 27, 42, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(198, 170, 71, 0.15);
	transition: all 0.3s;
}

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

.nav-logo img {
	height: 44px;
	width: auto;
	display: block;
}

.nav-links {
	display: flex;
	gap: clamp(0.8rem, 1.4vw, 1.6rem);
	list-style: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.25s;
}

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

/* Enlace activo (página actual o sección en vista). Lo alterna main.js. */
.nav-links a.active {
	color: var(--gold);
	position: relative;
}

.nav-links a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: var(--gold);
}

.nav-social {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	flex-shrink: 0;
}

.nav-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	text-decoration: none;
	transition: color 0.25s;
}

.nav-social-link svg {
	width: 20px;
	height: 20px;
	display: block;
}

.nav-social-link:hover {
	color: var(--gold);
}

/* hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.hamburger span {
	width: 24px;
	height: 2px;
	background: var(--gold);
	display: block;
	transition: 0.3s;
}

.pill {
	border: 1px solid rgba(198, 170, 71, 0.35);
	padding: 0.4rem 1rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

/* ─── BOTONES (2 variantes estandarizadas) ─── */
.btn-primary,
.btn-outline {
	padding: clamp(0.6rem, 1.2vw, 0.9rem) clamp(0.9rem, 2.4vw, 2.2rem);
	font-family: inherit;
	font-size: clamp(0.62rem, 1vw, 0.8rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.25s;
	display: inline-block;
	min-width: 0;
	overflow-wrap: anywhere;
}

.btn-primary {
	background: var(--gold);
	color: var(--navy);
	border: none;
}

.btn-primary:hover {
	background: var(--gold2);
	transform: translateY(-2px);
}

.btn-outline {
	background: black;
	color: var(--gold);
	border: 1px solid var(--gold);
}

.btn-outline:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* ─── SECTIONS COMMON ─── */
section {
	padding: 6rem 5%;
}

.section-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.section-label::before {
	content: "";
	width: 30px;
	height: 1px;
	background: var(--gold);
}

.section-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1.2rem;
}

.section-title em {
	font-style: normal;
	color: var(--gold);
}

.section-desc {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.9;
	max-width: 560px;
}

.divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(198, 170, 71, 0.3), transparent);
	margin: 0;
}

/* ─── PROCESO ─── */
#proceso {
	background: var(--navy);
}

.proceso-header {
	max-width: 600px;
	margin-bottom: 4rem;
}

.proceso-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

.proceso-steps::before {
	content: "";
	position: absolute;
	top: 2.5rem;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: linear-gradient(to right, var(--gold), rgba(198, 170, 71, 0.2), var(--gold));
}

.proceso-step {
	padding: 0 1.5rem 2rem;
	text-align: center;
	position: relative;
}

.proceso-step-circle {
	width: 5rem;
	height: 5rem;
	border: 1px solid rgba(198, 170, 71, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	background: var(--navy);
	position: relative;
	z-index: 1;
	transition: all 0.3s;
}

.proceso-step:hover .proceso-step-circle {
	background: rgba(198, 170, 71, 0.1);
	border-color: var(--gold);
}

.proceso-step-n {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gold);
}

.proceso-step-title {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 0.7rem;
}

.proceso-step-text {
	font-size: 0.8rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
}

.proceso-result {
	margin-top: 3rem;
	background: rgba(198, 170, 71, 0.06);
	border: 1px solid rgba(198, 170, 71, 0.25);
	padding: 2rem 2.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.proceso-result-label {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	white-space: nowrap;
}

.proceso-result-text {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--white);
	line-height: 1.4;
}

/* ─── VALOR ─── */
#valor {
	background: var(--navy2);
}

.valor-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	margin-top: 3.5rem;
}

.valor-cards {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.valor-card {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 1.5rem;
	border: 1px solid rgba(198, 170, 71, 0.1);
	transition: border-color 0.3s;
}

.valor-card:hover {
	border-color: rgba(198, 170, 71, 0.35);
}

.valor-icon {
	width: 44px;
	height: 44px;
	background: rgba(198, 170, 71, 0.08);
	border: 1px solid rgba(198, 170, 71, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.1rem;
}

.valor-card-title {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.4rem;
}

.valor-card-text {
	font-size: 0.83rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}

.valor-highlight {
	background: rgba(198, 170, 71, 0.05);
	border: 1px solid rgba(198, 170, 71, 0.2);
	padding: 3rem;
}

.valor-highlight-label {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.valor-highlight-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.3;
	margin-bottom: 2rem;
}

.valor-highlight-title em {
	font-style: normal;
	color: var(--gold);
}

.valor-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.valor-stat {
	border-top: 1px solid rgba(198, 170, 71, 0.2);
	padding-top: 1rem;
}

.valor-stat-val {
	font-family: "Cormorant Garamond", serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 0.3rem;
}

.valor-stat-label {
	font-size: 0.72rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.4;
}

/* ─── CTA ─── */
#contacto {
	background: var(--navy);
	position: relative;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(198, 170, 71, 0.06) 0%, transparent 70%);
}

.cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
}

.cta-label::before,
.cta-label::after {
	content: "";
	width: 30px;
	height: 1px;
	background: var(--gold);
}

.cta-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 600;
	line-height: 1.15;
	margin-bottom: 1.2rem;
}

.cta-title em {
	font-style: normal;
	color: var(--gold);
}

.cta-sub {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.8;
	margin-bottom: 3rem;
}

.cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

.cta-contacts {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(198, 170, 71, 0.15);
}

.cta-contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}

.cta-contact-label {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}

.cta-contact-val {
	font-size: 0.85rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.25s;
}

.cta-contact-val:hover {
	color: var(--gold);
}

/* ─── FOOTER ─── */
footer {
	background: var(--navy2);
	padding: clamp(3rem, 5vw, 4.5rem) 5% 2rem;
	border-top: 1px solid rgba(198, 170, 71, 0.1);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

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

/* Divisores verticales entre columnas */
.footer-top > .footer-col {
	padding-left: clamp(1.5rem, 3vw, 3rem);
	border-left: 1px solid rgba(198, 170, 71, 0.18);
}

/* Columna de marca */
.footer-brand {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* gap: 1.4rem; */
}

.footer-logo {
	display: inline-block;
	width: fit-content;
}

.footer-logo img {
	width: clamp(150px, 13vw, 195px);
	height: auto;
	display: block;
}

.footer-tagline-text {
	font-size: 0.85rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	max-width: 320px;
	text-align: center;
}

/* Títulos de columna */
.footer-col-title {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.6rem;
	padding-bottom: 0.7rem;
	position: relative;
}

.footer-col-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 2px;
	background: var(--gold);
}

/* Lista de enlaces */
.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-links a {
	font-size: 0.88rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.25s;
}

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

/* Lista de contacto */
.footer-contact {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.3rem;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	font-size: 0.88rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.footer-contact-icon {
	flex-shrink: 0;
	color: var(--gold);
	margin-top: 1px;
}

.footer-contact-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

.footer-contact a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s;
}

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

/* Columna de redes sociales */
.footer-social {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-social-item {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.88rem;
	font-weight: 400;
	transition: color 0.25s;
}

.footer-social-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid rgba(198, 170, 71, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	transition:
		border-color 0.25s,
		background 0.25s;
}

.footer-social-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.footer-social-item:hover {
	color: var(--gold);
}

.footer-social-item:hover .footer-social-icon {
	border-color: var(--gold);
	background: rgba(198, 170, 71, 0.1);
}

/* Línea divisoria horizontal */
.footer-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(198, 170, 71, 0.45), transparent);
	margin: 0 0 2rem;
}

/* Barra inferior */
.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
}

.footer-copy {
	font-size: 0.78rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
}

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

.footer-legal a {
	font-size: 0.8rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.25s;
}

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

.footer-legal-sep {
	width: 1px;
	height: 14px;
	background: rgba(198, 170, 71, 0.35);
}

.footer-slogan {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	text-align: right;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.footer-top > .footer-col {
		border-left: none;
		padding-left: 0;
	}

	.footer-bottom {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 1.2rem;
	}

	.footer-copy {
		text-align: center;
	}

	.footer-slogan {
		text-align: center;
	}
}

@media (max-width: 560px) {
	.footer-top {
		grid-template-columns: 1fr;
	}
}

/* ─── ANIMATIONS ─── */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

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

.fade-up-d1 {
	transition-delay: 0.1s;
}

.fade-up-d2 {
	transition-delay: 0.2s;
}

.fade-up-d3 {
	transition-delay: 0.3s;
}

.fade-up-d4 {
	transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
/* Navbar: colapsa a menú móvil antes de que se amontone */
@media (max-width: 1024px) {
	.nav-links,
	.nav-social {
		display: none;
	}

	.hamburger {
		display: flex;
	}
}

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

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

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

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

	.valor-stats {
		grid-template-columns: 1fr 1fr;
	}

	.cta-contacts {
		gap: 2rem;
	}
}

@media (max-width: 600px) {
	section {
		padding: 4rem 5%;
	}

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

	.valor-stats {
		grid-template-columns: 1fr;
	}

	.proceso-result {
		flex-direction: column;
		gap: 1rem;
	}
}
