/* =====================================================================
   PÁGINA INSTITUCIONAL — desktop (node 1064:524).
   Seções com "stage" escalado por largura (mesma técnica do hero da home).
   Mobile (≤767px) tratado mais abaixo neste arquivo.
   ===================================================================== */

.inst { overflow-x: clip; }

/* ===================== HERO ===================== */
/* node 1064:860 — layout normal flow, sem stage */
.inst-hero {
	position: relative;
	margin: 24px auto 0;
	width: calc(100% - 48px);
	max-width: 1872px;
	min-height: 724px;
	border-radius: 44px;
	overflow: hidden;
	background: var(--c-blue);
	color: #fff;
	font-variation-settings: "opsz" 14;
}

/* Conteúdo alinhado ao mesmo left% do Figma (15.3% do card) */
.inst-hero__inner {
	position: relative;
	z-index: 1;
	padding: 10px max(24px, calc((100% - 1300px) / 2)) 24px;
	display: flex;
	flex-direction: column;
}

/* Espiral Lottie — decorativa, absoluta */
/* Link VOLTAR */
.inst-hero__back {
	align-self: flex-start;
	display: flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.087;
	text-decoration: none;
	transition: opacity .2s ease, transform .2s ease;
	padding-top: 20px;
}
.inst-hero__back:hover { opacity: .75; transform: translateX(-3px); }
.inst-hero__back svg { flex: 0 0 auto; }
.inst-hero__back span { text-transform: uppercase; }

/* Título H1 — voltar agora em 10+20px (padrão prod-hero); margin ajustada -6px */
.inst-hero__title {
	margin: 70px 0 0;
	font-size: clamp(40px, 4.2vw, 60px);
	font-weight: 700;
	line-height: 0.87;
	color: #fff;
}

