/* ==========================================================================
   Passion Group — branding oficial do grupo (app passiongroup)
   Sistema de harmonia:
   · VERMELHO (#550216/#650119) = superfícies escuras / identidade
   · NAVY (#031428) = tinta dos títulos + elementos interativos (botões, links)
   · Um único tratamento para TODAS as secções escuras (gradiente da marca)
   · Fontes self-hosted da app: Qeilab (display) + Barlow (corpo)
   ========================================================================== */

@font-face {
	font-family: 'Qeilab';
	src: url('../fonts/Qeilab.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Barlow';
	src: url('../fonts/Barlow.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--pg-primary: #550216;
	--pg-secondary: #650119;
	--pg-wine-dark: #31000d;
	--pg-navy: #031428;
	--pg-navy-2: #0a2440;
	--pg-ink: #3a3d40;
	--pg-white: #ffffff;
	--pg-gray: #f7f5f5;
	--pg-line: #e9e4e5;
	--pg-muted: #8a8f96;
	--pg-display: 'Qeilab', 'Georgia', serif;
	--pg-body: 'Barlow', sans-serif;
	--pg-header-h: 72px;
	/* hairlines e texto sobre escuro — sempre os mesmos */
	--pg-hairline-dark: rgba(255, 255, 255, 0.14);
	--pg-text-on-dark: rgba(255, 255, 255, 0.82);
}

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

html { scroll-behavior: smooth; }

body {
	font-family: var(--pg-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--pg-ink);
	background: var(--pg-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: inherit; }

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

.pg-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.pg-center { text-align: center; }

/* tinta dos títulos nas secções claras = navy; nas escuras = branco */
.pg-display {
	font-family: var(--pg-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 1.04;
	color: var(--pg-navy);
}

/* ÚNICO tratamento escuro — gradiente granulado da marca (da app) */
.pg-brand-dark,
.pg-hero,
.pg-manifesto,
.pg-maxfinance,
.pg-valores,
.pg-cta,
.pg-page-hero,
.pg-footer {
	background-color: var(--pg-wine-dark);
	background-image:
		linear-gradient(150deg, rgba(49, 0, 13, 0.72), rgba(85, 2, 22, 0.42) 45%, rgba(3, 20, 40, 0.55)),
		url('../img/brand-bg.webp');
	background-size: cover, cover;
	background-position: center, center;
	background-repeat: no-repeat;
	color: var(--pg-text-on-dark);
}

.pg-skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--pg-navy); color: #fff; padding: 10px 16px; z-index: 999;
}
.pg-skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Header — vinho escuro, wordmark branco, CTA claro
   -------------------------------------------------------------------------- */
.pg-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	background: rgba(49, 0, 13, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: box-shadow 0.25s ease, background 0.25s ease;
}
.pg-header.pg-scrolled {
	background: rgba(49, 0, 13, 0.98);
	box-shadow: 0 6px 24px rgba(20, 0, 6, 0.4);
}

.pg-header-inner {
	max-width: 1240px; margin: 0 auto; padding: 0 24px;
	height: var(--pg-header-h);
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.pg-logo { text-decoration: none; }
.pg-logo-text {
	font-family: var(--pg-body);
	font-size: 22px; letter-spacing: 0.04em; color: #fff;
	font-weight: 300; text-transform: uppercase; white-space: nowrap;
}
.pg-logo-text strong { font-weight: 800; }

.pg-nav-list {
	display: flex; gap: 8px; list-style: none; align-items: center;
}
.pg-nav-list a {
	display: inline-block; padding: 8px 14px;
	text-decoration: none; font-weight: 600; font-size: 14px;
	letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85);
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.pg-nav-list a:hover { border-bottom-color: rgba(255,255,255,0.9); color: #fff; }
.pg-nav-list li:last-child a {
	background: #fff; color: var(--pg-navy); border: 0;
	transition: background 0.2s ease;
}
.pg-nav-list li:last-child a:hover { background: rgba(255, 255, 255, 0.86); }

.pg-burger {
	display: none; background: none; border: 0; cursor: pointer;
	width: 44px; height: 44px; position: relative; flex: 0 0 auto;
}
.pg-burger span {
	position: absolute; left: 10px; right: 10px; height: 2px;
	background: #fff; transition: transform 0.25s ease, opacity 0.25s ease;
}
.pg-burger span:nth-child(1) { top: 15px; }
.pg-burger span:nth-child(2) { top: 21px; }
.pg-burger span:nth-child(3) { top: 27px; }
.pg-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pg-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pg-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero — título + vídeo emoldurado (frame 16:9 completo)
   -------------------------------------------------------------------------- */
.pg-hero {
	padding: calc(var(--pg-header-h) + 96px) 0 112px;
	text-align: center;
}
.pg-hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 1100px; margin: 0 auto; }
.pg-hero-kicker {
	color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 700;
	letter-spacing: 0.45em; text-transform: uppercase; margin-bottom: 24px;
}
.pg-hero-kicker::before, .pg-hero-kicker::after {
	content: ""; display: inline-block; vertical-align: middle;
	width: 36px; height: 1px; background: rgba(255,255,255,0.45); margin: 0 14px;
}
.pg-hero-title { color: #fff; font-size: clamp(40px, 6.5vw, 96px); }
.pg-hero-title span { display: block; }
/* Ex-outline: mesmo tipo de letra (Qeilab), contraste por tom — sem stroke.
   O stroke fica reservado só aos números dos cards (.pg-dep-num). */
.pg-outline, .pg-outline-light {
	color: rgba(255, 255, 255, 0.55);
}
.pg-hero-sub {
	margin-top: 24px; color: var(--pg-text-on-dark);
	font-size: 18px; font-weight: 500; letter-spacing: 0.02em;
}
.pg-hero-actions {
	margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.pg-hero-media {
	max-width: 920px; margin: 64px auto 0; padding: 0 24px;
}
.pg-hero-media video {
	display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
	object-position: center;
	background: #000;
	border: 1px solid var(--pg-hairline-dark);
	box-shadow: 0 30px 80px rgba(20, 0, 6, 0.55);
}

/* --------------------------------------------------------------------------
   Marquee — a única faixa navy: eco dos botões e da tinta dos títulos
   -------------------------------------------------------------------------- */
.pg-marquee {
	background: var(--pg-navy); color: #fff;
	overflow: hidden; white-space: nowrap;
	padding: 17px 0;
}
.pg-marquee-track {
	display: inline-block;
	font-family: var(--pg-display); font-size: 16px; letter-spacing: 0.2em;
	animation: pg-marquee 30s linear infinite;
}
.pg-marquee-track span:nth-child(even) {
	color: rgba(255, 255, 255, 0.5);
}
@keyframes pg-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Secções — ritmo e escala consistentes
   -------------------------------------------------------------------------- */
.pg-section { padding: 112px 0; }

.pg-kicker {
	font-size: 13px; font-weight: 700; letter-spacing: 0.35em;
	text-transform: uppercase; color: var(--pg-muted); margin-bottom: 16px;
}
.pg-kicker::before {
	content: ""; display: inline-block; vertical-align: middle;
	width: 28px; height: 2px; background: var(--pg-navy); margin-right: 12px;
}
.pg-kicker-light { color: rgba(255,255,255,0.6); }
.pg-valores .pg-kicker::before, .pg-page-hero .pg-kicker::before, .pg-manifesto .pg-kicker::before { background: rgba(255,255,255,0.7); }

.pg-section-title {
	font-size: clamp(36px, 5vw, 64px);
	margin-bottom: 48px;
}

/* --------------------------------------------------------------------------
   Departamentos
   -------------------------------------------------------------------------- */
.pg-dep-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
	background: var(--pg-line); border: 1px solid var(--pg-line);
}
.pg-dep-card {
	background: var(--pg-white); padding: 40px 28px 48px; position: relative;
	transition: background 0.3s ease;
}
.pg-dep-num {
	display: block; font-size: 60px; color: transparent;
	-webkit-text-stroke: 1.5px #c3c9d0; margin-bottom: 24px;
	transition: -webkit-text-stroke-color 0.3s ease;
}
.pg-dep-card h3 {
	font-family: var(--pg-body); font-weight: 800; font-size: 16px;
	letter-spacing: 0.08em; text-transform: uppercase; color: var(--pg-navy);
	margin-bottom: 12px;
	transition: color 0.3s ease;
}
.pg-dep-card p { font-size: 15px; transition: color 0.3s ease; }
.pg-dep-card:hover { background: linear-gradient(150deg, var(--pg-navy-2), var(--pg-navy) 60%); }
.pg-dep-card:hover .pg-dep-num { -webkit-text-stroke-color: rgba(255,255,255,0.8); }
.pg-dep-card:hover h3 { color: #fff; }
.pg-dep-card:hover p { color: rgba(255,255,255,0.78); }

/* --------------------------------------------------------------------------
   Manifesto
   -------------------------------------------------------------------------- */
.pg-manifesto { position: relative; overflow: hidden; }
.pg-manifesto::after {
	content: ""; position: absolute; right: -70px; bottom: -50px;
	width: 400px; height: 400px;
	background: url('../img/gorilla.png') no-repeat center / contain;
	filter: invert(1); opacity: 0.06; pointer-events: none;
}
.pg-manifesto .pg-wrap {
	display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start;
	position: relative; z-index: 1;
}
.pg-manifesto-title { color: #fff; font-size: clamp(38px, 5.5vw, 76px); }
.pg-manifesto-body p { font-size: 19px; margin-bottom: 28px; max-width: 56ch; }
.pg-manifesto-body strong { color: #fff; }
.pg-manifesto-lines { list-style: none; }
.pg-manifesto-lines li {
	padding: 16px 0; border-top: 1px solid var(--pg-hairline-dark); font-size: 17px;
	transition: padding-left 0.25s ease;
}
.pg-manifesto-lines li:hover { padding-left: 10px; }
.pg-manifesto-lines li:last-child { border-bottom: 1px solid var(--pg-hairline-dark); }
.pg-manifesto-lines strong { color: #fff; }

/* --------------------------------------------------------------------------
   Grupo (lojas)
   -------------------------------------------------------------------------- */
.pg-grupo { background: var(--pg-gray); }
.pg-grupo-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.pg-store-card {
	background: var(--pg-white); text-decoration: none; display: block;
	border: 1px solid var(--pg-line); position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pg-store-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(3, 20, 40, 0.12);
	border-color: #ccd3dc;
}
.pg-store-photo {
	aspect-ratio: 16 / 9; overflow: hidden; background: #fff;
	display: flex; align-items: center; justify-content: center;
	padding: 30px; border-bottom: 1px solid var(--pg-line);
}
.pg-store-photo img {
	width: auto; max-width: 100%; height: 100%; object-fit: contain;
	transition: transform 0.4s ease;
}
.pg-store-card:hover .pg-store-photo img { transform: scale(1.04); }
.pg-store-info { padding: 26px 28px 30px; }
.pg-store-info h3 {
	font-family: var(--pg-body); font-weight: 800; text-transform: uppercase;
	letter-spacing: 0.06em; font-size: 17px; color: var(--pg-navy); margin-bottom: 8px;
}
.pg-store-info p { font-size: 15px; }
.pg-store-more {
	display: inline-block; margin-top: 16px; font-weight: 700; font-size: 13px;
	letter-spacing: 0.15em; text-transform: uppercase; color: var(--pg-navy);
	border-bottom: 2px solid rgba(3, 20, 40, 0.25);
	padding-bottom: 2px;
	transition: border-color 0.25s ease;
}
.pg-store-card:hover .pg-store-more { border-color: var(--pg-navy); }

/* --------------------------------------------------------------------------
   MaxFinance — mesma superfície escura da marca
   -------------------------------------------------------------------------- */
.pg-maxfinance-inner {
	display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
.pg-maxfinance-logo { max-width: 340px; width: 100%; opacity: 0.98; }
.pg-maxfinance-copy h2 {
	font-family: var(--pg-display); font-weight: 400; font-size: clamp(28px, 3.2vw, 42px);
	text-transform: none; letter-spacing: 0.01em;
	color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.pg-maxfinance-copy em { font-style: normal; opacity: 0.65; }
.pg-maxfinance-copy p { margin-bottom: 28px; font-size: 18px; max-width: 52ch; }
.pg-maxfinance-copy strong { color: #fff; }

/* --------------------------------------------------------------------------
   Quotes
   -------------------------------------------------------------------------- */
.pg-quotes .pg-wrap { display: grid; gap: 64px; }
.pg-quote { max-width: 760px; position: relative; padding-top: 36px; }
.pg-quote::before {
	content: "“"; position: absolute; top: -20px; left: -8px;
	font-family: var(--pg-display); font-size: 120px; line-height: 1;
	color: #e9edf2; z-index: -1;
}
.pg-quote-right { justify-self: end; text-align: right; }
.pg-quote-right::before { left: auto; right: -8px; }
.pg-quote p {
	font-family: var(--pg-display);
	font-size: clamp(22px, 2.5vw, 32px); line-height: 1.28; color: var(--pg-navy);
	margin-bottom: 14px;
}
.pg-quote cite {
	font-family: var(--pg-body); font-style: normal; font-weight: 700;
	font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pg-muted);
}

/* --------------------------------------------------------------------------
   Valores
   -------------------------------------------------------------------------- */
.pg-valores .pg-kicker { max-width: 560px; }
.pg-valores-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
	background: var(--pg-hairline-dark); border: 1px solid var(--pg-hairline-dark); margin-top: 40px;
}
.pg-valor {
	background: rgba(20, 0, 8, 0.42); padding: 44px 32px;
	position: relative;
}
.pg-valor::before {
	content: ""; position: absolute; top: 0; left: 32px; width: 40px; height: 3px;
	background: rgba(255,255,255,0.85); transition: width 0.3s ease;
}
.pg-valor:hover::before { width: 88px; }
.pg-valor h3 { color: #fff; font-size: 23px; margin: 14px 0; }
.pg-valor p { color: var(--pg-text-on-dark); font-size: 16px; }

/* --------------------------------------------------------------------------
   Momentos — fotografia em p/b, legendas neutras
   -------------------------------------------------------------------------- */
.pg-momentos-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
	padding: 0 8px;
}
.pg-momento {
	position: relative; overflow: hidden; aspect-ratio: 4 / 3; display: block;
	background: #0b0d11;
}
.pg-momento:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.pg-momento img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(1); transition: transform 0.45s ease, filter 0.45s ease;
}
.pg-momento:hover img { transform: scale(1.05); filter: grayscale(0); }
.pg-momento-caption {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 48px 20px 18px;
	background: linear-gradient(180deg, transparent, rgba(8, 10, 14, 0.9));
	color: #fff; display: flex; flex-direction: column;
	transform: translateY(6px); opacity: 0.94;
	transition: transform 0.35s ease, opacity 0.35s ease;
}
.pg-momento:hover .pg-momento-caption { transform: none; opacity: 1; }
.pg-momento-caption strong {
	font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em;
}
.pg-momento-caption em { font-style: normal; font-size: 12px; opacity: 0.7; letter-spacing: 0.15em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Equipa
   -------------------------------------------------------------------------- */
.pg-team-strip {
	display: flex; gap: 20px; overflow-x: auto; padding: 8px 24px 24px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.pg-team-strip::-webkit-scrollbar { height: 8px; }
.pg-team-strip::-webkit-scrollbar-thumb { background: #cdd2d8; }

.pg-team-card {
	position: relative; flex: 0 0 240px; scroll-snap-align: start;
}
.pg-team-card img {
	width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
	filter: grayscale(1); transition: filter 0.35s ease;
	background: var(--pg-gray);
}
.pg-team-card:hover img { filter: grayscale(0); }
.pg-team-card figcaption { padding: 14px 2px; }
.pg-team-card figcaption strong {
	display: block; text-transform: uppercase; letter-spacing: 0.08em;
	font-size: 14px; color: var(--pg-navy);
}
.pg-team-card figcaption span { font-size: 13px; color: var(--pg-muted); }

.pg-equipa-teaser .pg-center { margin-top: 32px; }

.pg-team-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.pg-team-grid .pg-team-card { flex: none; }

/* --------------------------------------------------------------------------
   Página interna (hero pequeno)
   -------------------------------------------------------------------------- */
.pg-page-hero {
	padding: calc(var(--pg-header-h) + 88px) 0 88px;
}
.pg-page-title { color: #fff; font-size: clamp(40px, 6.5vw, 88px); }
.pg-page-sub { margin-top: 18px; color: var(--pg-text-on-dark); font-size: 18px; }
.pg-page-hero .pg-kicker { color: rgba(255,255,255,0.55); }

/* --------------------------------------------------------------------------
   Recrutamento — página /recrutamento/ (cards para os formulários externos)
   -------------------------------------------------------------------------- */
.pg-recruta { background: var(--pg-gray); }
.pg-recruta-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pg-recruta-card {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column;
	background: var(--pg-white); text-decoration: none;
	border: 1px solid var(--pg-line); padding: 42px 34px 34px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pg-recruta-card::before {
	content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 46px;
	background: var(--pg-navy); transition: width 0.35s ease;
}
.pg-recruta-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 50px rgba(3, 20, 40, 0.14);
	border-color: #cdd5df;
}
.pg-recruta-card:hover::before { width: 100%; }
.pg-recruta-index {
	position: absolute; right: 16px; bottom: -14px;
	font-size: 104px; line-height: 1; color: var(--pg-navy);
	opacity: 0.05; pointer-events: none; transition: opacity 0.3s ease;
}
.pg-recruta-card:hover .pg-recruta-index { opacity: 0.09; }
.pg-recruta-icon {
	position: relative; z-index: 1;
	display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; margin-bottom: 26px; flex: 0 0 auto;
	border: 1px solid var(--pg-line); border-radius: 50%;
	background: var(--pg-gray); color: var(--pg-navy);
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.pg-recruta-icon svg { width: 26px; height: 26px; }
.pg-recruta-card:hover .pg-recruta-icon {
	background: var(--pg-navy); color: #fff; border-color: var(--pg-navy);
}
.pg-recruta-card h3 {
	position: relative; z-index: 1;
	font-family: var(--pg-body); font-weight: 800; font-size: 20px;
	letter-spacing: 0.01em; color: var(--pg-navy); margin-bottom: 10px;
}
.pg-recruta-card p { position: relative; z-index: 1; font-size: 15px; margin-bottom: 26px; }
.pg-recruta-more {
	position: relative; z-index: 1; margin-top: auto; align-self: flex-start;
	display: inline-flex; align-items: center; gap: 9px;
	font-weight: 700; font-size: 13px; letter-spacing: 0.15em;
	text-transform: uppercase; color: var(--pg-navy);
}
.pg-recruta-more svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.pg-recruta-card:hover .pg-recruta-more svg { transform: translateX(6px); }

/* --------------------------------------------------------------------------
   CTA / botões
   -------------------------------------------------------------------------- */
.pg-cta { padding: 132px 0; }
.pg-cta-mark { width: 96px; margin: 0 auto 30px; }
.pg-cta-title { color: #fff; font-size: clamp(38px, 6vw, 88px); margin-bottom: 22px; }
.pg-cta p { color: var(--pg-text-on-dark); margin-bottom: 34px; font-size: 18px; }

/* botões: navy nas secções claras; branco/ghost nas escuras */
.pg-btn {
	display: inline-block; padding: 16px 36px;
	background: var(--pg-navy); color: #fff; text-decoration: none;
	font-weight: 700; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase;
	border: 2px solid var(--pg-navy); text-align: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pg-btn:hover { background: transparent; color: var(--pg-navy); }
.pg-btn-light { background: #fff; color: var(--pg-navy); border-color: #fff; }
.pg-btn-light:hover { background: transparent; color: #fff; }
.pg-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.pg-btn-ghost:hover { background: #fff; color: var(--pg-navy); border-color: #fff; }

/* --------------------------------------------------------------------------
   Prose (posts genéricos)
   -------------------------------------------------------------------------- */
.pg-prose h2, .pg-prose h3 { color: var(--pg-navy); margin: 32px 0 12px; }
.pg-prose p { margin-bottom: 18px; }
.pg-prose a { color: var(--pg-navy-2); }
.pg-entry-thumb { margin-bottom: 24px; }

/* --------------------------------------------------------------------------
   Footer — mesma superfície da marca, mais fundo
   -------------------------------------------------------------------------- */
.pg-footer {
	background-image:
		linear-gradient(160deg, rgba(20, 0, 6, 0.55), rgba(20, 0, 6, 0.75)),
		url('../img/brand-bg.webp');
}
.pg-footer a { color: #fff; text-decoration: none; }
.pg-footer a:hover { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.7); }

.pg-footer-top {
	max-width: 1240px; margin: 0 auto; padding: 88px 24px 56px;
	display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
}
.pg-footer-mark { width: 116px; margin-bottom: 22px; }
.pg-footer-claim {
	font-family: var(--pg-display); color: #fff; font-size: 24px; line-height: 1.08;
	text-transform: uppercase;
}
.pg-footer-app {
	display: inline-block; margin-top: 22px; padding: 12px 20px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.pg-footer .pg-footer-app:hover {
	background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}
.pg-footer-cols {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 48px;
}
.pg-footer-col h4 {
	color: #fff; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
	margin-bottom: 14px; padding-bottom: 10px; position: relative;
}
.pg-footer-col h4::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px;
	background: rgba(255, 255, 255, 0.5);
}
.pg-footer-col p { font-size: 15px; margin-bottom: 6px; }
.pg-footer-line { color: rgba(255, 255, 255, 0.55); }

.pg-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.10);
	max-width: 1240px; margin: 0 auto; padding: 24px;
	display: flex; justify-content: space-between; gap: 16px; font-size: 12px;
	letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}

/* --------------------------------------------------------------------------
   Animações de entrada
   -------------------------------------------------------------------------- */
.pg-reveal {
	opacity: 0; transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.pg-reveal.pg-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.pg-reveal { opacity: 1; transform: none; transition: none; }
	.pg-marquee-track { animation: none; }
	html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsivo — tablet (721–1024)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.pg-section { padding: 92px 0; }
	.pg-section-title { margin-bottom: 40px; }

	.pg-hero { padding: calc(var(--pg-header-h) + 68px) 0 88px; }
	.pg-hero-media { max-width: 760px; margin-top: 52px; }

	.pg-dep-grid { grid-template-columns: repeat(2, 1fr); }
	.pg-dep-card { padding: 34px 26px 40px; }

	.pg-manifesto .pg-wrap, .pg-maxfinance-inner { grid-template-columns: 1fr; gap: 40px; }
	.pg-manifesto::after { width: 300px; height: 300px; opacity: 0.05; }

	.pg-momentos-grid { grid-template-columns: repeat(2, 1fr); }
	.pg-momento:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 9; }

	.pg-team-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
	.pg-team-card { flex: 0 0 220px; }

	.pg-quote { max-width: 640px; }

	.pg-footer-top { grid-template-columns: 1fr; gap: 48px; padding: 72px 24px 48px; }
	.pg-maxfinance-logo { max-width: 270px; }
}

/* --------------------------------------------------------------------------
   Responsivo — mobile (≤720)
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
	:root { --pg-header-h: 60px; }

	body { font-size: 16px; }

	.pg-wrap { padding: 0 18px; }
	.pg-header-inner { padding: 0 18px; }
	.pg-logo-text { font-size: 18px; }

	.pg-section { padding: 68px 0; }
	.pg-section-title { margin-bottom: 32px; }

	.pg-burger { display: block; }
	.pg-nav {
		position: fixed; inset: var(--pg-header-h) 0 auto 0;
		background: rgba(49, 0, 13, 0.98);
		border-bottom: 1px solid rgba(255,255,255,0.10);
		display: none; padding: 8px 0 20px;
		box-shadow: 0 20px 40px rgba(20, 0, 6, 0.5);
	}
	.pg-nav.pg-open { display: block; }
	.pg-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
	.pg-nav-list a { display: block; padding: 15px 22px; border-bottom: 0; font-size: 15px; }
	.pg-nav-list li:last-child a { margin: 12px 22px 0; text-align: center; }

	.pg-hero { padding: calc(var(--pg-header-h) + 48px) 0 64px; }
	.pg-hero-content { padding: 0 18px; }
	.pg-hero-title { font-size: clamp(30px, 8.6vw, 48px); }
	.pg-hero-kicker { font-size: 11px; letter-spacing: 0.3em; margin-bottom: 16px; }
	.pg-hero-kicker::before, .pg-hero-kicker::after { width: 22px; margin: 0 10px; }
	.pg-hero-sub { font-size: 15px; margin-top: 16px; max-width: 34ch; margin-left: auto; margin-right: auto; }
	.pg-hero-actions { margin-top: 26px; flex-direction: column; align-items: center; gap: 12px; }
	.pg-hero-actions .pg-btn { width: auto; min-width: 250px; padding: 14px 28px; }
	.pg-hero-media { margin-top: 36px; padding: 0 12px; }
	.pg-hero-media video { box-shadow: 0 20px 48px rgba(20, 0, 6, 0.5); }

	.pg-marquee { padding: 13px 0; }
	.pg-marquee-track { font-size: 13px; }

	.pg-dep-grid, .pg-grupo-grid { grid-template-columns: 1fr; }
	.pg-dep-card { padding: 28px 22px 34px; }
	.pg-dep-num { font-size: 46px; margin-bottom: 16px; }

	.pg-momentos-grid { grid-template-columns: 1fr; gap: 6px; padding: 0 6px; }
	.pg-momento { aspect-ratio: 16 / 10; }
	.pg-momento:first-child { grid-column: auto; aspect-ratio: 16 / 10; }
	.pg-momento-caption { padding: 36px 16px 14px; transform: none; opacity: 1; }

	.pg-manifesto::after { display: none; }
	.pg-manifesto-body p { font-size: 17px; }
	.pg-manifesto-lines li { font-size: 15.5px; }

	.pg-store-info { padding: 20px 18px 24px; }
	.pg-store-photo { padding: 20px; }

	.pg-recruta-grid { grid-template-columns: 1fr; }
	.pg-recruta-card { padding: 32px 24px 28px; }
	.pg-recruta-index { font-size: 84px; bottom: -10px; }

	.pg-maxfinance-logo { max-width: 210px; margin: 0 auto; }
	.pg-maxfinance-inner { text-align: center; }
	.pg-maxfinance-copy p { font-size: 16px; margin-left: auto; margin-right: auto; }

	.pg-quotes .pg-wrap { gap: 44px; }
	.pg-quote { padding-top: 26px; }
	.pg-quote::before { font-size: 84px; top: -10px; }
	.pg-quote-right { justify-self: start; text-align: left; }
	.pg-quote-right::before { right: auto; left: -8px; }

	.pg-valores-grid { grid-template-columns: 1fr; }
	.pg-valor { padding: 32px 22px; }
	.pg-valor::before { left: 22px; }

	.pg-team-strip { gap: 14px; padding: 8px 18px 20px; }
	.pg-team-card { flex: 0 0 70vw; max-width: 300px; scroll-snap-align: center; }
	.pg-team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.pg-team-grid .pg-team-card figcaption strong { font-size: 13px; }
	.pg-team-grid .pg-team-card figcaption span { font-size: 12px; }

	.pg-page-hero { padding: calc(var(--pg-header-h) + 56px) 0 56px; }
	.pg-page-sub { font-size: 15px; }

	.pg-cta { padding: 92px 0; }
	.pg-cta-mark { width: 80px; margin-bottom: 22px; }
	.pg-cta-title { font-size: clamp(28px, 8vw, 44px); }
	.pg-cta p { font-size: 16px; }
	.pg-btn { padding: 15px 28px; font-size: 13px; }

	.pg-footer-top { padding: 60px 18px 36px; }
	.pg-footer-mark { width: 92px; }
	.pg-footer-cols { grid-template-columns: 1fr; gap: 26px; }
	.pg-footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 18px; }
}

/* mobile pequeno */
@media (max-width: 420px) {
	.pg-hero-title { font-size: clamp(25px, 8.2vw, 33px); }
	.pg-hero-media { padding: 0 8px; }
	.pg-section-title { font-size: 30px; }
	.pg-cta-title { font-size: 30px; }
	.pg-page-title { font-size: 36px; }
	.pg-manifesto-title { font-size: 34px; }
	.pg-team-grid { grid-template-columns: 1fr; }
	.pg-team-grid .pg-team-card { max-width: none; }
}
