/*
 Theme Name: Tema Blisq Corporate
 Theme URI: http://blisq.pt
 Author: blisq
 Author URI: http://blisq.pt
 Description: Tema desenvolvido para uso exclusivo da Blisq Creative
 Version: V1.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: blisq
 */
/* =========================================================
 TIPOGRAFIA
 ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* =========================================================
 VARIAVEIS E RESETS
 ========================================================= */
:root {
	--white: #FFF;
	--black: #000;
	--lime: #D9DD50;
	--color-background-dark: #0C0C11;
	--color-light: #F2F2F2;
}

::selection {
	background-color: #2D5096;
	color: #f2f2f2;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	position: relative;
	display: block;
}

body {
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
	position: relative;
	display: block;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

figure {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: block;
}

h1 {
	font-family: "Space Grotesk", sans-serif;
	color: var(--white);
	font-size: clamp(26px, 3vw, 52px);
	font-style: normal;
	font-weight: 700;
	line-height: 115%;
}

h2 {
	color: var(--color-background-dark);
	font-size: clamp(20px, 1.5vw, 28px);
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
}

h3 {
	color: var(--color-background-dark);
	font-size: clamp(15px, 0.99vw, 19px);
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
}

a {
	color: inherit;
	text-decoration: none;
}

.go-to-main {
	color: #191919;
	font-size: 14px;
	font-weight: 600;
	position: absolute;
	top: -9999px;
	margin: 20px;
	background-color: #f3f3f3;
	padding: 15px;
	display: block;
	width: fit-content;
	z-index: 3;
}

.go-to-main:focus {
	top: 0;
	position: relative;
}

.single-article::selection {
	background-color: var(--lime);
}

.block {
	display: block;
}

.none {
	display: none;
}

/* =========================================================
 NAVBAR
 ========================================================= */

.navbar__lang {
	display: none !important;
}

/* ── Navbar ── */
.navbar {
	height: auto;
	overflow: visible;
	position: relative;
	z-index: 5;
	background-color: #F2F2F2;
}

.navbar__inner {
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(12px, 2vw, 30px) clamp(20px, 3vw, 45px);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.custom-logo {
	height: auto;
	width: clamp(152px, 12vw, 224px);
	display: block;
}

a.custom-logo-link {
	padding: 4px 0;
}

/* ── Menu raiz ── */
.navbar__menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: clamp(20px, -2.86px + 2.23vw, 40px);
	margin: 0 auto;
}

.navbar__menu > li {
	position: relative;
}

.navbar__menu > li > a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(14px, 0.83vw, 16px);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: var(--color-background-dark);
	text-decoration: none;
	white-space: nowrap;
	transition: color .15s, background .15s;
}

.navbar__menu > li > a:hover, .navbar__menu > li:hover > a {
	color: #385cad;
	background: unset;
}

.navbar__menu > li.current-menu-item a {
	color: #385cad;
	background: unset;
}
.navbar__menu > .menu-item-has-children > a::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url('assets/icons/arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform-origin: center center;
	transition: transform .15s;
}

.navbar__menu > li:hover > a::after {
	transform: rotate(180deg);
}

.navbar__nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: space-between;
}

/* ── Dropdown ── */
.navbar__menu .sub-menu {
	list-style: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 190px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .09);
	padding: 5px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity .15s, transform .15s, visibility .15s;
}

.navbar__menu .sub-menu::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background-color: transparent;
	display: block;
}

.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navbar__menu .sub-menu li a {
	display: block;
	padding: 8px 12px;
	font-size: .875rem;
	color: #555;
	text-decoration: none;
	border-radius: 5px;
	transition: background .15s, color .15s;
}

.navbar__menu .sub-menu li a:hover {
	background: #f5f5f5;
	color: #1a1a1a;
}

/* ── Ações ── */
.navbar__actions {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2vw, 34px);
}

.btn-cta {
	padding: clamp(12px, 1vw, 15px) clamp(15px, 1.5vw, 26px);
	background: var(--color-background-dark);
	color: var(--white);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
	border-radius: 10px;
	transition: opacity .15s;
}

.btn-cta:hover {
	opacity: .8;
}

/* Idioma */
.navbar__lang {
	list-style: none;
	display: flex;
	gap: 6px;
}

.navbar__lang li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: clamp(12px, 0.7vw, 13px);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 1.43px;
	color: var(--color-background-dark);
	text-decoration: none;
	transition: color .15s;
	border-radius: 50%;
	border-color: 1px solid transparent;
}

.navbar__lang li a:hover, .navbar__lang li a.active {
	border: 1px solid #BEBEBE;
}

.navbar__hamburger {
	display: none;
}

/* =========================================================
 HERO
 ========================================================= */
.hero {
	background: var(--color-background-dark);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 26.3%;
	width: 100%;
	height: 100%;
	background-image: url('assets/images/before-hero.svg');
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}

.hero__inner {
	margin: 0 auto;
	padding: 0 0 0 10.3%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 58px;
	min-height: calc(100vh - 250px);
}

/* Conteúdo */
.hero__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	z-index: 1;
	padding: 70px 0;
	margin-top: 9%;
}

.hero__desc {
	color: #FFF;
	font-size: clamp(15px, 1.04vw, 20px);
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	max-width: 599px;
	margin-bottom: 6px;
}

.hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: clamp(12px, 1vw, 15px) clamp(14px, 2vw, 25px);
	background-color: var(--lime);
	color: var(--color-background-dark);
	font-size: clamp(14px, 0.8vw, 15px);
	font-weight: 600;
	border-radius: 10px;
	align-self: flex-start;
	transition: background .2s, color .2s;
}

