@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/poppins-400.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/poppins-500.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/poppins-600.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/poppins-700.woff2") format("woff2");
}

@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/poppins-800.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/roboto-condensed-400.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/roboto-condensed-600.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto Condensed";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/roboto-condensed-700.woff2") format("woff2");
}

:root {
	--ins-teal: #15888f;
	--ins-teal-dark: #087c83;
	--ins-cyan: #08b9d3;
	--ins-cyan-heading: #03a5cb;
	--ins-blue: #087e9a;
	--ins-magenta: #d80d8d;
	--ins-magenta-dark: #b70e86;
	--ins-charcoal: #2c2c2c;
	--ins-footer: #44849d;
	--ins-text: #151515;
	--ins-muted: #60666a;
	--ins-white: #fff;
	--ins-container: 1180px;
	--ins-shadow: 0 15px 35px rgba(10, 35, 45, 0.12);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 88px;
}

body {
	margin: 0;
	color: var(--ins-text);
	background: var(--ins-white);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open,
body.search-open {
	overflow: hidden;
}

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

svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid #ffca28;
	outline-offset: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	color: #111;
	background: #fff;
	box-shadow: var(--ins-shadow);
	font-weight: 700;
}

.section-container {
	width: min(var(--ins-container), calc(100% - 48px));
	margin-inline: auto;
}

.site-main {
	overflow: clip;
}

