/* ===========================================================
   JLB — Just Love Building · estilos
   Navy #081635 · Branco · Off-white #F6F6F3
   Gradiente: linear-gradient(to right,#EE2F4E 0%,#1E1041 100%)
   Archivo (display) · Manrope (corpo) · Space Mono (técnico)
   =========================================================== */

:root {
	--navy: #081635;
	--navy-2: #0d1f49;
	--white: #ffffff;
	--offwhite: #F6F6F3;
	--ink: #081635;
	--muted: #3a4358;
	--faint: #9aa0ad;
	--line: #e7e7e2;
	--grad: linear-gradient(to right, #EE2F4E 0%, #1E1041 100%);
	--accent: #EE2F4E;
	--maxw: 1280px;
	--pad: clamp(20px, 6vw, 88px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: var(--ink);
	background: var(--offwhite);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
}

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

::selection {
	background: var(--accent);
	color: #fff;
}

.mono {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.eyebrow {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
}

.display {
	font-family: 'Montserrat', sans-serif, sans-serif;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 0.98;
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding-left: var(--pad);
	padding-right: var(--pad);
}

.section {
	padding: clamp(50px, 5vw, 30px) 0;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
	opacity: 1;
	transform: none;
}

/* ---------- NAV ---------- */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px var(--pad);
	transition: background .4s ease, padding .4s ease, border-color .4s ease;
	border-bottom: 1px solid transparent;
}

.nav.scrolled {
	background: rgba(8, 22, 53, 0.92);
	backdrop-filter: blur(10px);
	padding: 14px var(--pad);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: #fff;
}

.nav__logo .dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--grad);
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 34px;
}

.nav__links a {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	position: relative;
	padding: 4px 0;
}

.nav__links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	background: var(--grad);
	transition: width .3s ease;
}

.nav__links a:hover {
	color: #fff;
}

.nav__links a:hover::after {
	width: 100%;
}

.nav__lang {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.6);
}

.nav__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 6px;
}

.nav__burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: .3s;
}

/* ---------- HERO (B — centrado/editorial) ---------- */
.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background: var(--navy);
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 22, 53, 0.55) 0%, rgba(8, 22, 53, 0.35) 40%, rgba(8, 22, 53, 0.75) 100%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	padding: 0 24px;
	max-width: 900px;
}

.hero__eyebrow {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 26px;
}

.hero h1 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 0.96;
	font-size: clamp(44px, 8.5vw, 108px);
	margin: 0;
}

.hero__sub {
	font-weight: 300;
	font-size: clamp(16px, 2vw, 21px);
	color: rgba(255, 255, 255, 0.8);
	max-width: 540px;
	margin: 24px auto 0;
}

.hero__guide {
	position: absolute;
	left: 50%;
	bottom: 34px;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.hero__guide .label {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.hero__guide .line {
	width: 1px;
	height: 54px;
	background: linear-gradient(to bottom, var(--accent), rgba(255, 255, 255, 0));
	animation: guidePulse 2.4s ease-in-out infinite;
}

@keyframes guidePulse {

	0%,
	100% {
		opacity: .4;
		transform: scaleY(.7);
	}

	50% {
		opacity: 1;
		transform: scaleY(1);
	}
}

/* ---------- SECTION HEADER ---------- */
.shead {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 18px;
}

.shead h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.02;
	font-size: clamp(30px, 5vw, 58px);
	margin: 0 auto;
	max-width: 16ch;
	text-wrap: balance;
}

.shead p {
	font-weight: 300;
	color: var(--muted);
	font-size: clamp(16px, 1.6vw, 19px);
	max-width: 48ch;
	margin: 0 auto;
}

/* ---------- SERVIÇOS (O que fazemos) ---------- */
.servicos {
	background: var(--white);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.serv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
}

.serv {
	padding: clamp(28px, 3vw, 52px) clamp(20px, 3vw, 44px);
	border-bottom: 1px solid var(--line);
	position: relative;
	transition: background .35s ease;
}

.serv:nth-child(odd) {
	border-right: 1px solid var(--line);
}

.serv:hover {
	background: var(--offwhite);
}

.serv__num {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: var(--faint);
}

.serv h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(24px, 3vw, 34px);
	letter-spacing: -0.02em;
	margin: 16px 0 12px;
}

.serv h3 .bar {
	display: block;
	width: 0;
	height: 3px;
	background: var(--grad);
	margin-top: 14px;
	transition: width .4s ease;
}

.serv:hover h3 .bar {
	width: 64px;
}

.serv p {
	font-weight: 300;
	color: var(--muted);
	margin: 0;
	max-width: 42ch;
}

/* ---------- PORTFÓLIO ---------- */
.portfolio {
	background: var(--offwhite);
}