.hero__btn::after {
	content: '';
	display: block;
	width: 17px;
	height: 14px;
	background-image: url('assets/icons/arrowBlack.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: all .2s;
}

.hero__btn:hover {
	background: #c5c945;
	color: var(--color-background-dark);
}

.hero__btn:hover::after {
	transform: translateX(5px);
}

.hero__image {
	margin: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.hero__image::before {
	content: '';
	position: absolute;
	left: -1px;
	top: 0;
	height: 100%;
	background-image: url('assets/masks/mascara_imagem_hero_desktop.svg');
	z-index: 1;
	display: block;
	width: 100%;
	background-repeat: no-repeat;
	background-size: contain;
}

.hero__image img {
	width: auto;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(100%);
}

/* =========================================================
 EVENTS
 ========================================================= */
.events {
	padding: clamp(20px, 2.6vw, 50px) clamp(20px, 2.1vw, 40px);
	background-color: #F2F2F2;
	display: flex;
	justify-content: center;
}

.events__container {
	max-width: 1550px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.events__cards {
	display: flex;
	gap: 50px;
	overflow-x: auto;
}

.events__cards::-webkit-scrollbar {
	display: none;
}

.events__cards {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.card__event {
	padding: clamp(10px, 1vw, 20px) clamp(12px, 1.25vw, 24px) clamp(10px, 1vw, 20px) 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	overflow: hidden;
	position: relative;
	transition: all .3s;
	flex: 0 calc(25% - 50px);
}

.events__cards-ml {
	margin-left: -20px;
}

.card__event:first-child {
	margin-left: 20px;
}

.card__event:last-child {
	margin-right: 20px;
}

.card__event:hover {
	background: var(--white);
	border-radius: 20px;
	transition: all .5s;
}

.card__event:hover::after {
	opacity: 0;
}

.card__event::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	opacity: 1;
	height: 100%;
	width: 1px;
	background-color: rgba(12, 12, 17, 0.35);
	transition: all .3s;
}

.card__event > * {
	transition: transform .3s cubic-bezier(0.25, 1, 0.5, 1);
}

.card__event:hover > * {
	transform: translateX(20px);
}

/*Multiplos de 4 devido a grid na pagina arquivo*/
.card__event:nth-child(4n)::after, .card__event:last-child::after {
	content: none;
}

.title__event {
	max-width: 261px;
	margin-bottom: 4px;
	min-height: 50px;
}

.calendar__event, .location__event, .people__event {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: var(--color-background-dark);
}

.calendar__event::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/calendar.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.location__event::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/location.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.people__event::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/people.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/* =========================================================
 AREA
 ========================================================= */
.areas {
	background-color: var(--white);
	padding: clamp(40px, 5.2vw, 100px) clamp(20px, 5vw, 40px);
	;
}

.areas__container {
	max-width: 1560px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 43.9% auto;
	align-items: center;
	gap: 140px;
}

.areas__image {
	margin: 0;
	position: relative;
}

.areas__image img {
	width: 100%;
	height: auto;
	transition: opacity .4s ease;
}

.areas__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.areas__list {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.areas__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 44px;
	border-bottom: 1px solid #CACACA;
	cursor: default;
	transition: opacity .2s;
	cursor: pointer;
}

.areas__item:hover {
	border-radius: 15px;
	background: #F2F2F2;
	border-color: transparent;
}

.areas__item:has(+ .areas__item:hover) {
	border-bottom-color: transparent;
}

.areas__item-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.areas__item-text h3 {
	color: var(--color-background-dark);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(18px, 1.3vw, 25px);
	font-style: normal;
	font-weight: 700;
	line-height: 115%;
}

.areas__item-text p {
	color: var(--color-background-dark);
	font-size: clamp(13px, 0.83vw, 16px);
	font-style: normal;
	font-weight: 300;
	line-height: 155%;
}

.areas__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	border-radius: 10px;
	font-size: clamp(12px, 0.78vw, 15px);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	white-space: nowrap;
	color: var(--color-background-dark);
	text-decoration: none;
	flex-shrink: 0;
	cursor: pointer;
}

.areas__link::after {
	content: '';
	display: block;
	width: 17px;
	height: 14px;
	background-image: url('assets/icons/arrowBlack.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.areas__item:hover .areas__link {
	background-color: #E2E2E2;
}

/* =========================================================
 NEWS
 ========================================================= */
.news {
	background: #2D5096;
	padding: clamp(40px, 5.2vw, 100px) clamp(20px, 5vw, 40px);
	background-image: url(assets/images/bg_notices.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
}

.news__container {
	max-width: 1530px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 1.7vw, 33px);
}

/* Header */
.news__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px 40px;
	flex-wrap: wrap;
}

.news__header--secondary {
	gap: 5px 40px;
	align-items: center;
}

.news__header-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-self: flex-start;
}

.news__header-text h2 {
	color: var(--white);
	font-size: clamp(20px, 1.46vw, 28px);
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
}

.news__header-text h3 {
	color: var(--white);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(18px, 1.3vw, 25px);
	font-style: normal;
	font-weight: 700;
	line-height: 115%;
	max-width: 650px;
}

.news__link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(13px, 0.8vw, 15px);
	font-weight: 600;
	color: var(--white);
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity .2s;
}

.news__link::after {
	content: '';
	display: block;
	width: 17px;
	height: 14px;
	background-image: url('assets/icons/arrowWhiteHor.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.news__link:hover {
	opacity: .7;
}

/* Grid */
.news__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: clamp(25px, 2.1vw, 40px);
	row-gap: clamp(20px, 1.8vw, 35px);
}

/* Card */
.news__card {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.news__card-image {
	display: block;
	overflow: hidden;
	border-radius: 10px;
}

.news__card-image figure {
	margin: 0;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.news__card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	transition: transform .3s ease;
	object-fit: cover;
}

.news__card-image:hover img {
	transform: scale(1.04);
}

.news__card-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 13px 0 5px;
}

.news__card-meta time, .news__card-meta span {
	color: var(--white);
	font-size: clamp(12px, 0.68vw, 13px);
	font-style: normal;
	font-weight: 400;
	line-height: 115%;
}

.news__card-meta time::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url('assets/icons/calendarWhite.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 7px;
	vertical-align: middle;
}

.news__card-meta span::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url('assets/icons/time.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 7px;
	vertical-align: middle;
}