/* Cabeçalho */
.site-header {
	position: relative;
	z-index: 1000;
	height: 140px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header__inner {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 18px;
}

.site-branding {
	flex: 0 0 auto;
	width: 248px;
}

.site-branding__link,
.custom-logo-link {
	display: block;
}

.site-branding__image,
.custom-logo {
	width: 248px;
	max-height: 122px;
	object-fit: contain;
	object-position: left center;
}

.navigation-shell {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-self: stretch;
	min-width: 0;
	margin-left: 42px;
}

.utility-navigation {
	display: flex;
	align-items: center;
	align-self: flex-end;
	width: 365px;
	min-height: 33px;
	margin-top: 16px;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(90deg, #e8118a 0%, #b70e9e 100%);
	border-radius: 999px;
}

.menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.utility-menu {
	display: grid;
	grid-template-columns: 0.82fr 1fr 1.45fr;
	width: 100%;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

.utility-menu li + li {
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.utility-menu a {
	display: block;
	padding: 10px 8px 9px;
	transition: background-color 160ms ease;
}

.utility-menu a:hover,
.utility-menu a:focus-visible {
	background: rgba(255, 255, 255, 0.14);
}

.primary-navigation-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	min-height: 70px;
	padding-top: 6px;
}

.primary-navigation {
	margin-left: auto;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(20px, 2.7vw, 49px);
	color: #126f80;
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.1;
}

.primary-menu > li {
	position: relative;
}

.primary-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 42px;
	white-space: nowrap;
	transition: color 160ms ease;
}

.primary-menu > li > a::after {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	height: 2px;
	content: "";
	background: var(--ins-cyan);
	transition: right 160ms ease, left 160ms ease;
}

.primary-menu > li > a:hover,
.primary-menu > li > a:focus-visible,
.primary-menu > .current-menu-item > a {
	color: var(--ins-cyan-heading);
}

.primary-menu > li > a:hover::after,
.primary-menu > li > a:focus-visible::after,
.primary-menu > .current-menu-item > a::after {
	right: 0;
	left: 0;
}

.primary-menu .menu-item-has-children > a {
	gap: 8px;
}

.primary-menu .menu-item-has-children > a::before {
	order: 2;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	content: "";
	border-right: 1.7px solid currentColor;
	border-bottom: 1.7px solid currentColor;
	transform: rotate(45deg);
}

.sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	z-index: 20;
	width: max-content;
	min-width: 190px;
	padding: 10px;
	margin: 0;
	list-style: none;
	visibility: hidden;
	background: #fff;
	border-top: 3px solid var(--ins-cyan);
	border-radius: 0 0 8px 8px;
	box-shadow: 0 14px 36px rgba(13, 62, 74, 0.18);
	opacity: 0;
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.sub-menu a {
	display: block;
	padding: 10px 13px;
	color: #185f6d;
	white-space: nowrap;
	border-radius: 4px;
}

.sub-menu a:hover,
.sub-menu a:focus-visible {
	background: #eaf9fb;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
}

.language-link {
	display: grid;
	place-items: center;
	height: 52px;
	padding: 0 18px 0 25px;
	margin-left: 23px;
	color: #126f80;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
	font-weight: 700;
}

.search-toggle {
	display: grid;
	place-items: center;
	width: 48px;
	height: 54px;
	padding: 0;
	color: #101010;
	background: transparent;
	border: 0;
	border-left: 1px solid #3b3b3b;
	cursor: pointer;
}

.search-toggle svg {
	width: 22px;
	height: 22px;
	stroke-width: 2.4;
}

.menu-toggle {
	display: none;
}

/* Pesquisa */
.search-panel {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: start center;
	padding: clamp(100px, 18vh, 190px) 24px 40px;
	visibility: hidden;
	color: #fff;
	background: rgba(7, 38, 54, 0.96);
	opacity: 0;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.search-panel.is-open {
	visibility: visible;
	opacity: 1;
}

.search-panel__inner {
	position: relative;
	width: min(760px, 100%);
}

.search-panel__label {
	margin: 0 0 20px;
	font-size: clamp(30px, 4vw, 55px);
	font-weight: 700;
}

.search-panel__close {
	position: absolute;
	top: -55px;
	right: 0;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: #fff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
}

.search-panel__close svg {
	width: 21px;
	height: 21px;
}

.search-form {
	display: flex;
	width: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 58px;
	padding: 13px 18px;
	color: #151515;
	background: #fff;
	border: 0;
	outline: 0;
}

.search-submit {
	display: grid;
	place-items: center;
	width: 62px;
	padding: 0;
	color: #fff;
	background: var(--ins-cyan-heading);
	border: 0;
	cursor: pointer;
}

.search-submit svg {
	width: 22px;
	height: 22px;
	stroke-width: 2.3;
}

/* Botões */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	min-height: 58px;
	padding: 13px 31px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(0, 153, 181, 0.1);
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
	filter: saturate(1.1) brightness(1.03);
	box-shadow: 0 12px 28px rgba(0, 131, 158, 0.22);
	transform: translateY(-2px);
}

.button svg {
	width: 24px;
	height: 24px;
	stroke-width: 1.5;
}

.button--cyan {
	color: #fff;
	background: linear-gradient(135deg, #07bad4 0%, #08b4cd 100%);
}

.button--small {
	min-width: 214px;
	min-height: 54px;
	padding: 12px 25px;
	gap: 28px;
	font-size: 15px;
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 100%;
	height: 806px;
	min-height: 640px;
	color: #fff;
	background-color: #073653;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero__content {
	width: min(635px, calc(100% - 48px));
	padding-top: 350px;
	margin-left: clamp(70px, 6.95vw, 134px);
}

.hero__accent {
	display: block;
	width: 79px;
	height: 4px;
	margin-bottom: 28px;
	background: var(--ins-cyan);
}

.hero h1 {
	max-width: 620px;
	margin: 0;
	font-size: clamp(50px, 3.55vw, 68px);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.035em;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.hero p {
	max-width: 590px;
	margin: 28px 0 36px;
	font-size: clamp(19px, 1.32vw, 25px);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.button--hero {
	min-width: 245px;
	min-height: 70px;
	padding-inline: 38px;
	font-size: 19px;
}

/* Barra de atalhos */
.section-tabs {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	min-height: 57px;
	color: #fff;
	background: var(--ins-teal);
}

.section-tabs a {
	display: grid;
	place-items: center;
	min-height: 57px;
	padding: 9px 18px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	transition: background-color 160ms ease;
}

.section-tabs a + a {
	border-left: 2px solid rgba(7, 34, 40, 0.65);
}

.section-tabs a:hover,
.section-tabs a:focus-visible {
	background: #0e7c83;
}

/* Apresentação */
.about-split {
	display: grid;
	grid-template-columns: 51.5% 48.5%;
	min-height: 540px;
	background: #fff;
	border-bottom: 5px solid #09aeb6;
}

.about-split__visual {
	position: relative;
	min-height: 535px;
	overflow: hidden;
	background: #eef6fb;
}

.about-split__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.about-split__content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	min-width: 0;
	padding: 24px clamp(36px, 4vw, 76px) 42px clamp(40px, 3vw, 58px);
}

.about-split__copy {
	width: 100%;
	font-family: Arial, sans-serif;
	font-size: clamp(13px, 0.81vw, 15.5px);
	line-height: 1.27;
}

.about-split__copy p {
	margin: 0 0 17px;
}

.about-split__copy p:last-child {
	margin-bottom: 0;
}

/* Atalhos institucionais */
.institutional-links {
	position: relative;
	min-height: 512px;
	padding: 47px clamp(30px, 7vw, 135px) 70px;
	background: #fff;
	border-bottom: 20px solid var(--ins-teal-dark);
}

.shortcut-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 65px);
}

.shortcut-card {
	display: flex;
	align-items: center;
	flex-direction: column;
	color: #030303;
	text-align: center;
}

.shortcut-card__icon {
	display: grid;
	place-items: center;
	width: 100%;
	height: 160px;
	margin-bottom: 9px;
	transition: transform 180ms ease;
}

.shortcut-card__icon img {
	width: auto;
	max-width: 190px;
	height: 138px;
	object-fit: contain;
	clip-path: inset(5px 0 0);
}

.shortcut-card:nth-child(3) .shortcut-card__icon img {
	max-width: 210px;
}

.shortcut-card:hover .shortcut-card__icon {
	transform: translateY(-6px);
}

.shortcut-card__title {
	max-width: 280px;
	font-size: clamp(21px, 1.55vw, 30px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.program-cta-wrap {
	width: min(690px, 82%);
	margin-top: 103px;
	margin-left: clamp(50px, 5vw, 95px);
}

.program-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 69px;
	padding: 10px 15px 10px 34px;
	color: #fff;
	background: linear-gradient(90deg, #00aeba 0%, #82d4d9 100%);
	border-radius: 17px 17px 17px 5px;
	font-size: clamp(21px, 1.5vw, 29px);
	font-weight: 700;
	line-height: 1.1;
	box-shadow: 0 8px 22px rgba(0, 142, 150, 0.12);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-cta > span:first-child {
	white-space: nowrap;
}

.program-cta:hover {
	box-shadow: 0 14px 30px rgba(0, 142, 150, 0.24);
	transform: translateY(-3px);
}

.program-cta__arrow {
	display: grid;
	place-items: center;
	flex: 0 0 52px;
	width: 52px;
	height: 46px;
	background: #0799ad;
	border-radius: 8px;
}

.program-cta__arrow svg {
	width: 29px;
	height: 29px;
	stroke-width: 3;
}

/* Notícias */
.news-section {
	padding: 146px 0 128px;
	background: #fff;
}

.news-section h2 {
	margin: 0 0 60px 18px;
	color: var(--ins-cyan-heading);
	font-size: clamp(47px, 3.65vw, 70px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 49px;
}

.news-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 13px 29px rgba(12, 48, 58, 0.12);
}

.news-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 1.34 / 1;
	background: #eaf0f2;
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.news-card:hover .news-card__image img {
	transform: scale(1.035);
}

.news-card__body {
	display: flex;
	align-items: center;
	flex: 1;
	flex-direction: column;
	padding: 15px 18px 23px;
}

.news-card h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: 98px;
	margin: 0 0 14px;
	font-size: clamp(18px, 1.27vw, 24px);
	font-weight: 700;
	line-height: 1.22;
	text-align: center;
}

.news-card h3 a:hover {
	color: var(--ins-cyan-heading);
}

/* Conselho de direcção */
.leadership {
	position: relative;
	min-height: 810px;
	padding: 58px 96px 65px;
	color: #fff;
	background: var(--ins-charcoal);
}

.leadership__container {
	width: min(1110px, calc(100% - 80px));
	margin-inline: auto;
}

.leadership h2 {
	margin: 0 0 30px;
	color: var(--ins-cyan-heading);
	font-size: clamp(48px, 3.35vw, 64px);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	letter-spacing: -0.035em;
}

.leadership-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1110px, 100%);
	min-height: 92px;
	padding: 11px 31px 11px 16px;
	margin: 0 auto 32px;
	background: linear-gradient(100deg, #eb0a91 0%, #c20c86 100%);
	border-radius: 999px;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
}

.leadership-cta__label {
	display: grid;
	place-items: center;
	min-width: 179px;
	min-height: 66px;
	padding: 12px 28px;
	color: var(--ins-magenta-dark);
	background: #fff;
	border-radius: 999px;
	font-size: 22px;
	font-weight: 700;
}

.leadership-cta__arrow svg {
	width: 44px;
	height: 44px;
	stroke-width: 1.3;
}

.leader-carousel {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 48px;
	align-items: center;
	gap: 18px;
}

.leader-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 44px;
}

.leader-card {
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}

.leader-card a {
	display: block;
	color: #000;
}

.leader-card img {
	width: 100%;
	aspect-ratio: 0.8 / 1;
	object-fit: cover;
	object-position: center top;
}

.leader-card__caption {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 110px;
	padding: 12px 14px 17px;
	font-size: clamp(17px, 1.12vw, 22px);
	font-weight: 700;
	line-height: 1.12;
	text-align: center;
}

.leader-card__caption strong,
.leader-card__caption span {
	display: block;
}

.carousel-arrow {
	display: grid;
	place-items: center;
	width: 47px;
	height: 47px;
	padding: 0;
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: color 160ms ease, background-color 160ms ease;
}

.carousel-arrow:hover {
	color: var(--ins-charcoal);
	background: #fff;
}

.carousel-arrow svg {
	width: 21px;
	height: 21px;
}

.social-rail {
	position: absolute;
	top: 225px;
	right: 42px;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 23px;
}

.social-rail a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: #fff;
	transition: color 160ms ease, transform 160ms ease;
}

.social-rail a:hover {
	color: var(--ins-cyan);
	transform: translateX(-3px);
}

.social-rail svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
	stroke: currentColor;
}