.pf-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(12px, 1.4vw, 22px);
}

.pf-card {
	position: relative;
	display: block;
	aspect-ratio: 4/5;
	overflow: hidden;
	background: var(--navy);
	border-radius: 2px;
}

.pf-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
	filter: saturate(.92) brightness(.94);
}

.pf-card:hover .pf-card__img {
	transform: scale(1.05);
	filter: saturate(1) brightness(.8);
}

.pf-card__ph {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, #0d1f49 0 14px, #0a1a3d 14px 28px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.pf-card__ph span {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.pf-card__grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 22, 53, 0) 45%, rgba(8, 22, 53, 0.85) 100%);
	opacity: .85;
	transition: opacity .4s ease;
}

.pf-card__num {
	position: absolute;
	top: 16px;
	left: 16px;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.85);
	z-index: 2;
}

.pf-card__meta {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 4;
	color: #fff;
	transform: translateY(8px);
	opacity: .92;
	transition: transform .4s ease, opacity .4s ease;
}

.pf-card:hover .pf-card__meta {
	transform: none;
	opacity: 1;
}

.pf-card__name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.pf-card__loc {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 7px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pf-card__loc::before {
	content: "";
	width: 14px;
	height: 1px;
	background: var(--accent);
	display: inline-block;
}

.pf-card__hover {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 22, 53, 0.5);
	opacity: 0;
	transition: opacity .4s ease;
}

.pf-card:hover .pf-card__hover {
	opacity: 1;
}

.pf-card__hover span {
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.65);
	padding: 11px 20px;
	border-radius: 2px;
	display: inline-flex;
	gap: 9px;
	align-items: center;
	transform: translateY(10px);
	transition: transform .4s cubic-bezier(.2, .7, .2, 1), background .3s ease, border-color .3s ease;
}

.pf-card:hover .pf-card__hover span {
	transform: none;
}

.pf-card__hover span::after {
	content: "\2192";
}

/* ---------- MAPA ---------- */
.mapa {
	background: var(--navy);
	color: #fff;
}

.mapa .shead h2 {
	color: #fff;
}

.mapa .shead p {
	color: rgba(255, 255, 255, 0.7);
}

.mapa__wrap {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: clamp(28px, 4vw, 64px);
	align-items: stretch;
}

.mapa__panel {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 3px;
	background:
		radial-gradient(120% 80% at 30% 20%, rgba(238, 47, 78, 0.07), transparent 60%), #06112b;
	aspect-ratio: 3/4;
	overflow: hidden;
}

.mapa__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 8.33% 7.14%;
}

.mapa__shape {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mapa__shape svg {
	height: 88%;
	width: auto;
	opacity: .9;
}

.mapa__node {
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.mapa__dot {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(238, 47, 78, 0.5);
	transition: transform .3s ease, box-shadow .3s ease;
	cursor: default;
}

.mapa__node.hub .mapa__dot {
	width: 20px;
	height: 20px;
	background: var(--grad);
}

.mapa__node.active .mapa__dot,
.mapa__node:hover .mapa__dot {
	transform: scale(1.35);
	box-shadow: 0 0 0 8px rgba(238, 47, 78, 0.18);
}

.mapa__node .tip {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	transform: translateX(-50%);
	white-space: nowrap;
	background: #fff;
	color: var(--navy);
	font-size: 11px;
	letter-spacing: 0.04em;
	padding: 5px 9px;
	border-radius: 2px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
}

.mapa__node.active .tip,
.mapa__node:hover .tip {
	opacity: 1;
}

.mapa__legendlabel {
	position: absolute;
	left: 16px;
	bottom: 14px;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.mapa__list {
	display: flex;
	flex-direction: column;
}

.mapa__row {
	display: grid;
	grid-template-columns: 34px 1fr auto;
	gap: 14px;
	align-items: baseline;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	cursor: default;
	transition: padding-left .25s ease;
}

.mapa__row:hover {
	padding-left: 8px;
}

.mapa__row:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mapa__row .rn {
	font-size: 12px;
	color: var(--accent);
}

.mapa__row .rname {
	font-weight: 600;
	font-size: 15px;
}

.mapa__row .rloc {
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

/* ---------- SOBRE ---------- */
.sobre {
	background: var(--white);
}

.sobre__wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 80px);
	align-items: center;
}

.sobre__img {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: 2px;
	overflow: hidden;
	background: var(--navy);
}

.sobre__img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.95);
}

.sobre__txt h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(28px, 4vw, 48px);
	letter-spacing: -0.025em;
	line-height: 1.04;
	margin: 18px 0 24px;
}

.sobre__txt p {
	font-weight: 300;
	color: var(--muted);
	font-size: clamp(15px, 1.5vw, 18px);
	margin: 0 0 18px;
	max-width: 50ch;
}