.news__card-title {
	color: var(--white);
	text-overflow: ellipsis;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(16px, 1.15vw, 22px);
	font-style: normal;
	font-weight: 600;
	line-height: 135%;
	transition: opacity .2s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news__card-title:hover {
	opacity: .7;
}

.news__card-desc {
	color: var(--white);
	font-size: clamp(14px, 0.83vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 165%;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* =========================================================
 QUOTE
 ========================================================= */
.quote {
	padding: clamp(15px, 2.6vw, 50px);
}

.quote__about {
	margin-top: 30px;
}

.quote__container {
	max-width: 1920px;
	margin: 0 auto;
}

.quote__image {
	margin: 0;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	background-color: #000;
}

.quote__image img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
}

.quote__image.quote__image--secondary img {
	filter: none;
}

.quote__image--secondary::after {
	content: '';
	background: linear-gradient(180deg, rgba(12, 12, 17, 0.00) 23.8%, #0C0C11 81.07%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.quote__text {
	position: absolute;
	bottom: 19.1%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 100%;
	z-index: 1;
}

.quote__text blockquote {
	font-family: "Space Grotesk", sans-serif;
	color: var(--white);
	text-align: center;
	font-size: clamp(15px, 2.71vw, 52px);
	font-style: normal;
	font-weight: 700;
	line-height: 126%;
}

.quote__text cite {
	font-family: "Space Grotesk", sans-serif;
	color: var(--lime);
	font-size: clamp(12px, 1.02vw, 19.54px);
	font-style: normal;
	font-weight: 700;
	line-height: 126%;
	display: block;
	margin-top: 4px;
}

/* =========================================================
 FOOTER
 ========================================================= */
.footer {
	background-color: var(--color-background-dark);
	color: var(--white);
	padding: clamp(30px, 3.1vw, 60px) clamp(20px, 4vw, 80px) clamp(20px, 2.1vw, 40px);
	z-index: 0;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('assets/images/symCnipes.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 38%;
	pointer-events: none;
}

.footer__inner {
	max-width: 1920px;
	margin: 0 auto;
	display: grid;
	grid-template-rows: auto auto auto;
	gap: clamp(20px, 2.45vw, 47px);
	position: relative;
	z-index: 1;
}

/* ── Linha 1 — Logo ── */
.footer__logo-link {
	display: inline-block;
	padding: 4px 0;
}

.footer__logo {
	width: auto;
	height: auto;
	margin: 0;
}

/* ── Linha 2 — Main ── */
.footer__row--main {
	display: grid;
	grid-template-columns: auto auto;
	gap: 25px;
}

/* Brand */
.footer__brand {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 309px;
	margin-right: 137px;
}

.footer__desc {
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 157%;
	color: #9AABC6;
}

.footer__email {
	color: #FFF;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(13px, 0.78vw, 15px);
	font-style: normal;
	font-weight: 600;
	line-height: 147%;
	transition: all .2s;
}

.footer__email:hover {
	color: var(--lime);
}

.footer__address {
	color: #81A9F9;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(13px, 0.78vw, 15px);
	font-style: normal;
	font-weight: 600;
	line-height: 147%;
	max-width: 270px;
}

.footer__address span {
	display: block;
}

/* Nav menus */
.footer__nav-list {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 58px;
}

.footer__nav-list .menu-item-has-children {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 10px;
}

.footer__nav-list .menu-item-has-children > a {
	color: #81A9F9;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(13px, 0.78vw, 15px);
	font-style: normal;
	font-weight: 600;
	line-height: 147%;
	cursor: default;
	pointer-events: none;
}

.footer__nav-list .sub-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer__nav-list .menu-item-has-children li a {
	color: #DCE4F5;
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 145%;
	text-decoration: none;
	transition: transform .4s cubic-bezier(0.25, 1, 0.5, 1), color .2s;
	display: inline-block;
}

.footer__nav-list .menu-item-has-children li a:hover {
	color: #fff;
	transform: translateX(10px);
}

/* ── Linha 3 — Bottom ── */
.footer__row--bottom {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 2.9vw, 56px);
}

/* Social */
.footer__social {
	list-style: none;
	display: flex;
	gap: 30px;
	justify-content: flex-end;
	margin-top: -17px;
}

.footer__social-link {
	display: flex;
	align-items: center;
	gap: 17px;
	color: #FFF;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(14px, 1.15vw, 22px);
	font-style: normal;
	font-weight: 300;
	line-height: 147%;
	text-decoration: none;
	transition: color .15s;
	padding: 4px 0;
}

.footer__social-link::after {
	content: '';
	display: block;
	width: 23px;
	height: 23px;
	background-image: url('assets/icons/arrowWhite.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.footer__social-link:hover {
	color: #D9DD50;
}

/* Parceiros */
.footer__partners {
	width: auto;
	height: auto;
	margin: 0;
	margin-top: 36px;
}

.footer__partners img {
	width: auto;
}

/* Legal */
.footer__legal-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer__legal {
	list-style: none;
	display: flex;
	gap: 49px;
}

.footer__legal li a {
	color: #FFF;
	font-size: clamp(10px, 0.63vw, 12px);
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
	text-decoration: none;
	transition: color .15s;
}

.footer__legal li a:hover {
	color: var(--lime);
}

.blisq-link {
	padding: 12px 0;
	display: inline-block;
}

.footer__blisq figure {
	margin: 0;
	width: auto;
	height: auto;
}

.footer__blisq img {
	width: 100%;
}

/* =========================================================
 PAGE NEWS/EVENTS/RESOURCES ARCHIVE
 ========================================================= */
.archive-hero, .archive_resource-hero {
	background-color: #2D5096;
	padding: clamp(30px, 2.9vw, 56px) 20px clamp(30px, 2.9vw, 56px) clamp(20px, 8vw, 155px);
	max-width: 1840px;
	margin: clamp(12px, 1.5vw, 30px) clamp(20px, 2vw, 40px);
	border-radius: clamp(15px, 2vw, 30px);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.archive-hero::after, .archive_resource-hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/images/symCnipesDark.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	z-index: -1;
}

.archive-hero__container, .archive_resource-hero__container {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.archive-hero__container h1, .archive_resource-hero__container h1 {
	color: var(--white);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(24px, 2.08vw, 40px);
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	max-width: 735px;
}

.archive-hero__container p, .archive_resource-hero__container p {
	color: var(--lime);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(14px, 1.15vw, 22px);
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	max-width: 600px;
}

.archive-hero__container .events_size, .archive_resource-hero__container .resource_size {
	max-width: 460px;
}

/* ── News/Resources Archive ── */
.news-archive, .resources-archive {
	padding: 0 clamp(20px, 4vw, 40px);
}

.news-archive__container, .resources-archive__container {
	max-width: 1530px;
	margin: clamp(20px, 3vw, 30px) auto clamp(40px, 6vw, 80px);
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 3vw, 30px);
}

.news-archive__header, .resources-archive__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.news-archive__header p, .resources-archive__header p {
	color: var(--color-background-dark);
	max-width: 836px;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(14px, 0.83vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
}

.news-archive__filter, .resources-archive__filter {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

.news-archive__filter label, .resources-archive__filter label {
	color: #595959;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	text-transform: uppercase;
}

/* ── Tom Select ── */
.resources-archive__header .ts-wrapper {
	min-width: 170px;
}

.ts-wrapper {
	min-width: 239px;
}

.ts-wrapper .ts-control {
	padding: 8px 14px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: #F2F2F2;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(12px, 0.73vw, 14px);
	color: var(--color-background-dark);
	box-shadow: none;
	cursor: pointer;
	padding-right: 14px !important;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ts-wrapper.focus .ts-control, .ts-control:focus {
	border-color: var(--color-background-dark);
	box-shadow: none;
	outline: none;
}

.ts-wrapper * {
	cursor: pointer !important;
}

/* Seta */
.ts-wrapper .ts-control::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('assets/icons/pagArrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: transform .2s;
	margin-left: auto;
	transform: rotate(-90deg);
}

.ts-wrapper.open .ts-control::after {
	transform: rotate(180deg);
}

/* Dropdown */
.ts-dropdown {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(12px, 0.73vw, 14px);
	margin-top: 4px;
	padding: 5px;
}

.ts-dropdown .option {
	padding: 8px 12px;
	border-radius: 5px;
	color: var(--color-background-dark);
	cursor: pointer;
	transition: background .15s;
}

.ts-dropdown .option:hover, .ts-dropdown .option.active {
	background: #f5f5f5;
	color: var(--color-background-dark);
}

.ts-dropdown .option.selected {
	background: var(--color-background-dark);
	color: #fff;
}

/* Grid de todas as noticias */
.news__grid--all .news__card-meta time, .news__grid--all .news__card-meta span {
	color: var(--color-background-dark);
}

.news__grid--all .news__card-meta time::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 18px;
	background-image: url('assets/icons/calendar.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 7px;
	vertical-align: middle;
}

.news__grid--all .news__card-meta span::before {
	background-image: url('assets/icons/timeGray.svg');
}

.news__grid--all .news__card-title {
	color: var(--color-background-dark);
}

.news__grid--all .news__card-desc {
	color: var(--color-background-dark);
}

/* Paginação */
.navigation.pagination {
	display: flex;
	justify-content: center;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* links gerais */
.nav-links .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: clamp(12px, 0.73vw, 14px);
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.136px;
	color: var(--color-background-dark);
	font-family: "Instrument Sans", sans-serif;
	background-color: #F4F4F4;
	transition: background .2s, color .2s;
	border: 1px solid transparent;
	text-decoration: none;
}

/* hover */
.nav-links .page-numbers:hover {
	border-color: #bfbfbf;
}

/* ativo */
.nav-links .page-numbers.current {
	background: var(--color-background-dark);
	color: #fff;
}

/* prev */
.nav-links .prev::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('assets/icons/pagArrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/* next */
.nav-links .next::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('assets/icons/pagArrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform: rotate(180deg);
}

/* ── Events Archive ── */
.events-archive {
	max-width: 1920px;
	border-bottom: 1px solid #CBCBCB;
	padding: 0 0 70px;
}

.events-archive__container {
	max-width: 1632px;
	display: flex;
	flex-direction: column;
	gap: clamp(15px, 3vw, 30px);
	margin: 0 auto;
}

.events-archive__intro {
	max-width: 820px;
	padding: 0 20px 0 clamp(20px, 4vw, 50px);
	color: #0C0C11;
	font-size: clamp(15px, 1vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
}

.events-page__header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background-color: #F2F2F2;
	padding: clamp(25px, 2.6vw, 50px) clamp(24px, 4vw, 60px);
	border-radius: clamp(15px, 2vw, 30px);
	max-width: 1632px;
}

.events-page__header .event-description {
	color: #2D5096;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(18px, 1.3vw, 25px);
	font-style: normal;
	font-weight: 700;
	line-height: 115%;
}

.events-page__header p {
	color: #0C0C11;
	font-family: "Space Grotesk", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	max-width: 1050px;
}

.events-page__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 35px;
	row-gap: 20px;
	margin-top: 20px;
}

.events-archive .card__event:first-child, .past_events-archive .card__event:first-child {
	margin-left: 0;
}

.past_events-archive {
	max-width: 1920px;
	border-bottom: 1px solid #CBCBCB;
	padding-bottom: 80px;
}

.past_events-archive__container {
	max-width: 1632px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 0 auto;
}

.past_events-page__header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: clamp(30px, 5vw, 50px) clamp(20px, 5vw, 60px);
}

.past_events-page__header .event-description {
	color: #2D5096;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(18px, 1.3vw, 25px);
	font-style: normal;
	font-weight: 700;
	line-height: 115%;
}

.past_events-archive .card__event:hover > * {
	transform: none;
}

.past_events-archive .card__event:hover::after {
	opacity: 1;
}

.past_events-archive .card__event:hover {
	border-radius: 0;
}

.past_events-archive .card__event .title__event:hover {
	color: #2D5096;
}

.past_events-archive .navigation.pagination {
	margin-top: 40px;
}

/* ── Resources Archive ── */
.resources-archive__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: clamp(12px, 2vw, 20px);
}

.resource-card {
	background: #fff;
	display: flex;
	flex-direction: column;
	padding: 20px 20px 20px 0;
	gap: 10px;
	position: relative;
}

.resource-card::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	opacity: 1;
	height: 100%;
	width: 0.5px;
	background-color: rgba(12, 12, 17, 0.35);
	transition: all .3s;
}

.resource-card figure {
	max-width: 270px;
	max-height: 216px;
}

.resource-card__image--photo {
	border-radius: 15px;
	aspect-ratio: 5/4;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.resource-card__image--icon {
	border-radius: 15px;
	background: #E8E8E8;
	backdrop-filter: blur(5px);
	aspect-ratio: 5/4;
	display: flex;
	align-items: center;
	justify-content: center;
}

.resource-card__image--icon img {
	width: auto;
	object-fit: contain;
}

.resource-card__image--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.resource-card__content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.resource-card__tipo-tag {
	display: inline-block;
	padding: 7px 8px;
	background: var(--lime);
	border-radius: 4px;
	color: #404040;
	font-size: 10px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	text-transform: uppercase;
	align-self: flex-start;
}

.resource-card__title {
	font-size: clamp(15px, 0.99vw, 19px);
	overflow: hidden;
	color: var(--color-background-dark);
	text-overflow: ellipsis;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 6px;
}

.resource-card__content p {
	font-size: clamp(12px, 0.73vw, 14px);
	color: #515151;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 147%;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.resource-card:hover {
	background: #F2F2F2;
	border-radius: 20px;
	transition: all .5s;
}

.resource-card:hover::after {
	opacity: 0;
}

.resource-card > * {
	transition: transform .3s cubic-bezier(0.25, 1, 0.5, 1);
}

.resource-card:hover > * {
	transform: translateX(10px);
}

.another-resource {
	background-color: #F2F2F2;
}

.related-resources {
	background: #F2F2F2;
	padding: clamp(30px, 3vw, 50px) clamp(20px, 4vw, 80px);
}

.related-resources__container {
	max-width: 1530px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.related-resources__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.related-resources__link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(13px, 0.8vw, 15px);
	font-weight: 500;
	color: var(--color-background-dark);
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity .2s;
}

.related-resources__link::after {
	content: '';
	display: block;
	width: 17px;
	height: 14px;
	background-image: url('assets/icons/arrowBlack.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.related-resources__link:hover {
	opacity: .6;
}

.related-resources .resource-card {
	background: transparent;
}

.related-resources .resource-card:hover {
	background-color: var(--white);
}

/*===== Single News =====*/
.single-news__hero {
	position: relative;
	border-radius: clamp(15px, 2vw, 30px);
	overflow: hidden;
	margin: clamp(12px, 1.5vw, 30px) clamp(20px, 2vw, 40px);
	max-width: 1840px;
	background-color: #021d49;
}

.single-news__hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(2, 29, 73, 0.80) 0%, rgba(2, 29, 73, 0.80) 100%), url('assets/images/singleNewsBg.webp') center /cover no-repeat;
	filter: blur(11px);
	z-index: 0;
}

.single-news__hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/images/symCnipesBlueSing.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	pointer-events: none;
	z-index: 1;
}

.single-news__hero-container {
	position: relative;
	z-index: 2;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(63px, 6.6vw, 126px) clamp(20px, 3vw, 60px) clamp(25px, 2.6vw, 50px);
	display: flex;
	align-items: center;
}

.single-news__hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 735px;
	margin: 0 auto;
}

.single-news__hero-content h1 {
	color: var(--lime);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(24px, 2.08vw, 40px);
	font-style: normal;
	font-weight: 700;
	line-height: 130%
}

.single-news__hero-meta {
	display: flex;
	align-items: center;
	gap: 18px;
}

.single-news__hero-date, .single-news__hero-location, .single-news__hero-author {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 500;
	line-height: 145%;
}

.single-news__hero-date::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/calendarLime.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.single-news__hero-location::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/locationLime.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.single-news__hero-author::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/autor.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.last_update {
	max-width: 910px;
	margin: 0 auto clamp(40px, 6vw, 80px);
	padding: 0 20px;
}

.last_update p {
	color: #464646;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 166%;
}

.last_update strong {
	color: #385CAD;
	font-weight: 600;
}

/*===== Single Events =====*/
.single-events__hero {
	position: relative;
	border-radius: clamp(15px, 2vw, 30px);
	overflow: hidden;
	margin: clamp(12px, 1.5vw, 30px) clamp(20px, 2vw, 40px);
	max-width: 1840px;
	background-color: #021D49;
}

.single-events__hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/images/symCnipesBlueSing.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	pointer-events: none;
	z-index: 1;
}

.single-events__hero-container {
	position: relative;
	z-index: 2;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 7vw, 126px) clamp(20px, 3vw, 60px) clamp(30px, 3vw, 50px);
	display: flex;
	align-items: center;
}