.social-rail a[aria-label="Instagram"] svg,
.social-rail a[aria-label="WhatsApp"] svg {
	fill: none;
}

.social-rail .icon-fill-contrast {
	fill: var(--ins-charcoal);
	stroke: none;
}

/* Divisor e rodapé */
.ins-pattern {
	height: 64px;
	background: #fff url("../images/padrao-divisor.webp") repeat-x center;
	background-size: auto 64px;
}

.site-footer {
	min-height: 548px;
	color: #fff;
	background: var(--ins-footer);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 95px 24px 55px;
	text-align: center;
}

.site-footer__logo {
	width: min(460px, 75vw);
	height: 212px;
	margin-bottom: 24px;
	object-fit: cover;
	object-position: center;
}

.site-footer__credit {
	margin: 0 0 69px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: clamp(18px, 1.23vw, 24px);
	font-weight: 600;
}

.footer-socials {
	display: flex;
	gap: 13px;
}

.footer-socials a {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	color: #fff;
	background: rgba(94, 192, 211, 0.48);
	border-radius: 50%;
	transition: background-color 160ms ease, transform 160ms ease;
}

.footer-socials a:hover {
	background: rgba(0, 173, 204, 0.9);
	transform: translateY(-3px);
}

.footer-socials svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
	stroke: currentColor;
}