.sobre__stats {
	display: flex;
	gap: 48px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.sobre__stat .n {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: clamp(30px, 3.5vw, 46px);
	letter-spacing: -0.02em;
}

.sobre__stat .l {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--faint);
	margin-top: 4px;
}

/* ---------- CONTACTOS ---------- */
.contactos {
	background: var(--navy);
	color: #fff;
}

.contactos .shead h2 {
	color: #fff;
}

.contactos__wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 80px);
}

.cinfo {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cinfo__item .l {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px;
}

.cinfo__item .v {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: clamp(20px, 2.4vw, 28px);
	letter-spacing: -0.01em;
}

.cinfo__item a.v:hover {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cform {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cform .field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cform label {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.cform input,
.cform textarea {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	font-family: 'Manrope';
	font-size: 16px;
	font-weight: 300;
	padding: 10px 0;
	outline: none;
	transition: border-color .3s ease;
}

.cform input:focus,
.cform textarea:focus {
	border-bottom-color: var(--accent);
}

.cform textarea {
	resize: none;
	min-height: 80px;
}

.cform button {
	align-self: flex-start;
	margin-top: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: var(--grad);
	border: 0;
	border-radius: 2px;
	padding: 15px 30px;
	cursor: pointer;
	transition: transform .25s ease, filter .25s ease;
}

.cform button:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

/* ---------- FOOTER ---------- */
.footer {
	background: #050d22;
	color: rgba(255, 255, 255, 0.65);
	padding: 64px var(--pad) 40px;
}

.footer__top {
	max-width: var(--maxw);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 26px;
	color: #fff;
	letter-spacing: -0.02em;
}

.footer__tag {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 10px;
}

.footer__nav {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
}

.footer__nav a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.footer__nav a:hover {
	color: #fff;
}

.footer__bottom {
	max-width: var(--maxw);
	margin: 28px auto 0;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px) {
	.nav__links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		background: rgba(8, 22, 53, 0.97);
		backdrop-filter: blur(10px);
		padding: 24px var(--pad);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.nav.open .nav__links {
		display: flex;
	}

	.nav.open {
		background: rgba(8, 22, 53, 0.97);
		backdrop-filter: blur(10px);
	}

	.nav__burger {
		display: flex;
	}

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

	.serv:nth-child(odd) {
		border-right: 0;
	}

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

	.mapa__wrap,
	.sobre__wrap,
	.contactos__wrap {
		grid-template-columns: 1fr;
	}

	.mapa__panel {
		max-width: 420px;
		margin: 0 auto;
		width: 100%;
	}

	.sobre__img {
		max-width: 460px;
	}
}

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

	.hero h1 {
		font-size: clamp(40px, 13vw, 64px);
	}
}

/* ---------- BOTÃO GRADIENTE ---------- */
.pf-more {
	display: flex;
	justify-content: center;
	margin-top: clamp(34px, 5vw, 60px);
}

.btn-grad {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: var(--grad);
	padding: 18px 36px;
	border-radius: 2px;
	transition: transform .25s ease, filter .25s ease;
}

.btn-grad::after {
	content: "\2192";
	font-size: 15px;
}

.btn-grad:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

/* ---------- MAPA REAL (Leaflet) ---------- */
.mapa__map {
	height: clamp(420px, 62vh, 640px);
	width: 100%;
	margin-top: clamp(28px, 5vw, 56px);
	background: #0a1a3d;
	z-index: 1;
}

.leaflet-container {
	font-family: 'Manrope', sans-serif;
	background: #0a1a3d;
}

.leaflet-control-zoom a {
	border-radius: 0 !important;
	color: var(--navy) !important;
}

.mk__d {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--grad);
	box-shadow: 0 0 0 4px rgba(238, 47, 78, 0.22), 0 2px 6px rgba(0, 0, 0, .4);
	transition: transform .2s ease;
	cursor: pointer;
}

.leaflet-marker-icon:hover .mk__d {
	transform: scale(1.28);
}

.leaflet-popup-content-wrapper {
	border-radius: 3px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(8, 22, 53, .3);
}

.leaflet-popup-content {
	margin: 0 !important;
	width: 232px !important;
}

.leaflet-popup-tip {
	background: #fff;
}

.mpop__img {
	display: block;
	width: 100%;
	height: 132px;
	object-fit: cover;
	background: repeating-linear-gradient(135deg, #0d1f49 0 14px, #0a1a3d 14px 28px);
}

.mpop__b {
	padding: 14px 16px 16px;
}

.mpop__n {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.01em;
	color: var(--navy);
	line-height: 1.15;
}

.mpop__l {
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--faint);
	margin-top: 7px;
}

.mpop__link {
	display: inline-block;
	margin-top: 13px;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #EE2F4E;
	font-weight: 500;
}

.mpop__link:hover {
	text-decoration: underline;
}

/* ---------- CONTACTOS HORIZONTAL ---------- */
.contactos__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.contactos__row .cinfo__item {
	padding: 6px clamp(24px, 3.5vw, 52px);
}

.contactos__row .cinfo__item:first-child {
	padding-left: 0;
}

.contactos__row .cinfo__item:last-child {
	padding-right: 0;
}

.contactos__row .cinfo__item+.cinfo__item {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.cinfo__item .v.v--addr {
	font-size: clamp(16px, 1.5vw, 19px);
	font-weight: 500;
	line-height: 1.4;
}

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

	.contactos__row .cinfo__item {
		padding: 24px 0;
	}

	.contactos__row .cinfo__item:first-child {
		padding-top: 0;
	}

	.contactos__row .cinfo__item+.cinfo__item {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}
}

/* ---------- FOOTER SOCIAL ---------- */
.footer__social {
	display: flex;
	gap: 13px;
	align-items: center;
}

.footer__social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.72);
	transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease;
}