.single-events__hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 735px;
	margin: 0 auto;
}

.single-events__hero-content h1 {
	color: var(--lime);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(24px, 2.08vw, 40px);
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	text-wrap: balance;
}

.single-events__hero-meta {
	display: flex;
	align-items: center;
	gap: 18px;
}

.single-events__hero-date, .single-events__hero-location, .single-events__hero-modality {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 500;
	line-height: 145%;
}

.single-events__hero-date::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/calendarLime.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.single-events__hero-location::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/locationLime.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.single-events__hero-modality::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/modality.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.events__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.events__link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: clamp(13px, 0.8vw, 15px);
	font-weight: 500;
	color: var(--color-background-dark);
	transition: opacity .2s;
}

.events__link::after {
	content: '';
	display: block;
	width: 17px;
	height: 14px;
	background-image: url('assets/icons/arrowBlack.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.events__link:hover {
	opacity: .6;
}

.wp-block-table {
	padding-left: 12px;
}

.wp-block-table+ .wp-block-table {
	margin-top: 15px;
}

table caption {
	text-align: center;
	color: var(--color-background-dark);
	font-size: clamp(14px, 1vw, 16px);
	font-style: normal;
	font-weight: 600;
	line-height: 166%;
	margin: 10px 0;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table th {
	text-align: left;
	color: #585858;
	font-size: clamp(12px, 0.78125vw, 15px);
	font-style: normal;
	font-weight: 600;
	line-height: 1.3;
	padding: 10px 12px 0 12px;
}

table td {
	font-size: clamp(12px, 0.73vw, 14px);
	color: #555;
	font-weight: 400;
	padding: 12px 10px;
	border-bottom: 1px solid #e0e0e0;
	line-height: 180%;
}

.event-highlights {
	background-color: #F2F2F2;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 10px;
}

.single-article__container .event-highlights h2 {
	margin: 0;
}

.single-article__container .event-highlights p {
	color: var(--color-background-dark);
	font-size: clamp(14px, 0.9375vw, 18px);
	font-style: normal;
	font-weight: 500;
	line-height: 166%;
}

.gallery .splide__slide img {
	width: 100%;
	border-radius: 20px;
	display: block;
	aspect-ratio: 16 /9;
	object-fit: contain;
}

.blisq-gallery-slider-block .splide__slide figure {
	margin: 0 auto;
}

.gallery .splide__slide figcaption {
	color: #515151;
	font-size: clamp(12px, 0.7292vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 190%;
	margin-top: 7px;
}

.gallery .splide__slide figcaption strong {
	color: #0C0C11;
	font-weight: 700;
}

/* Setas */
.gallery .splide__arrow {
	background: #dce0e3 url(assets/icons/arrowCarrousel.svg) no-repeat center;
	background-size: 6px 10px;
	border: 1px solid transparent;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	opacity: 1;
	box-shadow: 0 0 0 0 #dce0e3;
	transition: all 0.5s;
}

.gallery .has-caption .splide__arrow {
	top: 42%;
}

.gallery .splide__arrow svg {
	display: none;
}

/* Hover */
.gallery .splide__arrow:hover {
	box-shadow: 0 0 0 2.5px #dce0e3;
}

/* Posições */
.gallery .splide__arrow--prev {
	left: 6%;
	transform: rotate(180deg) translateY(50%);
}

.gallery .splide__arrow--next {
	right: 6%;
}

.gallery .splide__pagination {
	display: none;
}

.single-article .single-people {
	color: var(--color-background-dark);
	font-size: clamp(12px, 0.7292vw, 14px);
	font-style: normal;
	font-weight: 500;
	line-height: 145%;
	display: flex;
	gap: 8px;
	margin-bottom: 30px;
}

.single-article .single-people::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/people.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.poster {
	display: flex;
	justify-content: center;
}

.poster figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 850px;
	width: 100%;
}

.poster figure img {
	width: 100%;
	object-fit: contain;
	object-position: center;
	aspect-ratio: 16 /9;
}

.poster figure figcaption {
	color: #515151;
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 190%;
	margin: 0 auto;
}

/*===== Single resource =====*/
.single-resource__hero {
	position: relative;
	border-radius: clamp(15px, 2vw, 30px);
	overflow: hidden;
	margin: clamp(12px, 1.5vw, 30px) clamp(20px, 2vw, 40px);
	max-width: 1840px;
	background-color: #F2F2F2;
}

.single-resource__hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/images/symCnipesGray.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	pointer-events: none;
	z-index: 1;
}

.single-resource__hero-container {
	position: relative;
	z-index: 2;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(40px, 7vw, 126px) clamp(20px, 3vw, 60px) clamp(30px, 3vw, 50px);
	display: flex;
	align-items: center;
}

.single-resource__hero-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 910px;
	margin: 0 auto;
}