/* Sub-nav âncora — 189(top Figma) - 118(h1 top) - 52(h1 height 60×0.87) = 19px */
.inst-hero__subnav {
	margin-top: 19px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.inst-hero__subnav a {
	display: block;
	padding: 6px 14px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.087;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s ease;
}
.inst-hero__subnav a:hover   { background: rgba(255, 255, 255, 0.12); }
.inst-hero__subnav a.is-active { background: rgba(255, 255, 255, 0.18); font-weight: 600; }

/* Offset de rolagem ao navegar pelas âncoras */
.inst-hero,
.inst-numeros,
.inst-historia,
.inst-cultura,
.inst-axia { scroll-margin-top: 24px; }

/* "Sobre nós" — 369(top Figma) - 189(subnav top) - 31(subnav height) = 149px */
.inst-hero__h2 {
	margin: 149px 0 0;
	font-size: clamp(40px, 4.2vw, 60px);
	font-weight: 400;
	line-height: 0.9;
	color: #fff;
}

/* Lead — 438(top Figma) - 369(h2 top) - 54(h2 height 60×0.9) = 15px */
.inst-hero__lead {
	margin: 15px 0 0;
	max-width: 458px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.19;
	color: #fff;
}

/* Selo GPTW — absoluto, posição proporcional ao Figma */
.inst-hero__gptw {
	position: absolute;
	right: clamp(24px, 13.9%, 261px);
	top: 71.8%;
	z-index: 1;
	width: 103px; height: 161px;
	object-fit: contain;
}

/* ===================== BANNER DE VÍDEO ===================== */
/* node 1254:622 — card 1872×755 px, play centralizado */
.inst-video {
	margin: 24px auto 0;
	width: calc(100% - 48px);
	max-width: 1872px;
}
.inst-video__card {
	position: relative;
	border-radius: 44px;
	overflow: hidden;
	background: #000;
	min-height: clamp(500px, 40vw, 755px);
}
.inst-video__poster {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
/* Elemento <video> — oculto até o play ser clicado */
.inst-video__video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .3s ease;
}

/* node 1064:1109 — padding 20.5px, ícone 41px, bg rgba(0,0,0,.72), radius 49.5px.
   Única fonte de verdade para o botão de play — usado em todo [data-video-card]
   (vídeo institucional, banner "Cultura" etc.) para ficar sempre idêntico. */
.inst-video__play {
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 82px; height: 82px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, opacity .3s ease;
	z-index: 2;
}
.inst-video__play:hover { transform: translate(-50%, -50%) scale(1.06); background: rgba(0, 0, 0, 0.85); }
.inst-video__play svg { margin-left: 3px; }

/* Iframe embed (YouTube / Vimeo) */
.inst-video__embed {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	border: 0;
	background: #000;
	opacity: 0;
	transition: opacity .3s ease;
}

/* Estado: aguardando o iframe do embed carregar — poster e ícone continuam
   visíveis (sem indicador de loading), só trava um novo clique nesse meio-tempo */
[data-video-card].is-loading .inst-video__play { pointer-events: none; }

/* Estado: reproduzindo — funciona em qualquer [data-video-card] */
[data-video-card].is-playing .inst-video__poster,
[data-video-card].is-playing .inst-video__play { opacity: 0; pointer-events: none; }
[data-video-card].is-playing .inst-video__video { opacity: 1; }
[data-video-card].is-playing .inst-video__embed { opacity: 1; }

/* Estado: pausado após ter iniciado — mostra play novamente */
[data-video-card].is-paused .inst-video__play { opacity: 1; pointer-events: auto; }

/* ===================== NOSSOS NÚMEROS ===================== */
/* Híbrido: loop no stage (escala); conteúdo + foto fora do transform */
.inst-numeros {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 70px;
	min-height: clamp(500px, 52vw, 751px);
	overflow: hidden;
	font-variation-settings: "opsz" 14;
}

/* Wrapper: recebe a altura do JS mas é clipado pela section */
.inst-numeros__loop-wrap {
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
	height: 751px;
	pointer-events: none;
	z-index: 0;
}

/* Stage só para o loop decorativo */
.inst-numeros__stage {
	position: absolute;
	bottom: 0; left: 0;
	width: 1920px; height: 751px;
	transform-origin: bottom left;
	pointer-events: none;
}

/* Espiral — node 1064:1114 */
.inst-numeros__loop {
	position: absolute;
	left: 1119px; top: 40px;
	width: 1461.999px; height: 962.913px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 0;
}
.inst-numeros__loop-rot { transform: rotate(-166.2deg); flex: none; }
.inst-numeros__loop-inner { width: 1342.932px; height: 661.713px; }
.inst-numeros__loop-inner svg { display: block; width: 100% !important; height: 100% !important; }

/* Container 1300px — conteúdo não escala */
.inst-numeros__inner {
	position: relative;
	z-index: 2;
	max-width: 1300px;
	margin: 0 auto;
	padding: 68px 24px 80px;
	display: grid;
	grid-template-columns: 420px 459px;
	align-items: start;
}

/* Título */
.inst-numeros__title {
	margin: 0;
	font-size: clamp(44px, 3.2vw, 60px);
	font-weight: 400;
	line-height: 0.9;
	color: #0052ff;
}

/* Descrição */
.inst-numeros__desc {
	margin: 15px 0 0;
	max-width: 368px;
	font-size: 16px; font-weight: 400; line-height: 1.3;
	color: #626262;
}

/* Lista de stats */
.inst-numeros__list {
	margin: 7px 0 0; padding: 0;
	list-style: none;
	display: flex; flex-direction: column; gap: 23px;
}
.inst-numeros__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.inst-numeros__item + .inst-numeros__item {
	padding-top: 23px;
	border-top: 1px solid rgba(98, 98, 98, 0.21);
}

/* Número */
.inst-numeros__n {
	flex: 0 0 118px;
	font-size: 30px; font-weight: 600; line-height: 1.087;
	color: #0052ff;
}

/* Label */
.inst-numeros__l {
	flex: 1 1 auto;
	font-size: 20px; font-weight: 300; line-height: 1.087;
	color: #626262;
}

/* Foto — absoluta relativa à seção, clipada pelo overflow:hidden */
.inst-numeros__photo {
	position: absolute;
	right: max(101px, calc((100% - 1920px) / 2 + 101px));
	bottom: 0;
	width: 25.73%;
	max-width: 494px;
	object-fit: contain;
	object-position: center bottom;
	z-index: 1;
}

/* ===================== NOSSA HISTÓRIA ===================== */
.inst-historia {
	position: relative;
	margin: 0 auto;
	width: calc(100% - 48px);
	max-width: 1872px;
	min-height: 380px;
	border-radius: 44px;
	overflow: hidden;
	background: linear-gradient(112.78deg, var(--c-blue) 21.08%, var(--c-blue-deep) 142.56%);
	color: #fff;
	font-variation-settings: "opsz" 14;
	display: flex;
	align-items: center;
}
.inst-historia__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 57px 0 57px 80px;
	display: grid;
	grid-template-columns: minmax(380px, 42%) 1fr;
	align-items: center;
	column-gap: clamp(24px, 8%, 80px);
}