.footer-socials .icon-fill-contrast {
	fill: var(--ins-footer);
	stroke: none;
}

/* Páginas internas */
.internal-hero {
	display: flex;
	align-items: center;
	min-height: 300px;
	color: #fff;
	background:
		linear-gradient(110deg, rgba(3, 49, 78, 0.96), rgba(6, 124, 145, 0.78)),
		url("../images/hero-ins.webp") center 52% / cover no-repeat;
}

.internal-hero h1 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(42px, 5vw, 78px);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.internal-hero .entry-meta {
	color: #fff;
}

.internal-hero--post {
	min-height: 390px;
}

.content-shell,
.entry-content-shell {
	padding-top: 80px;
	padding-bottom: 100px;
}

.entry-featured {
	max-width: 1040px;
	margin: 0 auto 50px;
}

.entry-featured img {
	width: 100%;
	border-radius: 12px;
}

.entry-content {
	max-width: 860px;
	margin-inline: auto;
	font-family: Arial, sans-serif;
	font-size: 18px;
	line-height: 1.72;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: "Poppins", sans-serif;
	line-height: 1.2;
}

.entry-content h2 {
	margin-top: 2em;
	color: var(--ins-cyan-heading);
	font-size: 34px;
}

.entry-content a {
	color: var(--ins-blue);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	padding: 20px 26px;
	margin: 30px 0;
	background: #f0fafb;
	border-left: 5px solid var(--ins-cyan);
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px;
}