.single-resource__hero-content h1 {
	color: var(--color-background-dark);
	font-size: clamp(24px, 2.08vw, 40px);
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	text-wrap: balance;
}

.single-resource__hero-meta {
	display: flex;
	align-items: center;
	gap: 18px;
}

.single-resource__hero-date {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--color-background-dark);
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 500;
	line-height: 145%;
}

.single-resource__hero-date::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('assets/icons/calendar.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.single-resource-meta {
	border-bottom: 1px solid #CBCBCB;
	padding: 0 20px 30px;
	max-width: 910px;
	margin: 0 auto 30px;
}

.single-resource-meta__container {
	max-width: 910px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}

.single-resource-meta__info {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.single-resource-meta__info p {
	color: #464646;
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 500;
	line-height: 166%;
	line-height: 1.6;
}

.single-resource-meta__info p strong {
	color: #385CAD;
	font-weight: 600;
	margin-right: 7px;
}

.single-resource-meta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: clamp(12px, 0.78vw, 15px) clamp(18px, 1.3vw, 25px);
	background: var(--lime);
	color: var(--color-background-dark);
	font-size: clamp(13px, 0.78vw, 15px);
	font-weight: 700;
	border-radius: 10px;
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity .2s;
}

.single-resource-meta__btn::after {
	content: '';
	display: block;
	width: 17px;
	height: 14px;
	background-image: url('assets/icons/arrowBlack.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.single-resource-meta__btn:hover {
	opacity: .8;
}

/* =========================================================
 COMMON PAGES
 ========================================================= */
.single-article {
	padding-bottom: 30px;
}

.single-article__container h1 {
	color: var(--color-background-dark);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(28px, 2.4vw, 46px);
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
}

.single-article__container h2 {
	color: var(--color-background-dark);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(18px, 2.2vw, 40px);
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin: 20px 0 10px;
}

.single-article__container h3 {
	color: var(--color-background-dark);
	font-size: clamp(20px, 1.8vw, 34px);
	font-style: normal;
	font-weight: 300;
	line-height: 160%;
}

.single-article__container h4 {
	color: #385CAD;
	font-size: clamp(22px, 1.46vw, 28px);
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
}

.single-article__container h5 {
	color: #0C0C11;
	font-size: clamp(19px, 1.25vw, 24px);
	font-style: normal;
	font-weight: 600;
	line-height: 160%;
}

.single-article__container h6 {
	color: #585858;
	font-size: clamp(16px, 1.04vw, 20px);
	font-style: normal;
	font-weight: 600;
	line-height: 160%;
}

.single-article__container {
	max-width: 910px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: 0 20px 30px;
	border-bottom: 1px solid #CBCBCB;
}

.single-article__container figure {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 7px;
	max-width: 800px;
	margin-bottom: 30px;
}

.single-article__container figure img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.single-article__container figcaption {
	color: #515151;
	font-size: clamp(12px, 0.73vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 190%;
	padding: 0 15px;
}

.single-article__container figcaption strong {
	color: var(--black);
	font-weight: 700;
}

.single-article__container p {
	color: #464646;
	font-size: clamp(14px, 0.83vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 190%;
	margin-bottom: 10px;
}

.single-article__container p strong {
	font-size: clamp(14px, 0.94vw, 18px);
	font-weight: 500;
	line-height: 166%;
}

.single-article__container dl {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 12px;
}

.single-article__container dl div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.single-article__container dt {
	color: var(--color-background-dark);
	font-size: clamp(14px, 0.94vw, 18px);
	font-style: normal;
	font-weight: 600;
	line-height: 166%;
}

.single-article__container dd {
	color: #515151;
	font-size: clamp(14px, 0.83vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 190%;
}

.single-article__container ul:not(.splide__list) {
	list-style: disc;
	padding-left: 22px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 10px;
}

.single-article__container ul li {
	font-size: clamp(14px, 0.83vw, 16px);
	color: #515151;
	line-height: 1.6;
	padding-left: 5px;
}

.single-article__container ul li::marker {
	font-size: 0.5em;
}

.single-article__container blockquote {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: auto auto;
	column-gap: 30px;
	row-gap: 7px;
}

.single-article__container blockquote::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url('assets/images/logoQuote.webp');
	background-repeat: no-repeat;
	background-position: center left;
	border-right: 2px solid var(--lime);
	grid-row: span 2;
	padding-right: 0;
}

.single-article__container blockquote p {
	color: #515151;
	font-size: clamp(16px, 0.99vw, 19px);
	font-style: normal;
	font-weight: 500;
	line-height: 163%;
	margin-bottom: 0;
}

.single-article__container blockquote cite {
	color: var(--color-background-dark);
	font-size: clamp(13px, 0.68vw, 13px);
	font-style: normal;
	font-weight: 600;
	line-height: 163%;
	grid-column: 2;
}

.single-article__container a {
	color: #515151;
	font-size: clamp(12px, 0.78vw, 15px);
	font-weight: 400;
	line-height: 190%;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	margin-bottom: 10px;
}

.single-article__container > div:last-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(15px, 3vw, 20px);
	padding: clamp(15px, 3vw, 20px) 0 0;
}

.single-article__container > div:last-child p {
	font-size: clamp(12px, 0.73vw, 14px);
	color: #444;
}

.single-article__container > div:last-child p span {
	color: #385CAD;
	font-weight: 600;
	margin-right: 6px;
}

.single-article__container > div:last-child a {
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 1.5vw, 10px);
	padding: clamp(8px, 1.5vw, 10px) clamp(20px, 4vw, 25px);
	background: var(--lime);
	color: var(--color-background-dark);
	font-weight: 600;
	font-size: clamp(13px, 0.78vw, 15px);
	border-radius: 10px;
	text-decoration: none;
	flex-shrink: 0;
	margin-bottom: unset;
}

.single-article__container > div:last-child a::after {
	content: '';
	display: block;
	width: 17px;
	height: 14px;
	background-image: url('assets/icons/diagonalArrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

.single-article__container .wp-block-math {
	padding: 10px;
	margin: 10px;
}

.single-article__container iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 /9
}

.single-article__container .wp-embed-aspect-16-9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16 /9;
}

/* =========================================================
 SERVIÇOS
 ========================================================= */

.service-banner {
	padding: 0 50px;
	margin-top: 25px;
	position: relative;
}

.service-banner::before {
	content: '';
	position: absolute;
	top: -29px;
	width: 100%;
	left: 0;
	height: 29px;
	background-color: #fff;
	display: block;
	z-index: 1;
}

.service-banner-container {
	max-width: 1840px;
	margin: 0 auto;
	border-radius: 30px;
	background-color: #021D49;
	background-image: url(assets/images/banner-area.webp);
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 70px 0 105px 0;
	position: relative;
}

.service-banner-container::after {
	content: '';
}

.service-banner-thumbnail {
	position: absolute;
	max-width: 380px;
	height: auto;
	left: 45px;
	top: -50px;
}

.service-banner-title {
	color: #FFF;
	font-size: clamp(24px, 2.4vw, 40px);
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	margin-bottom: 6px;
}

.service-banner-text {
	color: #D9DD50;
	font-family: "Space Grotesk";
	font-size: clamp(14px, 1.15vw, 22px);
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	background-color: #021d49;
	max-width: 700px;
}

.service-banner-content {
	margin-left: 460px;
}

.service-intro {
	padding: 90px 0 140px 0
}

.service-container {
	max-width: 1315px;
	margin: 0 auto;
}

.service-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px 45px;
}