.footer__social a:hover {
	color: #fff;
	border-color: transparent;
	background: var(--grad);
	transform: translateY(-2px);
}


/* ---------- PÁGINAS INTERNAS ---------- */
.page-hero {
	background: var(--navy);
	color: #fff;
	padding: clamp(128px, 18vw, 210px) 0 clamp(70px, 9vw, 110px);
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 18% 22%, rgba(238, 47, 78, .18), transparent 30%), linear-gradient(180deg, rgba(8, 22, 53, .15), rgba(8, 22, 53, .95));
	pointer-events: none;
}

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

.page-hero__k {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 18px;
}

.page-hero h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(30px, 5vw, 48px);
	line-height: .96;
	letter-spacing: -.045em;
	margin: 0;
	max-width: 900px;
}

.page-hero p {
	font-weight: 300;
	color: rgba(255, 255, 255, .74);
	font-size: clamp(17px, 2vw, 22px);
	max-width: 560px;
	margin: 24px 0 0;
}

.page-nav-spacer .nav {
	background: rgba(8, 22, 53, .92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.portfolio-page {
	background: var(--offwhite);
}

.portfolio-page .pf-grid {
	padding-top: clamp(32px, 5vw, 60px);
}

.project-hero {
	min-height: 58vh;
	background: var(--navy);
	color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: clamp(89px, 13vw, 100px) 0 clamp(35px, 6vw, 50px);
}

.project-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.96) brightness(.65);
}

.project-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 22, 53, .35), rgba(8, 22, 53, .92));
}

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

.project-hero__num {
	font-family: 'Montserrat', sans-serif;
	color: var(--accent);
	letter-spacing: .2em;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 18px;
}

.project-hero h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(40px, 6vw, 80px);
	line-height: .97;
	letter-spacing: -.04em;
	margin: 0;
	max-width: 980px;
}

.project-hero__loc {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
	font-size: 12px;
	margin-top: 22px;
}

.project-intro {
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.project-intro__row {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: flex-end;
}

.project-intro p {
	font-size: clamp(17px, 1.8vw, 21px);
	font-weight: 300;
	color: var(--muted);
	max-width: 680px;
	margin: 0;
}

.project-gallery {
	background: var(--offwhite);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(12px, 1.5vw, 22px);
}

.gallery-item {
	display: block;
	position: relative;
	background: var(--navy);
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 2px;
}

.gallery-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.gallery-item:hover img {
	transform: scale(1.04);
	filter: brightness(.82);
}

.gallery-item::after {
	content: "Ver foto";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -40%);
	opacity: 0;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .7);
	padding: 10px 16px;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	transition: .3s;
}

.gallery-item:hover::after {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.project-pager {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--line);
	padding-top: 34px;
	margin-top: clamp(36px, 5vw, 64px);
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
}

.project-pager a:hover {
	color: var(--accent);
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(5, 13, 34, .94);
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.lightbox.open {
	display: flex;
}

.lightbox img {
	max-width: min(1100px, 92vw);
	max-height: 88vh;
	object-fit: contain;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.lightbox button {
	position: absolute;
	top: 22px;
	right: 24px;
	border: 1px solid rgba(255, 255, 255, .35);
	background: transparent;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 26px;
	cursor: pointer;
}

@media(max-width:900px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.project-intro__row {
		display: block
	}

	.project-intro .btn-grad {
		margin-top: 28px
	}
}

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

	.project-pager {
		flex-direction: column
	}

	.page-hero h1,
	.project-hero h1 {
		font-size: clamp(38px, 13vw, 62px)
	}
}