.archive-card {
	overflow: hidden;
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--ins-shadow);
}

.archive-card__image {
	display: block;
	aspect-ratio: 1.34 / 1;
	overflow: hidden;
}

.archive-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.archive-card__body {
	padding: 24px;
}

.archive-card h2,
.search-result h2 {
	margin: 8px 0 14px;
	font-size: 24px;
	line-height: 1.25;
}

.archive-card h2 a:hover,
.search-result h2 a:hover {
	color: var(--ins-cyan-heading);
}

.entry-meta {
	margin: 0;
	color: var(--ins-muted);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ins-blue);
	font-weight: 700;
}

.text-link svg {
	width: 20px;
	height: 20px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 55px;
}

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	color: var(--ins-teal-dark);
	border: 1px solid #c4dadd;
	border-radius: 5px;
}

.page-numbers.current,
.page-numbers:hover {
	color: #fff;
	background: var(--ins-teal);
	border-color: var(--ins-teal);
}

.search-results-list {
	max-width: 900px;
	margin-inline: auto;
}

.search-result {
	padding: 0 0 34px;
	margin-bottom: 34px;
	border-bottom: 1px solid #dfe8ea;
}

.empty-state,
.not-found {
	padding-top: 110px;
	padding-bottom: 120px;
	text-align: center;
}

.empty-state .search-form,
.not-found .search-form {
	max-width: 600px;
	margin: 35px auto;
}

.not-found__code {
	margin: 0;
	color: var(--ins-cyan-heading);
	font-size: clamp(90px, 16vw, 190px);
	font-weight: 800;
	line-height: 0.9;
}

.not-found h1 {
	margin: 25px 0 12px;
	font-size: clamp(35px, 5vw, 64px);
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-top: 45px;
	margin-top: 60px;
	border-top: 1px solid #dae5e7;
}

.post-navigation a {
	max-width: 45%;
	color: var(--ins-blue);
	font-weight: 700;
}

.comments-area {
	padding-bottom: 100px;
}

.comment-list {
	padding-left: 24px;
}