.service-intro-content {
	max-width: 600px;
}

.service-figure {
	display: flex;
	width: fit-content;
	height: fit-content;
}

.service-image {
	max-width: 100%;
	height: fit-content;
	border-radius: 20px;
}

.service-highlight {
	padding: 88px 0;
	background-color: #021D49;
	position: relative;
}

.service-highlight::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url(assets/images/area-destaque.webp);
	background-size: 30% 100%;
	background-position: left;
	background-repeat: no-repeat;
}

.service-hightlight-container {
	max-width: 730px;
	margin: 0 auto;
	position: relative;
}

.service-hightlight-container > p {
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 170%;
}

.service-block {
	padding: 80px 0 114px;
	position: relative
}

.service-block-bottom::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1565px;
	height: 1px;
	background-color: #d1d1d1;
	display: block;
	transform: translateX(-50%);
}

.service-block:nth-child(even) {
	background-color: #F2F2F2;
}

.service-content-title {
	color: #385CAD;
	font-size: clamp(18px, 1.6vw, 25px);
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	margin-bottom: 15px;
}

.service-content {
	max-width: 520px;
	flex: 0 0 auto;
}

.service-content.service-content-intro {
	max-width: 600px;
}

.service-content > h3 {
	color: #0C0C11;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 166%;
}

.service-content li, .service-content > p {
	color: #464646;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 190%;
	margin-bottom: 10px;
}

.service-content ul {
	padding-left: 20px;
}

.service-content li::marker {
	font-size: 12px;
}

.service-content li {
	margin-bottom: 0;
}

.service-content strong {
	font-weight: 500;
	font-size: 18px;
}

/* =========================================================
 SOBRE CNIPES
 ========================================================= */
.about__banner {
	margin-bottom: 0;
}

.about-container {
	max-width: 1530px;
	margin: 0 auto;
}

.about__bottom {
	padding: 50px 0 135px 0;
	background-color: #F2F2F2;
}

.about__images {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.gallery-logo-image {
	max-width: 200px;
	height: fit-content;
}

.text-balance {
	text-wrap: balance;
}

.about-cnipes-container {
	max-width: 1350px;
	margin: 0 auto;
}

.about__cnipes {
	padding-top: 80px;
}

.about__mission {
	padding: 100px 0;
	background-color: #021D49;
	margin-top: 80px;
	position: relative
}

.about__mission::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url(assets/images/bg-missao.svg);
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}

.about__mission--container {
	max-width: 695px;
	margin: 0 auto;
	position: relative;
}

.about__mission--title {
	color: #D9DD50;
	text-align: center;
	font-size: clamp(20px, 1.5vw, 25px);
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	margin-bottom: 17px;
}

.about__mission--text {
	color: #DCE4F5;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 190%;
}

.about__members--wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 80px;
}

.about__member--title {
	color: #385CAD;
	text-align: center;
	font-size: clamp(18px, 1.5vw, 25px);
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	margin-bottom: 30px;
	text-wrap: balance;
}

.member-card {
	flex: 0 0 365px;
	padding: 20px;
	border-radius: 18px;
	min-height: 150px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.member-card::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(assets/images/bg-membro.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right;
	mix-blend-mode: soft-light;
	opacity: 0.2;
	pointer-events: none;
}

.member-card > h3 {
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 166%;
	margin-bottom: 3px;
}

.member-card > p {
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 166%;
}

.about__members {
	margin-top: 25px;
}

/* =========================================================
 RESPONSIVO
 ========================================================= */
@media screen and (min-width: 1921px) {
	.archive-hero, .archive_resource-hero {
		margin: clamp(12px, 1.5vw, 30px) auto;
	}
}

@media screen and (max-width: 1800px) {
	.footer__brand {
		margin-right: 55px;
	}

	.footer__nav-list, .footer__row--main {
		gap: 30px;
	}

	.service-block-bottom::after {
		width: 90%;
	}

	.service-banner-container {
		background-position: 110%;
		background-size: 25% 100%;
	}

	.service-banner-thumbnail {
		max-width: 325px;
		left: 20px;
		top: 0px;
	}

	.service-banner-content {
		margin-left: 460px;
	}

	.service-banner-content {
		margin-left: 380px;
	}

	.about-container {
		padding: 0 6%;
	}

	.gallery-logo-image {
		max-width: 160px;
	}

	.service-banner-text {
		max-width: 65%;
	}
}

@media screen and (max-width: 1500px) {
	.footer__brand {
		margin-right: 0;
	}

	.footer__nav-list, .footer__row--main {
		gap: 15px;
	}

	.about-cnipes-container, .service-container {
		padding: 0 6%;
	}

	.service-content.service-content-intro {
		max-width: 48%;
	}

	.service-figure, .service-content {
		max-width: 45%;
	}

	.service-content > h3 {
		font-size: 17px;
	}

	.service-content li, .service-content > p {
		font-size: 15px;
		line-height: 1.8;
	}

	.service-content strong {
		font-size: 16px;
	}

	.member-card > h3 {
		font-size: 18px;
	}
}

@media screen and (max-width: 1440px) {
	.events-archive__container {
		margin: 0 clamp(20px, 2vw, 40px);
	}

	.footer__row--main {
		grid-template-columns: 50% 1fr;
		column-gap: 20px;
	}

	.footer__nav-list {
		grid-template-columns: auto auto;
		gap: 40px 20px;
	}

	.footer__brand {
		margin-right: 80px;
		max-width: 100%;
	}

	.footer__nav-list .menu-item-has-children {
		padding: 0;
	}

	.footer__social {
		margin-top: 25px;
		justify-content: flex-start;
	}

	.areas__container {
		gap: 80px;
	}

	.service-banner-thumbnail {
		max-width: 290px;
		left: 20px;
	}

	.service-banner-content {
		margin-left: 345px;
	}

	.service-banner-container {
		padding: 40px 25px 80px 0;
	}

	.about__images {
		gap: 10px;
		max-width: 800px;
		margin: 30px auto 0 auto;
	}

	.about__bottom {
		padding: 40px 0 70px 0;
	}

	.member-card > h3 {
		font-size: 17px;
	}

	.service-block {
		padding: 60px 0 90px;
	}
}

@media screen and (max-width: 1350px) {
	.navbar__menu {
		gap: 20px;
	}

	.navbar__actions {
		gap: 20px;
	}

	.events__cards {
		display: flex;
		gap: 25px;
		margin: 0 -20px;
	}

	.resources-archive__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.resources-archive__filter {
		flex-direction: column;
		align-items: flex-start;
		gap: 3px;
	}

	.resources-archive__header {
		gap: 15px;
	}

	.member-card {
		flex: 0 0 calc(33% - 10px);
	}

}

@media screen and (max-width: 1240px) {
	.navbar__actions {
		gap: 30px;
		flex-direction: column;
		width: 100%;
		text-align: center;
	}

	.btn-cta {
		padding: 15px 26px;
		background: var(--color-background-dark);
		color: var(--white);
		transition: opacity .15s;
		width: 100%;
	}

	.navbar__lang li a:hover, .navbar__lang li a.active {
		border: 1px solid var(--white);
	}

	.navbar__lang li a {
		font-size: 13px;
		color: var(--white);
		border-color: 1px solid transparent;
	}

	.navbar__lang {
		align-self: flex-start;
	}

	.navbar__hamburger {
		display: flex;
		flex-direction: column;
		gap: 13px;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 3;
	}

	.navbar__hamburger span {
		display: block;
		width: 35px;
		height: 1px;
		background: var(--black);
		transition: transform .3s, opacity .3s;
	}

	.navbar__hamburger.is-open span:nth-child(1) {
		transform: translateY(12px) rotate(45deg);
	}

	.navbar__hamburger.is-open span:nth-child(2) {
		opacity: 0;
	}

	.navbar__hamburger.is-open span:nth-child(3) {
		transform: translateY(-16px) rotate(-45deg);
	}

	.navbar__nav {
		display: flex;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background: #2D5096;
		z-index: 2;
		padding: 60px 30px 40px;
		flex-direction: column;
		justify-content: space-between;
		transition: all 1s;
	}

	html.no-overflow {
		overflow: hidden;
	}

	.navbar__hamburger.is-open+ .navbar__nav {
		display: flex;
		opacity: 1;
		visibility: visible;
	}

	.navbar__menu {
		flex-direction: column;
		width: 100%;
		gap: 0;
		margin-top: 14px;
	}

	.navbar__menu > li {
		width: 100%;
		border-bottom: 1px solid #183673;
	}

	.navbar__menu > .menu-item-has-children > a::after {
		width: 14px;
		height: 14px;
		filter: invert(1);
	}

	.navbar__menu > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 15px 20px;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		color: var(--white);
		background: none;
		border: none;
		cursor: pointer;
		text-align: left;
	}

	.navbar__menu .sub-menu {
		all: unset;
		display: block;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		transition: all .2s;
	}

	.navbar__menu .menu-item-has-children:hover .sub-menu {
		all: unset;
		display: block;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
	}

	.navbar__menu > li > a:hover, .navbar__menu > li:hover > a {
		color: #fff;
	}

	.navbar__menu .menu-item-has-children.open .sub-menu {
		opacity: 1;
		visibility: visible;
		max-height: 400px;
		display: flex;
		flex-direction: column;
		padding: 15px 0;
		border-top: 1px solid #183673;
	}

	.navbar__menu .sub-menu li a {
		display: block;
		color: var(--white);
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 145%;
		padding: 15px 30px;
	}

	.navbar__hamburger.is-open span {
		background: #fff;
	}

	.navbar__menu > li > a:hover::after {
		transform: rotate(0deg);
	}

	.navbar__menu > li > a::after {
		transition: transform 0.3s ease;
		transform: rotate(0deg);
	}

	.navbar__menu > li.open > a::after {
		transform: rotate(180deg);
	}

	.service-banner {
		padding: 0 20px;
	}

	.about__cnipes {
		padding-top: 45px;
	}
}