/* Coluna esquerda: título e descrição lado a lado */
.inst-historia__info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.inst-historia__title {
	margin: 0;
	font-size: clamp(44px, 3.2vw, 60px);
	font-weight: 400;
	line-height: 0.9;
	color: #fff;
}
.inst-historia__desc {
	margin: 0;
	font-size: 16px; font-weight: 300; line-height: 1.3; color: #fff;
}

/* Coluna direita: carousel — sem overflow: hidden para o peek vazar */
.inst-historia__tl {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
	overflow: visible;
}
.inst-historia__vp {
	position: relative;
	display: flex; align-items: flex-start;
	gap: 42px;
	overflow-x: auto; scroll-snap-type: x mandatory;
	scrollbar-width: none;
	max-width: 685px;
}
.inst-historia__vp::-webkit-scrollbar { display: none; }
.inst-historia__sep { flex: 0 0 1px; align-self: stretch; background: rgba(255,255,255,0.35); }
.inst-hist-item {
	flex: 0 0 300px; min-width: 0; max-width: 300px;
	scroll-snap-align: start;
	transition: opacity .3s ease;
}
.inst-hist-item__year {
	display: block;
	font-size: 36px; font-weight: 400; line-height: 1;
	margin-bottom: 14px;
}
.inst-hist-item__text { margin: 0; font-size: 14px; font-weight: 300; line-height: 1.35; color: #fff; }
.inst-historia__nav {
	display: flex; align-items: center; justify-content: space-between;
	padding-right: clamp(24px, 3.8%, 72px);
}
.inst-historia__dots { display: flex; align-items: center; gap: 6px; }
.inst-historia__dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.inst-historia__dots span.is-active { width: 22px; border-radius: 4px; background: #fff; }
.inst-historia__arrows { display: flex; align-items: center; gap: 11px; }
.inst-historia__arrow {
	width: 41px; height: 41px; border-radius: 50%;
	display: grid; place-items: center;
	background: #fff; color: var(--c-blue);
	box-shadow: 1.458px 0 2.734px rgba(0,0,0,0.05);
	transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.inst-historia__arrow:hover:not(:disabled) { background: #160D94; color: #fff; box-shadow: none; }
.inst-historia__arrow:disabled { opacity: 0.4; cursor: default; pointer-events: none; }

/* ===================== CULTURA ELETRONET ===================== */
.inst-cultura {
	width: calc(100% - 48px);
	max-width: 1872px;
	margin: 80px auto 0;
	font-variation-settings: "opsz" 14;
}
.inst-cultura__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding-bottom: 80px;
}

.inst-cultura__title {
	margin: 0;
	text-align: center;
	font-size: clamp(44px, 3.2vw, 60px);
	font-weight: 400;
	line-height: 0.9;
	color: #0052ff;
}
.inst-cultura__desc {
	max-width: 680px; margin: 24px auto 0;
	text-align: center;
	font-size: 16px; font-weight: 400; line-height: 1.35; color: #626262;
}

/* 3 cards (pílulas sobrepostas) */
.inst-cultura__cards {
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin-top: 64px;
}
.inst-cult-card {
	height: 184px; border-radius: 108px;
	padding: 27px 46px;
	display: flex; flex-direction: column; justify-content: center; gap: 4px;
	color: #fff; position: relative;
}
.inst-cult-card--1 { width: 413px; background: #263aeb; margin-right: -15px; z-index: 1; }
.inst-cult-card--2 { width: 444px; background: #1e13b1; margin-right: -15px; z-index: 2; }
.inst-cult-card--3 { width: 472px; background: #100881; z-index: 3; }
.inst-cult-card__head { display: flex; align-items: center; gap: 18px; }
.inst-cult-card__head img { width: 24px; height: 24px; flex: 0 0 auto; }
.inst-cult-card__head h3 { margin: 0; font-size: 36px; font-weight: 700; line-height: 1.05; white-space: nowrap; }
.inst-cult-card p { margin: 0; padding-left: 42px; font-size: 14.465px; font-weight: 300; line-height: 1.087; color: #fff; }
.inst-cult-card p strong { font-weight: 700; }

/* 4 colunas de valores */
.inst-cultura__valores {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 64px;
	margin-top: 100px;
}
.inst-cult-val { display: flex; flex-direction: column; gap: 18px; opacity: 1 !important; }
.inst-cult-val__h { margin: 0; font-size: 30px; font-weight: 500; line-height: 0.9; color: #0052ff; }
.inst-cult-val__t { margin: 0; font-size: 16px; font-weight: 500; line-height: 1.239; color: #696868; }
.inst-cultura__valores-dots { display: none; }

/* banner "Nossos valores" */
.inst-cultura__banner {
	display: flex;
	height: 447px;
	border-radius: 44px;
	overflow: hidden;
	margin-top: 60px;
}
.inst-cultura__banner-box { flex: 0 0 38.78%; max-width: 503px; background: var(--c-blue); display: grid; place-items: center; }
.inst-cultura__banner-box span { max-width: 336px; text-align: center; font-size: 60px; font-weight: 400; line-height: 0.9; color: #fff; }
.inst-cultura__banner-media { position: relative; flex: 1 1 auto; }
.inst-cultura__banner-media img { width: 100%; height: 100%; object-fit: cover; }
/* .inst-cultura__play não precisa de regras próprias — o botão já carrega
   a classe .inst-video__play, que define aparência/posição/estados. */

/* ===================== AXIA ENERGIA (accordion) ===================== */
.inst-axia {
	position: relative;
	width: 100%;
	margin-top: 60px;
	padding: 0 24px;
	font-variation-settings: "opsz" 14;
}
.inst-axia__loop {
	position: absolute;
	left: -35%;          /* ajustado para tamanho reduzido */
	top: -24vw;
	width: 55%;
	display: flex; align-items: center; justify-content: center;
	pointer-events: none; z-index: 0;
}
/* rotate(43.26deg) + scaleY(-1) conforme Figma; width = 1342/1431 do container */
.inst-axia__loop-rot {
	transform: rotate(43.26deg) scaleY(-1);
	flex: none;
	width: 93.78%;
}
.inst-axia__loop-inner { width: 100%; height: 100%; }
.inst-axia__loop-inner svg { display: block; width: 100% !important; height: 100% !important; }

.inst-axia__card {
	position: relative; z-index: 1;
	max-width: 1301px; margin: 0 auto;
	display: flex; gap: 34px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 30px;
	padding: 33px;
	box-shadow: 0 12px 44px rgba(0, 0, 0, 0.05);
}
.inst-axia__intro { flex: 0 0 457px; }
.inst-axia__title { margin: 0; font-size: clamp(44px, 3.2vw, 60px); line-height: 0.9; color: #1a1a1a; }
.inst-axia__title span { display: block; font-weight: 400; }
.inst-axia__title strong { display: block; font-weight: 700; }
.inst-axia__lead { margin: 24px 0 0; max-width: 457px; font-size: 16px; font-weight: 400; line-height: 1.3; color: #626262; }

.inst-axia__acc { flex: 1 1 auto; align-self: flex-start; padding-top: 4px; }

/* Alternativa ao accordion: mesma coluna, texto corrido. */
.inst-axia__desc { flex: 1 1 auto; align-self: flex-start; padding-top: 4px; }
.inst-axia__desc-title {
	margin: 0 0 12px;
	font-size: 20px; font-weight: 700; line-height: 1.2; color: #1a1a1a;
}
.inst-axia__desc p { margin: 0; font-size: 16px; font-weight: 400; line-height: 1.5; color: #626262; }
.inst-axia__desc p + p { margin-top: 14px; }
.inst-acc-item + .inst-acc-item { border-top: 1px solid #ececec; }
.inst-acc-head {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	width: 100%; padding: 16px 0; text-align: left;
}
.inst-acc-head__label { font-size: 18px; font-weight: 600; line-height: 1.2; color: #1a1a1a; }
.inst-acc-head__chev { flex: 0 0 auto; display: grid; place-items: center; color: #1a1a1a; transition: transform .3s ease; }
.inst-acc-item.is-open .inst-acc-head__chev { transform: rotate(180deg); }
.inst-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.inst-acc-item.is-open .inst-acc-body { grid-template-rows: 1fr; }
.inst-acc-body__inner { overflow: hidden; min-height: 0; }
.inst-acc-body__inner p { margin: 0; padding: 0 0 18px; font-size: 16px; font-weight: 400; line-height: 1.25; color: #626262; }

/* =====================================================================
   INST NAV FIXO — aparece após o hero sair do viewport (node 1064:844).
   ===================================================================== */
.inst-nav-fixo {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 200;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(7.2px);
	-webkit-backdrop-filter: blur(7.2px);
	border-bottom: 1px solid rgba(0,0,0,0.06);
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.inst-nav-fixo.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.inst-nav-fixo__inner {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1299px;
	margin: 0 auto;
	padding: 0 24px;
	height: 64px;
}
.inst-nav-fixo__back {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #0011ff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.087;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	font-variation-settings: "opsz" 14;
	transition: opacity 0.15s;
}
.inst-nav-fixo__back:hover { opacity: 0.7; }
.inst-nav-fixo__brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex: 1;
	min-width: 0;
}
.inst-nav-fixo__links {
	display: flex;
	align-items: center;
	gap: 24px;
}
.inst-nav-fixo__links a {
	font-size: 14px;
	font-weight: 400;
	color: #626262;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1.087;
	font-variation-settings: "opsz" 14;
	transition: color 0.15s;
}
.inst-nav-fixo__links a:hover,
.inst-nav-fixo__links a.is-active { color: #0011ff; }

/* mobile: 2 linhas — back em cima, links com scroll embaixo */
@media (max-width: 1070px) {
	.inst-nav-fixo__inner {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		padding: 12px 20px 10px;
		gap: 24px;
	}
	.inst-nav-fixo__brand {
		display: flex;
		justify-content: flex-start;
		gap: 16px;
		width: 100%;
		overflow: hidden;
	}
	.inst-nav-fixo__links {
		display: flex;
		gap: 16px;
		flex: 1;
		overflow-x: auto;
		scrollbar-width: none;
	}
	.inst-nav-fixo__links::-webkit-scrollbar { display: none; }
	.inst-nav-fixo__links a { font-size: 16px; }
}

/* =====================================================================
   INSTITUCIONAL — ABAIXO DE 1440px (info empilhada).
   ===================================================================== */
@media (max-width: 1439px) {

}


/* =====================================================================
   INSTITUCIONAL — TABLET (≤1023px).
   ===================================================================== */
@media (max-width: 1070px) {

	/* ---------- HERO ---------- */
	.inst-hero { min-height: auto; }
	.inst-hero__inner { padding: 20px 24px 40px clamp(20px, 4%, 40px); }
	.inst-hero__title { margin-top: 40px; }
	.inst-hero__subnav { margin-top: 24px; flex-wrap: wrap; }
	.inst-hero__h2 { margin-top: 60px; }
	.inst-hero__lead { margin-top: 24px; max-width: none; }
	.inst-hero__gptw { display: none; }

	/* ---------- NOSSOS NÚMEROS ---------- */
	.inst-numeros { min-height: clamp(420px, 80vw, 600px); }
	.inst-numeros__inner {
		grid-template-columns: 1fr;
		padding: 48px 24px clamp(260px, 28vw, 320px);
	}

	/* ---------- NOSSA HISTÓRIA ---------- */
	.inst-historia { min-height: auto; }
	.inst-historia__inner {
		grid-template-columns: 1fr;
		padding: 40px 24px;
	}
	.inst-historia__nav { padding-right: 0; }

}

/* =====================================================================
   INSTITUCIONAL — MOBILE (≤767px). Fidelidade ao Figma node 1139:5126.
   ===================================================================== */
@media (max-width: 1070px) {

	/* ---------- HERO ---------- */
	/* hero mobile: margens laterais 10px + border-radius como no Figma */
	.inst-hero { width: auto; max-width: none; min-height: 760px; margin: 10px 10px 0; border-radius: 24px; overflow: hidden; }
	/* padding-top 16px + back padding-top 20px = voltar a 36px (padrão prod-hero mobile) */
	.inst-hero__inner { padding: 16px 20px 40px; }
	/* loop decorativo — Figma mobile: left -445px, top 403px, 981×662px */
	.inst-hero .hero__loop,
	.blog-hero .hero__loop { inset: auto; left: -445px; top: 403px; width: 981px; height: 662px; }
	.inst-hero .hero__loop-rot,
	.blog-hero .hero__loop-rot { transform: rotate(10.33deg) scaleY(-1); }
	.inst-hero .hero__loop-inner,
	.blog-hero .hero__loop-inner { width: 904px; height: 508px; }
	/* h1: 29.865px semibold — Figma inset 18.42%×760 = 140px top */
	.inst-hero__title { margin-top: 41px; font-size: 30px; font-weight: 600; line-height: 1.02; }
	/* subnav: scroll horizontal, uma linha — Figma top 205px */
	.inst-hero__subnav { margin-top: 35px; gap: 4px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
	.inst-hero__subnav::-webkit-scrollbar { display: none; }
	.inst-hero__subnav a { white-space: nowrap; }
	/* h2: 40px regular — Figma top 292px */
	.inst-hero__h2 { margin-top: 56px; font-size: 40px; }
	/* lead: 16px — Figma top 361px */
	.inst-hero__lead { margin-top: 33px; max-width: none; font-size: 16px; }
	/* GPTW: restaura display (tablet tem display:none) e posiciona canto inferior-esquerdo */
	.inst-hero__gptw { display: block; position: absolute; left: 20px; top: auto; right: auto; bottom: 26px; width: 77px; height: 120px; object-fit: contain; }

	/* ---------- BANNER DE VÍDEO ---------- */
	.inst-video { width: auto; max-width: none; margin: 12px 10px 0; }
	/* Figma: 375×382px → aspect-ratio ~375/382 */
	.inst-video__card { border-radius: 24px; min-height: 0; aspect-ratio: 375 / 382; }
	.inst-video__play { width: 64px; height: 64px; }
	.inst-video__play svg { width: 32px; height: 32px; }

	/* ---------- NOSSOS NÚMEROS ---------- */
	/* Figma: seção cresce com o conteúdo, mínimo 1090px; padding-bottom = altura da foto */
	.inst-numeros { min-height: 1090px; margin-top: 48px; padding-bottom: 364px; }
	/* Loop-wrap: altura fixa no mobile (JS limpa o inline style, CSS assume) */
	.inst-numeros__loop-wrap { height: 418px; }
	/* Stage: área visível do loop = 418px no fundo */
	.inst-numeros__stage { display: block; position: absolute; bottom: 0; left: 0; width: 100%; height: 418px; transform: none !important; }
	/* Loop: top:0 no stage — Figma: left -76px, 1182×778px */
	.inst-numeros__loop { left: -76px; top: 0; bottom: auto; width: 1182px; height: 778px; }
	.inst-numeros__loop-inner { width: 1086px; height: 535px; }
	/* padding-top 109px: título centrado a 127px do topo (Figma bottom:1101px) */
	.inst-numeros__inner { grid-template-columns: 1fr; padding: 109px 20px 24px; }
	.inst-numeros__title { font-size: 40px; }
	.inst-numeros__desc { margin-top: 14px; max-width: none; }
	/* Figma: lista top:282px — text block ~223px → margin-top 59px */
	.inst-numeros__list { margin-top: 59px; gap: 0; }
	.inst-numeros__item { gap: 10px; padding-bottom: 23px; }
	.inst-numeros__item + .inst-numeros__item { padding-top: 23px; border-top: 1px solid rgba(98, 98, 98, 0.21); }
	.inst-numeros__n { flex: 0 0 78px; font-size: 24px; font-weight: 600; }
	.inst-numeros__l { font-size: 16px; font-weight: 300; }
	/* Foto sempre no fundo — padding-bottom da seção reserva o espaço */
	.inst-numeros__photo { position: absolute; left: 24px; bottom: 0; top: auto; right: auto; width: 322px; height: 364px; margin: 0; object-position: top; z-index: 1; }

	/* ---------- NOSSA HISTÓRIA ---------- */
	/* Figma: seção 614px, border-radius 24px */
	.inst-historia { width: calc(100% - 20px); max-width: none; min-height: auto; margin: 0 auto; border-radius: 24px; }
	/* Figma: título top:71px, left:21px; gap 50px até carousel (top:333 - info-bottom:283) */
	.inst-historia__inner { grid-template-columns: 1fr; padding: 71px 21px 32px; row-gap: 50px; }
	/* Figma: title-bottom≈101px, desc-top≈112px → gap 11px */
	.inst-historia__info { gap: 11px; }
	.inst-historia__title { font-size: 40px; font-weight: 400; line-height: 0.9; }
	/* Figma: 16px Regular (400), line-height 1 */
	.inst-historia__desc { font-size: 16px; font-weight: 400; line-height: 1; }
	/* viewport sem max-width, gap 36px */
	.inst-historia__vp { max-width: none; gap: 36px; }
	/* Figma: item 256px fixo — ano 22px Bold, tracking -1.0756px */
	.inst-hist-item { flex: 0 0 256px; max-width: none; }
	.inst-hist-item__year { font-size: 22px; font-weight: 700; line-height: 1.087; margin-bottom: 22px; }
	/* Figma: texto item 16px Light, line-height 1.087 */
	.inst-hist-item__text { font-size: 16px; line-height: 1.087; }
	.inst-historia__nav { padding-right: 0; }

	/* ---------- CULTURA ---------- */
	.inst-cultura { width: calc(100% - 20px); max-width: none; margin: 90px auto 90px; }
	/* padding igual ao hero: 10px nas laterais */
	.inst-cultura__inner { padding: 0 10px; }
	/* Figma: 40px regular, line-height 0.897 */
	.inst-cultura__title { font-size: 40px; font-weight: 400; line-height: 0.9; text-align: left; }
	/* Figma: desc top:65px → margin 65-36=29px; line-height 1.087 */
	.inst-cultura__desc { max-width: none; margin-top: 29px; font-size: 16px; line-height: 1.087; text-align: left; }
	/* cards em fluxo normal; altura pelo conteúdo; padding 10px via inner */
	.inst-cultura__cards { display: flex; flex-direction: column; height: auto; margin: 61px 0 0; }
	/* reset desktop (widths fixos + margins negativos) — full-width pelo inner 10px */
	.inst-cult-card { position: relative; left: auto; right: auto; top: auto; width: 100% !important; height: auto; margin: 0 !important; border-radius: 95px; padding: 27px 49px; display: flex; flex-direction: column; justify-content: flex-start; gap: 5px; color: #fff; }
	.inst-cult-card--1 { }
	.inst-cult-card--2 { margin-top: -10px !important; }
	.inst-cult-card--3 { margin-top: -10px !important; gap: 3px; }
	.inst-cult-card__head { display: flex; flex-direction: row; align-items: center; gap: 18px; }
	.inst-cult-card__head img { width: 24px; height: 24px; flex-shrink: 0; filter: none; }
	/* Figma: 23px bold, tracking -1.6646px, line-height 1.087 */
	.inst-cult-card__head h3 { font-size: 23px; font-weight: 700; line-height: 1.087; white-space: normal; color: #fff; }
	/* Figma: 14.465px light, px-[44px] → padding-left 44px */
	.inst-cult-card > p { font-size: 14.465px; font-weight: 300; line-height: 1.087; color: #fff; padding-left: 44px; margin: 0; }
	/* Figma: valores top:793px, container cards ends 767px → margin-top 26px; gap 47px */
	/* wrapper quebra o padding do inner p/ o carousel respeitar 10px como o hero */
	.inst-cultura__valores-wrap { margin: 26px -10px 90px; }
	.inst-cultura__valores {
		display: flex; flex-direction: row; gap: 47px;
		margin-top: 0; padding: 0 10px;
		overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 10px; scrollbar-width: none;
	}
	.inst-cultura__valores::-webkit-scrollbar { display: none; }
	/* Figma: item 257px, height 259px, py 17px, gap 18px */
	.inst-cult-val { flex: 0 0 257px; min-width: 0; scroll-snap-align: start; display: flex; flex-direction: column; gap: 18px; padding: 17px 0; height: 259px; opacity: 1 !important; }
	/* dots do carousel de valores — mesmo padrão dos banners existentes */
	.inst-cultura__valores-dots { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; }
	.inst-cultura__valores-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d1d1d1; transition: width 0.2s, border-radius 0.2s, background 0.2s; flex-shrink: 0; }
	.inst-cultura__valores-dots span.is-active { width: 22px; border-radius: 4px; background: #0052ff; }
	/* Figma: heading 20px Medium, line-height 0.9 */
	.inst-cult-val__h { font-size: 20px; font-weight: 500; line-height: 0.9; }
	/* Figma: text 16px Light 300, line-height 1.239 */
	.inst-cult-val__t { font-size: 16px; font-weight: 300; line-height: 1.239; }
	/* Banner Nossos Valores */
	.inst-cultura__banner { height: auto; flex-direction: column; margin-top: 36px; border-radius: 24px; overflow: hidden; }
	.inst-cultura__banner-box { flex: 0 0 auto; max-width: none; padding: 27px 49px; min-height: 104px; display: flex; align-items: center; }
	.inst-cultura__banner-box span { font-size: 40px; }
	.inst-cultura__banner-media { height: 221px; flex: 0 0 221px; }

	/* ---------- AXIA ENERGIA ---------- */
	.inst-axia { margin-top: 48px; padding: 0 9px; }
	/* loop não aparece no mobile do Figma */
	.inst-axia__loop { display: none; }
	/* Figma: card single column, gap 38px, padding 31px 20px */
	.inst-axia__card { flex-direction: column; gap: 38px; padding: 31px 20px; border-radius: 24px; }
	.inst-axia__intro { flex: 1 1 auto; }
	/* Figma: título "Uma empresa Axia Energia" 40px */
	.inst-axia__title { font-size: 40px; }
	.inst-axia__lead { max-width: none; margin-top: 18px; }
	.inst-axia__acc { margin-top: 0; }
	.inst-axia__desc { margin-top: 0; padding-top: 0; }
	.inst-axia__desc-title { font-size: 18px; }
	/* Figma: accordion label 18px */
	.inst-acc-head__label { font-size: 18px; }
}

/* =====================================================================
   INSTITUCIONAL — PHONE ESTREITO (≤ 479 px).
   ===================================================================== */
@media (max-width: 479px) {

	/* ---------- NOSSOS NÚMEROS: foto centrada para não transbordar ---------- */
	/* Em 320 px: left:24px + width:322px = 346px → overflow. Centramos. */
	.inst-numeros__photo {
		left: 50%;
		transform: translateX(-50%);
		width: min(322px, 100%);
	}

	/* ---------- BANNER DE VÍDEO: garante altura mínima útil ---------- */
	.inst-video__card { min-height: 220px; }
}

@media (max-width: 1439px) {
	[data-stage] { transform: none !important; }
}