/* WordPress */
.alignwide {
	width: min(1100px, calc(100vw - 48px));
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.wp-caption,
.gallery-caption {
	color: var(--ins-muted);
	font-size: 14px;
}

.bypostauthor {
	display: block;
}

/* Portáteis */
@media (max-width: 1380px) {
	.site-branding {
		width: 220px;
	}

	.site-branding__image,
	.custom-logo {
		width: 220px;
	}

	.navigation-shell {
		margin-left: 25px;
	}

	.primary-menu {
		gap: 23px;
		font-size: 15px;
	}

	.language-link {
		padding: 0 14px;
		margin-left: 13px;
	}

	.hero__content {
		margin-left: 7vw;
	}

	.about-split__content {
		padding-inline: 38px;
	}

	.about-split__copy {
		font-size: 14.5px;
	}

	.leadership {
		padding-inline: 48px;
	}

	.leadership__container {
		width: min(1110px, calc(100% - 80px));
	}

	.social-rail {
		right: 20px;
	}
}

@media (max-width: 1180px) {
	.site-header {
		height: 112px;
	}

	.site-branding,
	.site-branding__image,
	.custom-logo {
		width: 190px;
	}

	.utility-navigation {
		width: 310px;
		min-height: 28px;
		margin-top: 10px;
	}

	.utility-menu {
		font-size: 12px;
	}

	.utility-menu a {
		padding-block: 8px 7px;
	}

	.primary-navigation-row {
		min-height: 62px;
	}

	.primary-menu {
		gap: 16px;
		font-size: 13px;
	}

	.language-link {
		height: 44px;
		padding-inline: 10px;
		font-size: 13px;
	}

	.search-toggle {
		width: 42px;
		height: 45px;
	}

	.hero {
		height: 690px;
		min-height: 600px;
	}

	.hero__content {
		padding-top: 295px;
	}

	.about-split {
		grid-template-columns: 50% 50%;
		min-height: 565px;
	}

	.about-split__content {
		padding: 25px 30px 35px;
	}

	.about-split__copy {
		font-size: 13.5px;
	}

	.news-grid {
		gap: 30px;
	}

	.leadership {
		padding-inline: 30px;
	}

	.leadership__container {
		width: min(1000px, calc(100% - 60px));
	}

	.leader-grid {
		gap: 24px;
	}

	.social-rail {
		right: 8px;
	}
}

/* Tablet e menu móvel */
@media (max-width: 980px) {
	html {
		scroll-padding-top: 86px;
	}

	.site-header {
		position: sticky;
		top: 0;
		height: 86px;
	}

	.admin-bar .site-header {
		top: 32px;
	}

	.site-header__inner {
		justify-content: space-between;
		padding-inline: 18px;
	}

	.site-branding,
	.site-branding__image,
	.custom-logo {
		width: 170px;
		max-height: 74px;
	}

	.menu-toggle {
		position: relative;
		z-index: 1002;
		display: grid;
		place-items: center;
		width: 48px;
		height: 48px;
		padding: 0;
		color: var(--ins-teal-dark);
		background: #f3fafb;
		border: 1px solid #d5eaed;
		border-radius: 50%;
		cursor: pointer;
	}

	.menu-toggle svg {
		width: 25px;
		height: 25px;
		stroke-width: 2;
	}

	.menu-toggle__close {
		display: none;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__open {
		display: none;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__close {
		display: block;
	}

	.navigation-shell {
		position: fixed;
		top: 86px;
		right: 0;
		bottom: 0;
		z-index: 1001;
		display: flex;
		width: min(410px, 92vw);
		padding: 26px;
		margin: 0;
		overflow-y: auto;
		visibility: hidden;
		background: #fff;
		box-shadow: -22px 20px 48px rgba(8, 44, 55, 0.18);
		opacity: 0;
		transform: translateX(100%);
		transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
	}

	.admin-bar .navigation-shell {
		top: 118px;
	}

	.nav-open .navigation-shell {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.nav-open::before {
		position: fixed;
		inset: 0;
		z-index: 999;
		content: "";
		background: rgba(2, 25, 38, 0.55);
	}

	.utility-navigation {
		order: 2;
		align-self: stretch;
		width: 100%;
		margin-top: 32px;
	}

	.utility-menu {
		font-size: 13px;
	}

	.primary-navigation-row {
		display: block;
		flex: 0 0 auto;
		order: 1;
		padding: 0;
	}

	.primary-navigation {
		margin: 0;
	}

	.primary-menu {
		display: block;
		font-family: "Poppins", sans-serif;
		font-size: 18px;
	}

	.primary-menu > li {
		border-bottom: 1px solid #e0ecee;
	}

	.primary-menu > li > a {
		justify-content: space-between;
		min-height: 51px;
	}

	.primary-menu > li > a::after {
		display: none;
	}

	.primary-menu .menu-item-has-children > a::before {
		margin-right: 5px;
	}

	.sub-menu {
		position: static;
		display: none;
		width: 100%;
		padding: 0 0 12px 16px;
		visibility: visible;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
		transition: none;
	}

	.menu-item-has-children.is-submenu-open > .sub-menu,
	.menu-item-has-children:focus-within > .sub-menu {
		display: block;
		transform: none;
	}

	.sub-menu a {
		padding: 8px 10px;
		white-space: normal;
	}

	.language-link {
		display: inline-flex;
		height: 44px;
		padding: 0;
		margin: 24px 18px 0 0;
		font-family: "Poppins", sans-serif;
		font-size: 16px;
	}

	.search-toggle {
		display: inline-grid;
		width: 46px;
		margin-top: 15px;
		vertical-align: middle;
	}

	.hero {
		height: 650px;
		min-height: 0;
		background-position: 58% center;
	}

	.hero__content {
		width: min(570px, calc(100% - 48px));
		padding-top: 240px;
		margin-left: 7vw;
	}

	.hero h1 {
		font-size: clamp(45px, 7vw, 61px);
	}

	.hero p {
		max-width: 520px;
		font-size: 20px;
	}

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

	.section-tabs a {
		font-size: 20px;
	}

	.section-tabs a:nth-child(3) {
		border-left: 0;
		border-top: 2px solid rgba(7, 34, 40, 0.65);
	}

	.section-tabs a:nth-child(4) {
		border-top: 2px solid rgba(7, 34, 40, 0.65);
	}

	.about-split {
		grid-template-columns: 1fr;
		border-bottom-width: 5px;
	}

	.about-split__visual {
		min-height: 0;
		aspect-ratio: 1.84 / 1;
	}

	.about-split__content {
		align-items: flex-start;
		padding: 42px 7vw 48px;
	}

	.about-split__copy {
		font-size: 16px;
		line-height: 1.5;
	}

	.about-split__content .button {
		margin-top: 22px;
	}

	.institutional-links {
		padding-inline: 6vw;
	}

	.shortcut-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 55px;
	}

	.program-cta-wrap {
		width: min(620px, 100%);
		margin: 75px auto 0;
	}

	.news-section {
		padding-top: 100px;
	}

	.news-section h2 {
		margin-left: 0;
	}

	.news-grid {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin-inline: auto;
		gap: 44px;
	}

	.news-card h3 {
		min-height: 115px;
		font-size: 22px;
	}

	.leadership {
		padding: 65px 30px 80px;
	}

	.leadership__container {
		width: calc(100% - 50px);
	}

	.leadership-cta {
		min-height: 88px;
	}

	.leadership-cta__label {
		min-height: 62px;
	}

	.leader-carousel {
		grid-template-columns: 45px minmax(0, 1fr) 45px;
		gap: 10px;
	}

	.leader-grid {
		display: flex;
		gap: 22px;
		overflow-x: auto;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.leader-grid::-webkit-scrollbar {
		display: none;
	}

	.leader-card {
		flex: 0 0 calc(50% - 11px);
		scroll-snap-align: start;
	}

	.social-rail {
		position: static;
		justify-content: center;
		flex-direction: row;
		margin-top: 45px;
	}

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

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .navigation-shell {
		top: 132px;
	}
}

/* Telefones */
@media (max-width: 620px) {
	.section-container {
		width: min(100% - 32px, var(--ins-container));
	}

	.site-header__inner {
		padding-inline: 14px;
	}

	.site-branding,
	.site-branding__image,
	.custom-logo {
		width: 150px;
	}

	.navigation-shell {
		width: 100vw;
	}

	.hero {
		height: 610px;
		background-position: 55% center;
	}

	.hero__content {
		width: calc(100% - 40px);
		padding-top: 225px;
		margin-inline: 20px;
	}

	.hero__accent {
		width: 66px;
		margin-bottom: 22px;
	}

	.hero h1 {
		max-width: 430px;
		font-size: clamp(40px, 12.2vw, 54px);
	}

	.hero p {
		max-width: 430px;
		margin: 22px 0 30px;
		font-size: 17px;
		line-height: 1.55;
	}

	.button--hero {
		min-width: 218px;
		min-height: 62px;
		padding-inline: 30px;
		font-size: 16px;
	}

	.section-tabs a {
		min-height: 54px;
		padding-inline: 8px;
		font-size: 16px;
	}

	.about-split__visual {
		aspect-ratio: 1.55 / 1;
	}

	.about-split__content {
		padding: 35px 22px 42px;
	}

	.about-split__copy {
		font-size: 15px;
	}

	.institutional-links {
		padding: 45px 20px 65px;
		border-bottom-width: 12px;
	}

	.shortcut-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.shortcut-card__icon {
		height: 135px;
	}

	.shortcut-card__icon img {
		height: 125px;
	}

	.shortcut-card__title {
		font-size: 23px;
	}

	.program-cta-wrap {
		margin-top: 70px;
	}

	.program-cta {
		min-height: 70px;
		padding-left: 16px;
		font-size: 15px;
	}

	.program-cta > span:first-child {
		white-space: nowrap;
	}

	.program-cta__arrow {
		flex-basis: 46px;
		width: 46px;
	}

	.news-section {
		padding: 85px 0 92px;
	}

	.news-section h2 {
		margin-bottom: 45px;
		font-size: 46px;
		line-height: 1.05;
	}

	.news-card__body {
		padding-inline: 14px;
	}

	.news-card h3 {
		min-height: 125px;
		font-size: 19px;
	}

	.leadership {
		padding: 60px 16px 68px;
	}

	.leadership__container {
		width: 100%;
	}

	.leadership h2 {
		margin-bottom: 30px;
		font-size: 45px;
		line-height: 1.08;
	}

	.leadership-cta {
		min-height: 78px;
		padding: 8px 18px 8px 9px;
		margin-bottom: 34px;
	}

	.leadership-cta__label {
		min-width: 128px;
		min-height: 58px;
		padding-inline: 18px;
		font-size: 17px;
	}

	.leadership-cta__arrow svg {
		width: 32px;
		height: 32px;
	}

	.leader-carousel {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		gap: 7px;
	}

	.carousel-arrow {
		width: 40px;
		height: 40px;
	}

	.leader-card {
		flex-basis: 100%;
	}

	.leader-card__caption {
		min-height: 113px;
		font-size: 18px;
	}

	.social-rail {
		gap: 12px;
		margin-top: 40px;
	}

	.social-rail a {
		width: 36px;
	}

	.ins-pattern {
		height: 52px;
		background-size: auto 52px;
	}

	.site-footer {
		min-height: 445px;
	}

	.site-footer__inner {
		padding-top: 65px;
	}

	.site-footer__logo {
		width: min(370px, 90vw);
		height: 192px;
	}

	.site-footer__credit {
		margin-bottom: 50px;
		font-size: 17px;
	}

	.internal-hero {
		min-height: 250px;
	}

	.internal-hero h1 {
		font-size: 42px;
	}

	.content-shell,
	.entry-content-shell {
		padding-top: 55px;
		padding-bottom: 75px;
	}

	.entry-content {
		font-size: 17px;
	}

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

	.post-navigation {
		flex-direction: column;
	}

	.post-navigation a {
		max-width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