@media screen and (max-width: 1200px) {
	.events-archive .events-page__grid, .past_events-archive .events-page__grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.events-archive .card__event:nth-child(4n)::after, .events-archive .card__event:last-child::after, .past_events-archive .card__event:nth-child(4n)::after, .past_events-archive .card__event:last-child::after {
		content: '';
	}

	.events-archive .card__event:nth-child(3n)::after, .events-archive .card__event:last-child::after, .past_events-archive .card__event:nth-child(3n)::after, .past_events-archive .card__event:last-child::after {
		content: none;
	}

	.service-banner-container {
		background-position: 135%;
		background-size: 30% 100%;
	}
}

@media screen and (max-width: 1150px) {
	.areas__container {
		grid-template-columns: 1fr;
	}

	.areas__image {
		display: none;
	}

	.areas__item {
		padding: 16px;
	}

	.news__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer__row--main {
		grid-template-columns: 44% 1fr;
	}

	.member-card > h3 {
		font-size: 16px;
		line-height: 1.4;
	}

	.about__members--wrapper {
		margin-bottom: 50px;
		gap: 10px;
	}

	.member-card {
		flex: 0 0 calc(33% - 5px);
	}

	.member-card > p {
		font-size: 12px;
	}

	.single-area-atuacao {
		overflow-x: unset;
	}

	.service-flex-intro {
		align-items: flex-start;
	}

	.service-flex-intro .service-figure {
		position: sticky;
		top: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.card__event {
		flex: 0 0 320px;
	}

	.footer__logo {
		max-width: 80%;
	}

	.footer__row--main {
		grid-template-columns: 100%;
		gap: 35px;
	}

	.footer__brand {
		max-width: 100%;
		grid-row: auto;
		margin-right: 0;
	}

	.footer__partners {
		margin-top: 0;
	}

	.wp-block-table {
		overflow-x: auto;
	}

	.wp-block-table table {
		min-width: 500px;
	}

	.events-page__header {
		border-radius: 0;
	}

	.events-archive__container {
		margin: 0;
	}

	.service-hightlight-container > p {
		font-size: 16px;
	}

	.service-highlight {
		padding: 55px 0;
	}

	.service-banner-thumbnail {
		max-width: 240px;
	}

	.service-banner-content {
		margin-left: 295px;
	}

	.footer__nav-list {
		grid-template-columns: auto auto auto;
	}

	.hero__inner {
		min-height: 80vh;
	}
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
	.hero__inner {
		min-height: 40vh;
	}
}

@media screen and (max-width: 950px) {
	.resources-archive__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.service-banner-container {
		padding: 40px 25px;
	}

	.service-banner-content {
		margin-left: 265px;
	}
}

@media screen and (max-width: 850px) {
	.hero::before {
		top: 20.3%;
	}

	.resources-archive__header {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.service-hightlight-container {
		padding: 0 6%;
	}

	.member-card {
		flex: 0 0 calc(50% - 10px);
	}
}

@media screen and (max-width: 800px) {
	.footer__row--main {
		gap: 30px 40px;
	}

	.footer__social {
		gap: 30px;
	}

	.footer__legal {
		gap: 30px;
		flex-wrap: wrap;
	}

	.footer__brand {
		max-width: 80%;
	}

	.footer__social-link::after {
		width: 20px;
		height: 20px;
	}

	.events-archive .events-page__grid, .past_events-archive .events-page__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.events-archive .card__event:nth-child(3n)::after, .events-archive .card__event:last-child::after, .past_events-archive .card__event:nth-child(3n)::after, .past_events-archive .card__event:last-child::after {
		content: '';
	}

	.events-archive .card__event:nth-child(2n)::after, .events-archive .card__event:last-child::after, .past_events-archive .card__event:nth-child(2n)::after, .past_events-archive .card__event:last-child::after {
		content: none;
	}

	.navbar__menu .menu-item-has-children.open .sub-menu {
		gap: 0;
		padding: 15px 0;
	}

	.navbar__menu .sub-menu li a {
		padding: 10px 30px;
	}

	.service-banner-thumbnail {
		max-width: 180px;
		position: relative;
		left: 0;
		top: 0;
	}

	.service-banner-container {
		display: flex;
		align-items: center;
		gap: 20px;
		padding: 30px;
	}

	.service-banner-content {
		margin-left: 0;
	}

	.service-intro {
		padding: 50px 0 70px 0;
	}

	.about__mission--container {
		padding: 0 20px;
	}

	.about__bottom {
		padding: 35 0 50px 0;
	}
}

@media screen and (max-width: 770px) {
	.footer__row--main {
		gap: 35px;
	}

	.footer__nav-list {
		gap: 35px 20px;
	}

	.hero__inner {
		min-height: calc(75vh - 250px);
	}

	.service-flex-intro {
		flex-direction: column-reverse;
		align-items: center;
	}

	.service-content.service-content-intro {
		max-width: 100%;
	}

	.service-flex-intro .service-figure {
		max-width: 60%;
	}

	.service-flex-intro .service-figure {
		position: relative;
		top: 0;
	}
}

@media screen and (max-width: 740px) {
	.single-events__hero::after, .archive-hero::after, .archive_resource-hero::after, .single-news__hero::after {
		right: -70px;
	}

	.resources-archive__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.resource-card {
		padding: 20px 10px 20px 0;
	}

	.service-flex {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.service-flex.service-flex--inverted {
		flex-direction: column-reverse;
	}

	.service-banner-text, .service-content {
		max-width: 100%;
	}

	.service-figure, .service-flex-intro .service-figure {
		max-width: 65%;
		order: 1;
		margin: 0 auto;
	}

	.service-block {
		padding: 60px 0 90px 0;
	}
}

@media screen and (max-width: 700px) {
	.news-archive__header {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 20px;
		flex-direction: column;
	}

	.news-archive__header p, .resources-archive__header p {
		max-width: 100%;
	}

	.news-archive__filter {
		display: flex;
		align-items: center;
		gap: 10px;
		align-self: flex-end;
	}

	.ts-wrapper {
		min-width: 150px;
	}

	.service-highlight {
		background-image: unset;
		padding: 40px 0;
	}

	.service-highlight::before {
		display: none;
	}

	.footer__nav-list {
		grid-template-columns: auto auto;
	}
}

@media screen and (max-width: 680px) {
	.single-article__container > div:last-child {
		flex-direction: column;
		gap: 0;
		text-wrap: balance;
		align-items: flex-start;
	}

	.service-banner-thumbnail {
		max-width: 130px;
	}

	.service-intro {
		padding: 20px 0 40px 0;
	}

	.about__mission {
		padding: 60px 0;
		margin-top: 40px;
		background-blend-mode: color;
	}
}

@media screen and (max-width: 640px) {
	.hero__image {
		height: calc(100% + 10px);
		width: 100%;
		overflow: hidden;
	}

	.hero__image img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	.hero::before {
		content: '';
		position: absolute;
		top: 50%;
		width: 100%;
		height: 100%;
		background-image: url('assets/images/before-heroMobile.svg');
		background-repeat: no-repeat;
		pointer-events: none;
		z-index: 2;
	}

	.hero__image::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-image: url('assets/masks/mascara_imagem_hero_mobile.svg');
		background-repeat: no-repeat;
		background-size: cover;
		z-index: 1;
		display: block;
		pointer-events: none;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding: 0;
		gap: 8px;
	}

	.hero__content {
		order: 2;
		padding: 30px;
		margin-top: 0;
		z-index: 2;
	}

	.areas__container {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas: "title" "image" "list";
		gap: 20px;
	}

	.areas__title {
		grid-area: title;
	}

	.areas__image {
		grid-area: image;
		display: block;
	}

	.areas__image img {
		width: 70%;
		margin: 0 auto;
	}

	.areas__list {
		grid-area: list;
	}

	.areas__content {
		display: contents;
	}

	.areas__item {
		padding: 16px 0;
	}

	.areas__item:hover .areas__link, .areas__item:hover {
		background: transparent;
	}

	.areas__link {
		padding: 0;
	}

	.news__grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.quote__text {
		bottom: 10%;
	}

	.footer__social {
		gap: 25px;
		flex-wrap: wrap;
	}

	.footer__social-link {
		gap: 10px;
	}

	.footer__legal {
		gap: 5px 20px;
	}

	.blisq-link {
		padding: 0;
	}

	.footer__legal-bar {
		align-items: flex-end;
		gap: 20px;
	}
}

@media screen and (max-width: 600px) {
	.quote__image {
		background-color: #000;
	}

	.quote__text {
		position: relative;
		bottom: 0;
		left: 0;
		transform: unset;
		text-align: center;
		width: 100%;
		padding: 4.5 vw 0;
	}

	.quote__image img {
		object-position: top;
	}

	.quote__text blockquote {
		font-size: clamp(20px, 2.71vw, 52px);
		font-weight: 700;
		line-height: 126%;
	}

	.quote__text cite {
		font-size: clamp(16px, 1.02vw, 19.54px);
	}

	.single-events__hero::after, .archive-hero::after, .archive_resource-hero::after, .single-news__hero::after {
		right: -120px;
	}

	.about-container, .service-hightlight-container, .service-container {
		padding: 0 20px;
	}

	.about__members--wrapper {
		gap: 10px;
		align-items: stretch;
	}

	.about__cnipes {
		padding-top: 20px;
	}

	.single-article__container {
		padding: 0 20px 20px;
	}

	.single-article {
		padding-bottom: 20px;
	}

	.single-article__container figure {
		margin-bottom: 20px;
	}

	.events-archive {
		padding-bottom: 40px;
	}
}

@media screen and (max-width: 550px) {

	.events-archive .events-page__grid, .past_events-archive .events-page__grid {
		grid-template-columns: 1fr;
	}

	.events-archive .card__event::after, .events-archive .card__event:nth-child(3n)::after, .events-archive .card__event:nth-child(2n)::after, .events-archive .card__event:nth-child(4n)::after, .events-archive .card__event:last-child::after, .past_events-archive .card__event::after, .past_events-archive .card__event:nth-child(3n)::after, .past_events-archive .card__event:nth-child(2n)::after, .past_events-archive .card__event:nth-child(4n)::after, .past_events-archive .card__event:last-child::after {
		content: none;
	}

	.service-figure, .service-flex-intro .service-figure {
		max-width: 100%;
	}
}

@media screen and (max-width: 500px) {
	.footer__row--main {
		gap: 30px;
	}

	.footer__brand {
		max-width: 100%;
	}

	.footer__nav-list {
		grid-template-columns: 100%;
		gap: 30px;
	}

	.footer__social {
		gap: 15px;
	}

	.footer__blisq img {
		max-width: 35px;
	}

	.single-events__hero::after, .archive-hero::after, .archive_resource-hero::after, .single-news__hero::after, .single-resource__hero::after {
		right: -180px;
		background-position: left center;
		background-size: cover;
	}

	.single-resource-meta__container {
		display: flex;
		align-items: flex-start;
		gap: 15px;
		flex-direction: column;
	}

	.service-banner::before, .service-banner-thumbnail {
		display: none;
	}

	.service-banner {
		margin-top: 12px;
	}

	.service-block {
		padding: 40px 0;
	}
}

@media screen and (max-width: 480px) {
	.footer__social-link::after {
		width: 15px;
		height: 15px;
	}

	.service-content strong {
		font-size: 15px;
	}

	.footer__logo-link {
		max-width: 240px;
	}

	.news-archive__filter {
		width: 100%;
	}

	.ts-wrapper {
		flex: 1;
	}
}

@media screen and (max-width: 450px) {
	.single-events__hero-meta, .single-news__hero-meta {
		display: flex;
		align-items: flex-start;
		gap: 5px;
		flex-direction: column;
	}

	.hero::before {
		top: 40%;
	}
}

@media screen and (max-width: 420px) {
	.resources-archive__grid {
		grid-template-columns: 1fr;
	}

	.resource-card::after {
		content: none;
	}

	.resource-card figure {
		max-width: 100%;
		max-height: fit-content;
	}

	.resource-card__image--photo, .resource-card__image--icon {
		aspect-ratio: 16 /9;
	}

	.member-card {
		flex: 0 0 100%;
		min-height: 115px;
	}

	.member-card > p {
		text-wrap: balance;
	}

	.footer__logo-link {
		max-width: 200px;
	}

	.about__member--title {
		margin-bottom: 20px;
	}

	.about__mission {
		padding: 40px 0;
	}

}

@media screen and (max-width: 395px) {
	.resources-archive__header .ts-wrapper {
		min-width: 100%;
	}

	.resources-archive__filter {
		min-width: 100%;
	}
}

@media screen and (max-width: 375px) {
	.footer__logo-link {
		max-width: 180px;
	}

	.footer__social-link::after {
		width: 10px;
		height: 10px;
	}

	.related-resources__header {
		align-items: flex-start;
		justify-content: space-between;
		gap: 10px;
		flex-direction: column;
	}

	.related-resources__link {
		align-self: flex-end;
	}

	.gallery-logo-image {
		max-width: 145px;
	}
}