/* Custom CSS rules */
:root {
	--gray-900: #252525;
	--gray-850: #333;
	--gray-800: #444;
	--gray-750: #4e4e4e;
	--gray-700: #535353;
	--gray-600: #767676;
	--gray-500: #919191;
	--gray-450: #9b9b9b;
	--gray-400: #abaeaf;
	--gray-300: #ddd;
	--gray-200: #ddd;
	--gray-150: #e0e0e0;
	--gray-100: #f5f5f5;
	--primary-blue: #2f3260;
	--secondary-blue: #19136d;
	--primary-green: #85a216;
	--primary-yellow: #d7bc22;
	--purple: #3e3271;
	--white: #fff;
	--primary-font: "Segoe UI", arial, sans-serif;
}

/* FONTS */
@font-face {
	font-family: "Poppins";
	src: url("../assets/fonts/Poppins-Light.ttf");
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("../assets/fonts/Poppins-Regular.ttf");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("../assets/fonts/Poppins-Medium.ttf");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("../assets/fonts/Poppins-Bold.ttf");
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Segoe UI";
	src: url("../assets/fonts/SegoeUI-Light.ttf");
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: "Segoe UI";
	src: url("../assets/fonts/SegoeUI-Regular.ttf");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Segoe UI";
	src: url("../assets/fonts/SegoeUI-Medium.ttf");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Segoe UI";
	src: url("../assets/fonts/SegoeUI-Bold.ttf");
	font-weight: 700;
	font-display: swap;
}

/* FIM DE FONTS */

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

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body,
input,
textarea,
button {
	font-weight: 400;
	font-size: 1rem;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: var(--primary-font);
}

#main {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding-top: 88px;
}

.col-12.col-lg-4:empty {
	display: none !important;
}

.row.container {
	margin: 0 auto !important;
}

.legends p {
	color: var(--gray-600);
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 400;
	line-height: 26px;
}

@media screen and (width >= 768px) {
	#main {
		padding-top: 0;
	}
}

p, a, span, li, label, button {
	font-family: var(--font-text);
}

p {
	margin: 0;
	color: var(--gray-600);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

h1 {
	font-family: 'Poppins', sans-serif;
}

h2 {
	color: var(--gray-850);
	margin: 0;
	font-weight: bold;
	font-family: 'Poppins', sans-serif;
}

h3 {
	color: var(--gray-850);
	font-family: 'Poppins', sans-serif;
}

h4 {
	color: var(--primary-blue);
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	font-family: 'Poppins', sans-serif;
}

h5 {
	font-family: 'Poppins', sans-serif;
}

table {
	thead th,
	thead td {
		background-color: var(--purple);
		color: var(--white);
		border: 1px solid var(--white);
		padding: 15px;

		p {
			color: var(--white);
		}
	}

	tbody tr td {
		border: 1px solid var(--gray-300);
		padding: 15px;
	}
}

/* Only mobile – esconde no desktop */
@media screen and (width >= 768px) {
	.only-mobile {
		display: none !important;
	}
}

/* Only desktop – esconde no mobile */
@media screen and (width <= 767px) {
	.only-desktop {
		display: none !important;
	}
}

/* Top spacing to first left content */
.section-custom:has(> .col-12.col-lg:not(:empty)) {
	> .row > .col-lg > *:first-child {
		padding-block-start: 32px;
	}
}

.section-custom > .row > .col-12.col-lg > *:last-child {
	padding-block-end: 48px !important;
}

/* FIM DO BASE */

/* reCAPTCHA */
.grecaptcha-badge {
	z-index: 9;
}

/* HEADER */
.main-header {
	position: fixed !important;
	z-index: 9999;
	background-color: transparent;
	transition: all 0.2s ease-in-out;
}

.main-header .navbar-nav,
.main-header .navbar-nav a,
.main-header .navbar-nav p,
.main-header .navbar-nav li,
.main-header .navbar-nav span {
	font-family: 'Poppins', sans-serif;
}

.main-header.is-scrolled {
	background-color: var(--gray-850);
}

.main-header .logo-container .logo {
	width: 100px;
	height: 40px;
}

/* Dropdown Menu */
.main-header .dropdown-menu {
	background-color: var(--white);
	min-width: 500px;
	max-height: 80vh;
	overflow-y: auto;
}

.main-header .dropdown-menu a {
	color: var(--gray-900);
}

.main-header .dropdown-menu p {
	color: var(--gray-400);
	font-weight: 600;
}

.main-header .dropdown-menu .dropdown-item {
	font-size: 0.875rem;
	font-weight: 600;
}

.main-header .dropdown-menu .dropdown-item:active {
	background-color: var(--white);
}

/* Navbar */
.main-header .navbar-collapse {
	flex-grow: unset !important;
	justify-content: center;
}

a,
.main-header .navbar-expand-lg .navbar-nav .nav-link {
	text-decoration: none;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link:hover {
	color: var(--primary-green);
}

.main-header .navbar-toggler {
	border: none !important;
	box-shadow: none !important;
	background-color: var(--gray-850);
	color: var(--white) !important;
}

.main-header .nav-item {
	position: relative;
	white-space: nowrap;
}

.main-header .nav-item.dropdown:has(ul) > .nav-link::after {
	content: "";
	right: -15px;
	top: 12px;
	border: solid currentcolor;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	margin-left: 6px;
	margin-bottom: 2px;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.main-header .nav-item--first-child {
	color: white;
	font-size: 0.75rem;
}

@media (width >= 1920px) {
	.main-header .nav-item--first-child {		
		font-size: 0.938rem;
	}
}

/* Active */
.main-header .nav-link:hover {
	color: var(--primary-green);
}

.main-header .nav-link.show {
	color: white;
}

.main-header .nav-item.dropdown:hover > .dropdown-menu {
	display: block;
	visibility: visible;
	opacity: 1;
}

.main-header .dropdown-menu.mega-menu {
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	visibility: hidden;
}

/* Quando o dropdown está aberto */
.main-header .nav-item.dropdown:hover > .dropdown-menu.mega-menu,
.main-header .nav-item.dropdown.show > .dropdown-menu.mega-menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

@media (min-width: 992px) {
	/* Bloqueia clique no link primário */
	.main-header .dropdown-menu.mega-menu {
		display: block !important; /* manter display para a animação funcionar */
	}
	.main-header .nav-item--first-child > .nav-link {
		pointer-events: none;
	}
}

/* Aplica aos li dentro do mega-menu quando o menu abrir */
.main-header .nav-item.dropdown:hover > .dropdown-menu.mega-menu li,
.main-header .nav-item.dropdown.show > .dropdown-menu.mega-menu li {
	animation: slideInLeft 1s forwards;
}

/* Delay incremental para cada li */
.main-header .nav-item.dropdown:hover > .dropdown-menu.mega-menu li:nth-child(1),
.main-header .nav-item.dropdown.show > .dropdown-menu.mega-menu li:nth-child(1) {
	animation-delay: 0.05s;
}
.main-header .nav-item.dropdown:hover > .dropdown-menu.mega-menu li:nth-child(2),
.main-header .nav-item.dropdown.show > .dropdown-menu.mega-menu li:nth-child(2) {
	animation-delay: 0.1s;
}
.main-header .nav-item.dropdown:hover > .dropdown-menu.mega-menu li:nth-child(3),
.main-header .nav-item.dropdown.show > .dropdown-menu.mega-menu li:nth-child(3) {
	animation-delay: 0.15s;
}

.main-header .dropdown-item:hover {
	background-color:transparent;
	color: var(--primary-green);
}

/* Seletor idiomas */
.seletor-idiomas-container img {
	height: 24px;
	width: 24px;
}

.language-picker-custom__container {
	padding: 0 16px 16px 16px;
}

.language-picker-custom__container a {
	background: transparent;
	cursor: pointer;
}

.language-picker-custom__container a.active {  
	pointer-events: none;
}

.language-picker-custom__container a:not(.active) {
	opacity: .5;
}

.language-picker-custom__container img {
	height: 35px;
	width: 35px;
}

.wrapper-language-picker {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

@media screen and (width <= 1160px) {
	.seletor-idiomas-container.desktop {
		display: none !important;
	}

	.languageClone, .navbar-expand-lg .navbar-toggler {
		display: block !important;
	}

	.main-header {
		height: 88px;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.main-header .logo-container {
		width: 100%;
	}

	.main-header .dropdown-menu {
		background-color: var(--gray-300);
		min-width: unset;
	}

	.main-header .dropdown-menu .dropdown-item {
		font-size: 1rem;
	}

	.main-header .nav-link:hover,
	.main-header .dropdown-item:hover {
		background-color: transparent;
		color: var(--primary-green);
	}

	.main-header .nav-link:hover,
	.main-header .dropdown-item:active {
		background-color: transparent!important;
		color: var(--primary-green);
	}

	.main-header .nav-item--first-child {
		color: var(--gray-900);
		font-size: 0.875rem;
	}

	.main-header .nav-item.dropdown:has(ul) > .nav-link::after {
		right: 2rem;
	}

	.main-header .navbar-collapse {
		position: fixed;
		top: 88px;
		width: 100%;
		left: 0;
		background-color: var(--white);
		overflow-y: auto;
		height: 80vh;
	}

	.main-header .navbar-collapse .navbar-nav {
		background-color: var(--white);
		margin: 0 !important;
	}


	/* Active */
	.main-header .nav-link.show {
		color: var(--primary-green);
	}	
}

@media screen and (992px <= width <= 1160px) {
	.main-header .navbar-collapse {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding-inline-start: 24px;
		gap: 8px;
		
		&:not(.show) {
			display: none !important;
		}
	}
	
	.navbar-expand-lg .navbar-nav {
		flex-direction: column;
		width: 100%;
		gap: 16px !important;
	}
}

@media screen and (width >= 1160px) {
	.navbar-expand-lg .navbar-nav {
		flex-direction: row;
		gap: 2rem !important;
	}
}

/* FIM DO HEADER */

/* TÍTULO */
h2.section-title {
	position: relative;
	font-family: 'Poppins', sans-serif;
}

h2.section-title::after {
	content: "";
	display: block;
	inline-size: 2.25rem;
	block-size: 0.125rem;
	margin: 0.5rem auto 0;
	background: var(--primary-green);
	border-radius: 2px;
}

h3.section-title {
	font-weight: 400;
	font-size: 16px;
	word-wrap: break-word;
}

/* FIM DO TÍTULO */

.hidden-important {
	display: none !important;
}

/* PAGINAÇÃO */

#pagination {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}

.pagination-numbers {
	display: flex;
	gap: 10px;
}

@media (width >= 768px) {
	#pagination {
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}
}

#pagination .page-btn {
	width: 45px;
	height: 45px;
	padding: 0;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-text);
	font-weight: 600;
	font-size: 0.9rem;
	background-color: var(--white);
	color: var(--gray-600);
	border: 1px solid #dae4d8;
}

#pagination .page-btn.active,
.btn-primary:hover {
	background-color: var(--primary-green) !important;
	border-color: var(--primary-green) !important;
	color: var(--white) !important;
	opacity: 1;
}

#pagination span {
	font-weight: 900;
	color: #000;
	font-size: 1.5rem;
	line-height: 1;
	padding: 0 5px;
	margin-bottom: 8px;
}

#pagination .controller {
	width: auto;
	padding: 1rem;
	font-weight: 400;
	font-size: 0.85rem;
	color: var(--gray-850);
}

.hidden-by-pagination {
	display: none !important;
}

/* CUSTOM DROPDOWN */

.dropdown-wrapper {
	position: relative;
	min-width: 150px;
}

.dropdown-toggle-custom {
	width: 100%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--gray-850);
	font-weight: 600;
	cursor: pointer;
	background: var(--white);
	border: 1px solid var(--bs-gray-300);
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-size: 14px;
	box-shadow: none;
	letter-spacing: 0.01em;

	&::after {
		display: none;
	}

	&:hover {
		border-color: var(--bs-gray-400);
	}

	&:focus-visible {
		box-shadow: 0 0 0 0.2rem rgb(var(--bs-primary-rgb) 0.15);
	}
}

.dropdown-menu-custom {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background: white;
	border-radius: 6px;
	margin-top: 5px;
	z-index: 1000;
	padding: 0.5rem;
	border: 1px solid var(--bs-gray-300);
	width: 100%;
	box-shadow: var(--elev-2);
	min-inline-size: 100%;
}

.dropdown-menu-custom.show {
	display: block;
	max-height: 400px;
	overflow-y: auto;
}

.dropdown-item-custom {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	cursor: pointer;
	font-size: 0.95rem;
	color: var(--gray-850);
}

.dropdown-item-custom:hover {
	background-color: #f8f9fa;
}

.dropdown-item-custom input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	border-color: #ccc;
	cursor: pointer;
}

/* FILTROS E BUSCA */

.filter-container, .search-wrapper {
	p, span, label, input, button {
		font-family: var(--font-heading-menu-and-filter);
	}
}

.filter-container {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	font-family: var(--font-heading-menu-and-filter);
	padding: 0.5rem;
}

#resetFilters {
	font-size: 0.75rem;
	font-weight: 400 !important;
	text-decoration: underline !important;
	color: var(--gray-450);
}

.search-wrapper .search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
	color: var(--bs-gray-600);
	line-height: 1;
}

.search-wrapper .search-input {
	padding: 10px 100px 10px 40px;
	border-radius: 6px;
	width: 100%;
	box-shadow: none;
	border: 0;
	height: 50px;
	background: transparent;
	font-size: 14px;
	color: var(--gray-850);

	&::placeholder {
		color: var(--gray-600);
	}

	&:focus {
		box-shadow: none;
		border-color: #aaa;
		outline: none;
	}
}

/* COMPONENTE CONTATO */
.contact-cta {
	background-color: var(--bs-gray-200);
	border: 1px solid var(--bs-gray-300);
	border-radius: var(--bs-border-radius-lg);
}

.contact-cta .small {
	color: var(--brand-muted);
}

.contact-cta a.cta-email {
	color: var(--brand-muted);
	text-decoration-line: underline;
	text-decoration-color: var(--bs-primary);
	text-decoration-thickness: 2px;
	text-underline-offset: 2px;
}

.contact-cta a.cta-email:hover,
.contact-cta a.cta-email:focus {
	color: var(--brand-muted);
	text-decoration-color: color-mix(in srgb, var(--bs-primary) 85%, #000 15%);
}

.contact-cta:has(> div > p:empty) {
	display: none;
}

/* COMPONENTE QUOTES CARROSSEL */
@media (width >= 1200px) {
	.page-detail-container {
		padding-left: 7rem;
	}
}

.text-carousel-section {
	background-color: var(--white);
}

.text-carousel-section .quote {
	color: var(--primary-blue);
	font-size: clamp(1.125rem, 0.9rem + 1.2vw, 1.5rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1.6;
}

#quoteSwiper .swiper-button-prev,
#quoteSwiper .swiper-button-next {
	z-index: 100;
}

#quoteSwiper .swiper-button-prev .bi,
#quoteSwiper .swiper-button-next .bi {
	color: var(--bs-gray-700);
	font-size: 1.25rem;
	font-weight: 700;
	-webkit-text-stroke: 0.75px currentcolor;
	filter: none;
}

#quoteSwiper .small {
	font-size: 16px;
}

#quoteSwiper {
	padding-block: 1.25rem;
}

#quoteSwiper .swiper-button-prev::after,
#quoteSwiper .swiper-button-next::after {
	display: none;
}

#quoteSwiper .swiper-pagination-bullet {
	background: rgb(0 0 0 / 30%);
	opacity: 1;
}

#quoteSwiper .swiper-pagination-bullet-active {
	background: #000;
}

#quoteSwiper .swiper-slide {
	padding-inline: 2rem;
}

@media (width >= 768px) {
	#quoteSwiper {
		padding-block: 1.75rem;
	}
}

@media (width <= 767.98px) {
	.page-detail-container {
		padding-left: 0;
	}

	#quoteSwiper {
		padding-block: 2.25rem;
	}

	.text-carousel-section .quote {
		font-size: 22px;
	}
}

/* BADGES */

.badge {
	color: var(--gray-800);
	background-color: var(--gray-300);
	border-radius: 5px;
	margin-bottom: 2px;
	padding: 3px 10px;
	text-decoration: none;
	line-height: 22px;
	font-family: 'Poppins', sans-serif;
}

.external-badge:hover,
.badge:hover {
	background-color: var(--primary-blue);
	color: white;
	text-decoration: none;
}

/* FIM BADGES */

/* COMPONENTE INTERNO (DETALHES) */
.section-media-detail,
.section-award-detail,
.section-events-detail,
.section-news-detail,
.media-content {
	p {
		color: var(--gray-600);
	}

	span:not(.date-label) {
		display: block;
	}

	td {
		border: 0.5px solid var(--gray-600);
		color: black;
		padding: 15px;
	}

	td p {
		color: var(--gray-600);
	}

	a.badge {
		vertical-align: middle;
	}

	a.badge + a.badge {
		margin-left: 0.5rem;
	}

	.post-meta {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		flex-wrap: wrap;
	}

	.post-meta .date-label {
		display: inline;
	}
}

/* FIM DETALHES  */

/* BANNER */

.banner-hero-intern {
	min-height: 200px;
	display: flex;
	align-items: center;
}


.banner-hero-intern h1 ,.banner-hero-intern .banner-hero-intern__subtitle {
	font-family: 'Poppins', sans-serif;    
	font-weight: 500;
	color: var(--white);
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin: 0 auto;
}

.banner-hero-intern h1 {
	margin-top: 3rem;
	font-size: 18px;
	line-height: 120%;  

	&:has(+ .banner-hero-intern__subtitle:empty) {
		&::after {
			content: "";
			display: block;
			inline-size: 100px;
			block-size: 2px;
			margin: 5px auto 0;
			background: #a0cd4e;
			position: unset;
		}
	}
}

.banner-hero-intern .banner-hero-intern__subtitle {
	font-weight: 500;
	max-width: 1150px;
	font-size: 1rem;
	line-height: 24px;

	&::after {
		content: "";
		display: block;
		inline-size: 100px;
		block-size: 2px;
		margin: 5px auto 0;
		background: #a0cd4e; 
	}
}

.banner-hero-intern .banner-bg {
	transition: all 0.5s ease-in-out;
	object-fit: cover;
	object-position: center;
}

@media (width >= 992px) {
	.banner-hero-intern {
		height: 30vh;
	}
	
	.banner-hero-intern.large-size {
      height: 42vh;
    }

	.banner-hero-intern h1 {
		line-height: 48px;
		font-size: 40px;

		&:has(+ .banner-hero-intern__subtitle:empty) {
			&::after {
				position: absolute;
				left: 45%;
			}
		}

		&.banner-hero-intern__subtitle {
			font-size: 28px;
			line-height: 38px;
		}
	}

	.banner-title {
		font-family: var(--font-heading-menu-and-filter);
		font-weight: 500;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		position: relative;
		color: var(--white);
	}

	.banner-title::after {
		content: "";
		display: block;
		inline-size: 62px;
		block-size: 2px;
		margin: 5px auto 0;
		background: #a0cd4e;
		border-radius: 2px;
	}
}

/* FIM BANNER */

/* LISTA RÁPIDA */
.quick-list-section {
	max-width: 390px;
	border-bottom: 1px solid var(--bs-gray-300);
	padding-block: 0 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	height: fit-content;

	.section-title::after {
		inline-size: 60px;
		block-size: 2px;
		background: var(--brand-licks-green);
	}

	.quick-list {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding: 0;
	}

	li,
	span,
	i::before {
		color: var(--gray-600);
		font-size: 12px;
	}

	p {
		font-size: 14px;
		color: var(--gray-600);
	}

	img.cover {
		width: 100%;
		margin-bottom: 20px;
	}

	.quick-list-item {
		border-bottom: 0;
	}

	.quick-list-item:last-child {
		border-bottom: 0;
	}

	.quick-list-item img {
		inline-size: 90px;
		block-size: 60px;
		object-fit: cover;
		border-radius: 5px;
	}

	.section-title {
		font-weight: 400;
		font-size: 16px;
	}

	.item-title {
		margin: 0 0 0.125rem;
		line-height: 1.3;
		font-weight: 400;
	}

	.date {
		color: var(--brand-muted);
	}

	.date .bi {
		font-size: 1rem;
	}

	@media (width >= 768px) {
		.quick-list-section {
			margin-top: 0;
		}
	}
}

/* FIM LISTA RAPIDA */

/* FILTERS */

.search-wrapper {
	position: relative;
	flex-grow: 1;
	border: 1px solid var(--bs-gray-300);
	border-radius: 0.5rem;
	padding-right: 10px;
	background-color: var(--white);

	&:focus-within {
		box-shadow: 0 0 0 0.2rem rgb(var(--bs-primary-rgb) 0.15);
		border-color: color-mix(in srgb, var(--bs-primary) 55%, var(--white) 45%);
	}

	.clear-link {
		color: var(--brand-muted);
		font-size: 0.9rem;
		white-space: nowrap;

		&:hover {
			color: var(--bs-link-hover-color);
			text-decoration: underline;
		}
	}
}

.filters {
	inline-size: 100%;
}

.filter-chip {
	min-inline-size: 240px;
	max-width: 250px;
}

@media (width <= 575.98px) {
	.filter-chip {
		min-inline-size: min(100%, 320px);
		max-width: unset;
	}
}

.section-custom:has(#blog-list-container) {
	& > .row {
		margin: 0 auto !important;
		max-width: 1320px;
	}
}

/* LISTA BLOGS */
.section-blog-detail {
	img {
		max-width: 100%;
	}
	
	& > .row * + * {
		margin-block-start: 10px;
	}
}
.blog-list {
	max-width: 760px;
	margin: 0 0 auto;
	padding-right: 12px;
	padding-block: 20px 100px;

	h2 {
		color: var(--gray-850);
		letter-spacing: 0;
		text-transform: none;
		font-size: 26px;
		line-height: 30px;
	}

	.pagination-controls {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 2rem;
	}

	#btn-next,
	#btn-prev {
		color: var(--gray-850);
		font-weight: bold;
		background-color: #fafafa;
		border: 1px solid #ccc;
		border-radius: 2px;
		padding: 9px 20px;
		font-size: 14px;
		display: flex;
		align-items: center;
		gap: 0.5rem;

		&:hover {
			color: var(--white);
			background-color: var(--primary-green);
		}
	}
}

.blog-card {
	margin-bottom: 40px;

	p {
		margin-top: 10px;
		color: var(--gray-600);
	}

	a {
		color: #000;

		&:hover {
			color: #000;
		}
	}

	img {
		width: 100%;
	}

	.blog-card--date {
		color: var(--gray-600);
	}

	.details-link {
		font-size: 14px;
		border: 1px solid #76767640;
		background-color: #76767640;
		border-radius: 5px;
		margin-top: 10px;
		padding: 3px 15px;
		text-decoration: none;
		transition: all .2s;
		width: max-content;
	}
}

@media screen and (width <= 767.98px) {
	.blog-list {
		padding-right: 0;
	}
}

/* LABEL DATA */
.date-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--gray-600);
	font-size: 12px;
	line-height: 26px;
}

.bi-calendar-fill {
	font-size: 12px;
	color: var(--gray-600);
}

/* Newsletter global */

.newsletter-form {
	position: relative;

	textarea {
		resize: none;
		height: 52px;
		overflow: hidden;
	}

	.container-wide {
		width: 100%;
	}

	.newsletter-card--privacy-terms,
	.newsletter-card--privacy-terms p {
		font-size: 0.625rem;
		line-height: 150%;
	}

	.wrapper-checkbox {
		position: absolute;
		left: 0;
		bottom: -40px;
		width: max-content;

		label {
			display: none;
		}
	}
}

.newsletter-licks,
.newsletter-sidebar {
	.message-feedback {
		color: var(--white);
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 16px;

		&.success {
			p {
				color: green;
				background-color: var(--white);
				padding: 10px 24px;
				border-radius: 6px;
				margin-inline: 16px;
				width: 100%;
				max-width: max-content;
			}

			a {
				display: none;
			}
		}
	}

	label {
		& > * + * {
			margin-left: 8px;
		}
	}
}

/* Newsletter Section */

.newsletter-licks {
	background-color: var(--brand-licks-green);
	height: max-content;
	margin-top: 2rem;
	padding-block: 2rem !important;

	& .section-title {
		font-size: 24px;
		font-weight: 400;

		&::after {
			background: #a0cd4e;
			width: 50px;
		}
	}

	& .form-control-olive {
		background-color: #5c710f;
		border: 0;
		color: #ecf0e7;
		border-radius: 4px;
		padding-block: 0.9rem;
	}

	& .form-control-olive::placeholder {
		color: rgb(255 255 255 / 65%);
	}

	& .form-control-olive:focus {
		box-shadow: 0 0 0 0.2rem rgb(255 255 255 / 15%);
	}

	& .btn {
		border-radius: 4px;
		min-height: var(--nl-control-height);
	}

	& [type="submit"] {
		font-weight: 400;
		letter-spacing: 1px;
		height: 52px;
		text-transform: uppercase;
		font-size: 11px;
	}

	input::placeholder,
		textarea::placeholder {
			font-size: 14px;
		}

	& .text-terms-of-acceptance {
		padding: 16px 16px 0 30px;

		a {
			color: #00e;
			font-size: 12px;
			font-weight: 400;
			text-decoration: underline;
		}

		p, label, span {
			color: var(--white);
			text-align: center;
			margin-block-end: 10px;
			font-size: 12px;
			font-weight: 300;
		}
	}

	& .form-check {
		padding-inline-start: 32px;
	}
}

@media (width >= 992px) {
	.newsletter-licks {
		& .form-control-olive {
			min-height: var(--nl-control-height);
		}
	}
}

/* Newsletter Sidebar */

.newsletter-sidebar {
	padding-block: var(--space-md);

	.newsletter-card {
		border: 1px solid var(--bs-gray-300);
		border-radius: var(--bs-border-radius-lg);
		padding: 10px;
	}

	.newsletter-header {
		.toggle-btn {
			right: 0.25rem;
			top: 0.25rem;
			padding: 2px;
			width: 20px;
			height: 20px;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			color: var(--bs-gray-700);
			border: 1px solid var(--bs-gray-300);
			background-color: var(--white);

			&:hover {
				background-color: var(--bs-gray-100);
			}

			i {
				display: flex;
			}
		}

		p {
			font-size: 0.8125rem;
		}
	}

	.newsletter-header--wrapper {
		display: flex;
		align-items: center;
		gap: 8px;
		justify-content: space-between;
	}

	.newsletter-form {
		position: relative;

		.form-control::placeholder {
			font-weight: 600;
			color: var(--bs-gray-500);
		}

		.form-control {
			background-color: var(--white);
			height: 34px;
			padding: 0.375rem 0.75rem;
		}

		.form-control:focus {
			box-shadow: unset;
		}

		input,
		textarea {
			font-size: 0.875rem;
			font-weight: 500;
		}

		.form-control::placeholder,
		textarea::placeholder {
			font-size: 0.8125rem;
			font-weight: 400;
			opacity: 1;
		}
	}

	.container-wide {
		width: 100%;
	}

	.newsletter-card--privacy-terms {
		& p, label, span, a {
			font-size: 0.625rem;
			line-height: 14px;
			color: #121212;
		}
	}

	& button[type="submit"] {
		font-size: 0.8125rem;
		border-radius: 5px;
		opacity: 0;
		transition: all 0.2s ease-in-out;

		&.visible {
			opacity: 1;
		}

		&.btn-primary:disabled {
			background-color: var(--bs-primary);
			border-color: var(--bs-primary);
		}
	}

	.wrapper-checkbox {
		position: relative;
		bottom: unset;
		display: flex;
		width: 100%;
		align-items: flex-start;
		gap: 6px;
		margin-block-end: 8px;
	}

	.message-feedback {
		& span {
			color: var(--gray-600);
			font-size: 14px;
		}

		&.success p {
			color: var(--white);
			background-color: #85a216;
			max-width: unset;
			margin-inline: unset;
			text-align: center;
			min-height: 80px;
			border-radius: unset;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 14px;
			font-weight: 600;
		}
	}
}

/* IFRAME LINKEDIN */

.iframe-linkedin-container {
	width: 100%;
	margin-top: 1rem;
}

.linkedIn-icone-iframe {
	max-width: 30px;
}

.lista-detalhes {
	li {
		padding: 20px 0;
	}

	.team-card {
		img {
			margin: 0 !important;
		}

		.photo {
			width: 100px !important;
			height: 100px !important;
			object-fit: cover;
			border-radius: 50%;
			margin: 0;
		}

		.team-role {
			display: none !important;
		}
	}

	.team-name {
		margin-bottom: 0 !important;
		font-size: 26px;
		color: var(--gray-600);
		line-height: 1.2;
	}
}

.lista-detalhe-teamMembers {
	flex-direction: column !important;
	
	margin-top: 2rem;
}

.lista-detalhe-teamMembers .team-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	text-align: left;
	padding: 5px 0;
}

.lista-detalhe-teamMembers li {
	flex: 1 0 0% !important;
	display: flex;
	justify-content: stretch;
	margin-top: 0 !important;
	width: 100%;
}

.lista-detalhe-teamMembers li:first-child {
	border-top: 1px solid var(--bs-gray-300) !important;
}

.lista-detalhe-teamMembers li:not(:last-child) {
	border: 0;
	border-bottom: 1px solid var(--bs-gray-300);
	opacity: 1;
}

/* TEXT AND IMAGE */
.text-and-image .img-with-text {
   object-fit: contain!important;
}

.text-and-image {
	& > div {
		padding-inline: unset;
	}


	.title {
		color: var(--brand-title);
		text-transform: none;
		font-size: 1.75rem;
		font-weight: 700;
		line-height: 1.5em;
	}

	.desc {
		color: var(--brand-text);
		margin-bottom: 10px;
		font-size: 1rem;
		font-weight: 400;
		line-height: 26px;

		& p + p {
			margin-block-start: 1rem;
		}

		& a {
			text-decoration: underline;
			text-underline-offset: 2px;
		}
	}

	.media {
		display: flex;
		justify-content: flex-end;
		width: 100%;
		max-width: 450px;
		max-height: 430px;
		padding-inline: unset;
		overflow-y: hidden;

		@media (width >= 920px) {
			min-width: 450px;
		}

		@media (width >= 1800px) {
			max-width: 650px;
			min-width: 650px;
		}

		& .text-and-image--wrapper {
			flex-direction: column-reverse !important;
			gap: 8px !important;
		}

		& img {
			object-fit: cover;
			width: 100%;
			height: auto;

			&.border-radius {
				border-radius: 1rem;
			}

			@media (width >= 920px) {
				min-height: 430px;
			}
		}
	}

	&.media-sm {
		& .media {
			border-radius: unset;

			& img {
				min-height: 236px;
			}

			@media (width >= 768px) {
				max-width: 254px;
				min-width: 254px;
				height: 170px;

				& img {
					min-height: unset;
				}
			}
		}
	}

	&.media-origin-size {
		& .media {
			@media (width >= 1200px) {
				width: max-content;
				min-width: max-content;

				& img {
					object-fit: contain;
					min-height: unset;

					&.border-radius {
						object-fit: cover;
						height: auto;
					}
				}
			}
		}
	}
}

/* TITLE, IMAGE AND TEXT */

.title-image-and-text {
	background-color: var(--brand-background);

	.title-image-and-text__container {
		padding-inline: 10px;
	}

	.title-image-and-text__title {
		letter-spacing: 0.01em;
		margin-block-end: var(--space-md);
		font-size: 1.75rem;
	}

	.title-image-and-text__media {
		max-inline-size: 450px;
		margin-inline: auto;
	}

	.title-image-and-text__image {
		border-radius: var(--bs-border-radius-lg);
	}

	.title-image-and-text__content {
		max-inline-size: 78ch;

		& p {
			color: var(--brand-text);
			margin-bottom: 10px;
			font-size: 1rem;
			font-weight: 400;
			line-height: 26px;
		}
	}

	.title-image-and-text__text {
		color: #475569;
		line-height: 1.8;
		font-size: 1rem;
	}
}

@media (width >= 992px) {
	.title-image-and-text {
		.title-image-and-text__title {
			margin-block-end: 1.25rem;
		}

		.title-image-and-text__media {
			margin-block-start: 0.25rem;
		}
	}
}

@media (width >= 1280px) {
	.title-image-and-text__wrapper > .title-image-and-text__wrapper--block:first-child {
		padding-inline: unset;
	}

	.title-image-and-text__wrapper--block {
		max-width: max-content;
		margin-top: unset;
	}
}

/* TEXT AND IMAGE IN COLUMNS */

.text-and-image-in-columns {
	& p:empty {
		display: none;
	}

	&:has(+ .text-and-image-in-columns) {
		padding-block: 1rem 0;
	}

	& + .text-and-image-in-columns {
		padding-block: 1rem;
	}

	& p + p {
		margin-block-start: 1rem;
	}

	& *:has(> img[src=""]) {
		display: none;
	}

	& .text-and-image-in-columns__main {
		display: flex;
		flex-direction: column-reverse;
		gap: 16px;

		@media (width >= 992px) {
			display: grid;
			grid-template-columns: 1fr auto;
		}
	}

	& .text-and-image-in-columns__col {
		padding-inline: unset;
		margin-block-start: unset;
	}

	& .text-and-image-in-columns__col--right {
		width: 100%;
		max-width: 460px;
	}

	& .text-and-image-in-columns__intro {
		color: var(--brand-text);
	}

	& .text-and-image-in-columns__image--wide img {
		inline-size: 100%;
		block-size: auto;
	}

	& .text-and-image-in-columns__side-image img {
		max-width: 460px;
		width: 100%;

		@media (width >= 992px) {
			width: max-content;
		}
	}

	& .text-and-image-in-columns__logo img {
		width: 100%;
		block-size: auto;
	}

	& .text-and-image-in-columns__footer-text {
		padding-inline: unset;
	}

	& .text-and-image-in-columns__footer-text a {
		text-decoration: none;
	}

	& .text-and-image-in-columns__footer-text a:hover {
		text-decoration: underline;
	}

	@media (width >= 992px) {
		& .text-and-image-in-columns__image--wide img {
			max-inline-size: 752px;
		}

		& .text-and-image-in-columns__logo img {
			inline-size: 180px;
		}
	}
}

/* TEXT BANNER WIDESCREEN */

.text-banner-widescreen {
	background-color: #2f3260;
	width: 100%;
	padding-block: 1rem;
	color: var(--white);

	&.background-green {
		background-color: var(--brand-primary);
	}

	.container-wide {
		padding-inline: 1rem;
	}

	.banner-text {
		font-family: Segoeui, sans-serif;
		letter-spacing: 0.01em;
		line-height: 1.6;
		font-size: 1.25rem;
		width: 100%;
		max-width: 1072px;
		margin: 0 auto;

		& p {
			color: var(--white);
		}

		@media (width <= 992px) {
			font-size: 1rem;
			line-height: 24px;
		}
	}

	@media (width >= 768px) {
		padding-block: 1.25rem;
	}

	@media (width >= 992px) {
		padding-block: 1.5rem;
	}
}

/* CIRCLES OF ICONS AND TEXT */

.circles-of-icons-and-text {
	background: #2f345c;
	color: var(--bs-light);

	.opacity-85 {
		opacity: 0.92;
	}

	.role-grid {
		row-gap: 3rem;
	}

	.role-grid > li {
		padding-top: 1.25rem;
		margin-top: unset;
		position: relative;
	}

	.role-card {
		min-height: 140px;
		flex-flow: column nowrap;
	}

	.role-card > .flex-shrink-0 {
		margin-right: 0 !important;
		margin-bottom: 1rem;
		align-self: center;
	}

	.icon-circle {
		--size: 120px;

		inline-size: var(--size);
		block-size: var(--size);
		border-radius: 50%;
		background: var(--white);
		color: #0e1114;
		display: grid;
		place-items: center;

		&:has(img[src=""]) {
			display: none;
		}
	}

	.icon-circle img {
		inline-size: 56px;
		block-size: 56px;
		object-fit: contain;
	}

	.role-content {
		h3 {
			margin-bottom: 0.5rem;
			color: var(--bs-light);
			line-height: 150%;
			font-size: 1rem;
			font-weight: 700;
			text-decoration: underline;
		}

		p {
			color: var(--bs-light);
			line-height: 150%;
			font-size: 1rem;
		}
	}

	.role-sep {
		border: 0;
		border-top: 1px solid rgb(255 255 255 / 30%);
		margin: 2.25rem 0;
		opacity: 1;
	}

	@media (width >= 768px) {
		.col-divider {
			border-left: 2px solid var(--bs-light);
			padding-left: 2rem;
		}

		.role-sep {
			inline-size: 88%;
			margin-left: 6%;
		}

		.role-card {
			flex-direction: row;
		}

		.role-card > .flex-shrink-0 {
			margin-right: 1.5rem !important;
			margin-bottom: 0;
			align-self: flex-start;
		}

		.role-grid > li {
			border-top: 0;
		}

		.role-grid > li:nth-child(n + 3)::before {
			content: "";
			position: absolute;
			top: -20px;
			left: 0;
			height: 1px;
			background-color: var(--bs-light);
			width: 101%;
		}

		.role-grid > li:nth-child(even) {
			border-left: 1px solid var(--bs-light);
			padding-left: 2rem;
		}
	}

	@media (width >= 1200px) {
		.icon-circle {
			--size: 130px;
		}

		.icon-circle i {
			font-size: 3.75rem;
		}

		.icon-circle img {
			inline-size: 60px;
			block-size: 60px;
		}
	}
}

/* PRIVACY TERMS MODAL */

.lumis-service-privacyterm {
	background-color: var(--gray-850) !important;

	.lum-content-detail {
		max-height: unset !important;

		& h1,
		& h2,
		& h3,
		& h4,
		& h5,
		& h6 {
			color: var(--white);
		}

		& p {
			color: var(--white);
			margin-bottom: 1rem !important;
		}

		a {
			color: var(--primary-green);
		}
	}

	.lum-header-buttons {
		padding: 16px 0 10px;
		display: flex;
		gap: 16px;

		@media (width <= 768px) {
			flex-direction: column;
		}

		& li {
			list-style: none;
			margin: unset !important;
			display: flex;

			&.lum-last a {
				background-color: var(--white);
				color: var(--gray-850) !important;
				padding: 10px;
			}
		}

		.lum-button-primary {
			background-color: var(--brand-licks-green);
			color: var(--white);
			padding: 10px;
		}
	}

	.ui-dialog.ui-corner-all.ui-widget.ui-widget-content.ui-front {
		.ui-dialog-titlebar.ui-corner-all.ui-widget-header.ui-helper-clearfix {
			display: none;
		}
	}
}

div[class*="privacy-term--modal"] {
	.ui-dialog-titlebar {
		display: none;
	}

	.lum-content-detail {
		a {
			color: var(--primary-green);
		}

		p {
			color: var(--gray-600);
			margin-bottom: 1rem !important;
		}
	}

	.ui-dialog-buttonpane {
		left: 0;

		& .lum-button {
			background-color: var(--white);
			color: var(--gray-850);
			padding: 10px;

			&:hover {
				border: 1px solid var(--gray-850);
			}
		}

		& .lum-button-primary {
			background-color: var(--brand-licks-green);
			color: var(--white);
			padding: 10px;
			border: unset;
			border: 1px solid var(--primary-green);

			&:hover {
				border: 1px solid var(--gray-850);
			}
		}
	}
}

/* CARD WITH IMAGE GRID */

.card-with-image-grid-section {
	padding-inline: 1rem;

	.section-intro {
		max-width: 980px;
		margin-inline: auto;
		color: var(--brand-text);

		p {
			color: var(--brand-text);
			font-family: Segoeui, sans-serif;
			font-size: 16px;
			font-weight: 400;
			line-height: 26px;
		}

		.mb-1 {
			margin-bottom: 10px;
		}
	}

	h2.h2 {
		font-size: 2em;
		font-weight: 700;
		line-height: 24px;
		color: var(--brand-licks-green);
		max-width: 600px;
		margin: 0 auto;
	}

	.row {
		justify-content: center;

		.col {
			.card-with-image {
				border-radius: 0;
				box-shadow: 0 6px 7px -2px #00000036;
				width: 100%;
				max-width: 356px;

				.card-img-top {
					border-radius: 0;
					max-width: 100%;
					max-height: 180px;
					overflow: hidden;
				}

				.card-body {
					padding: 16px;
				}

				.card-footer {
					padding: 16px;
				}

				.btn-apply {
					float: none;
					margin-left: auto;
					margin-right: auto;
					padding: 10px 40px;
					border-radius: 0;
					color: var(--white);
					background-color: var(--brand-licks-green);
					transition: all 0.2s ease-in-out;

					&:hover {
						opacity: 0.9;
					}
				}
			}
		}
	}

	.card-wrapper {
		max-width: 356px;
	}

	.card-with-image {
		display: flex;
		flex-direction: column;
		position: relative;
		overflow: hidden;
		border: 1px solid var(--bs-gray-300);
		box-shadow: none;
		background: var(--white);
	}

	.card-with-image .card-body {
		padding: 1.25rem 1.5rem;
	}

	.card-with-image .card-footer {
		padding: 0 1.5rem 1.5rem;
		text-align: center;
	}

	.card-with-image-title {
		font-size: 1rem;
		color: #2f3260 !important;
		font-weight: 700;
	}

	.card-with-image p {
		color: var(--brand-text);
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.card-img-top {
		aspect-ratio: 16/9;
		object-fit: cover;
	}

	.card-hover-lift:hover {
		transform: none;
		box-shadow: var(--elev-1);
	}

	.btn-apply {
		text-transform: uppercase;
		font-weight: 700;
		letter-spacing: 0.02em;
		width: auto !important;
		min-width: 160px;
		border-radius: 0.25rem;

		&:hover {
			color: var(--bs-btn-color);
		}
	}
}

/* BLOCK IMAGE */

.block-image {
	padding-block-end: 1rem;
	& .block-image--title {
		color: var(--gray-600);
		margin-bottom: 10px;
		font-family: Segoeui, sans-serif;
		font-size: 1rem;
		font-weight: 400;
		line-height: 26px;
		text-align: center;
	}

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

	& figure {
		margin: 0 auto;
		display: block;
		width: 100%;
	}

	& figcaption {
		color: var(--gray-600);
		font-size: 16px;
		font-weight: 400;
		line-height: 26px;
	}

	&.image--xl figure {
		max-width: 1324px;
	}

	&.image--lg figure {
		max-width: 820px;
	}

	&.image--md figure {
		max-width: 614px;
	}

	&.image--sm figure {
		max-width: 500px;
	}

	&.image-fullscreen figure {
		padding-inline: unset;
	}
}

/* CONTENT WRAPPER */

.content-wrapper {
	img, iframe, video {
		width: 100%;
	}
	& .section {
		background-color: transparent !important;
	}

	h3 {
		font-size: 28px;
		line-height: 1.5em;
		margin-block-end: unset;
	}

	& > * {
		max-width: 1320px;
		margin-inline: auto;
		padding: 0.5rem 1rem;

		&:first-child {
			padding: 1.5rem 1rem 0.5rem;
		}

		&:last-child {
			padding: 0.5rem 1rem 1.5rem;
		}

		& .row > * {
			padding: unset;
			margin-block-start: 1rem;
		}
	}
	
	.language-picker-custom__container, .lumis-service-locale-localePicker {
		padding-inline: unset;
	}
}

.wrapper-lottie {
	& .section {
		background-color: transparent !important;
	}

	& > * {
		margin-inline: auto;

		&:first-child {
			padding: 1.5rem 1rem 0.5rem;
		}

		&:last-child {
			padding: 0.5rem 1rem 1.5rem;
		}
	}
}

/* Texto and imagem link */
.texto-and-imagem-link {
	.title-badge-block {
		padding-inline: 16px;
		display: flex;
		flex-direction: column;
		align-items: center;

		.title-badge {
			width: 100%;
			max-width: 332px;
			font-size: 1rem;
			font-weight: 400 !important;
			color: var(--brand-title);
		}

		.badge-img {
			width: 200px;
			height: 200px;
			object-fit: contain;
		}
	}

	.rich-text {
		color: #2b333b;

		p {
			margin-bottom: 0.9rem;
		}

		a {
			text-decoration: underline;
			text-underline-offset: 2px;
		}
	}
}

/* TEXT LIST AND IMAGE */

.text-list-and-image {
	.thumb {
		inline-size: 100px;
		block-size: 100px;
		object-fit: cover;
	}

	.col-12,
	.mb-3 {
		margin-block-start: unset;
	}

	.content {
		p {
			color: var(--brand-text);
		}
	}

	.aside-img {
		margin-inline: auto;
	}

	.list-item {
		align-items: center;

		& img {
			object-fit: contain;
			width: 60px;
			height: 60px;
		}
	}

	@media (width >= 992px) {
		h2 {
			margin-bottom: 0.75rem;
		}

		.list-item {
			margin-bottom: 1.75rem !important;

			& img {
				width: 100px;
				height: 100px;
			}
		}
	}
}

/* TEXT COLUMNS */

.text-columns {
	position: relative;
	min-height: max-content;
	padding-block-end: 120px;

	& .text-columns__image-background {
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		object-fit: cover;
		height: 140px;
	}

	.tc-grid {
		row-gap: 1.75rem;

		@media (width >= 992px) {
			column-gap: 1.5rem;
		}
	}

	.tc-col {
		padding-inline: unset;

		p {
			margin-bottom: 1rem;
			line-height: 1.75;
		}

		strong {
			color: var(--white);
		}

		margin-block-start: unset;

		@media (width >= 992px) {
			padding-inline-end: 20px;

			&:nth-child(3n + 1) {
				padding-inline-start: unset;
			}
		}
	}

	.text-columns__image-block {
		width: 100%;
		object-fit: contain;

		@media (width >= 992px) {
			max-width: 300px;
		}
	}
}

/* SINGLE CARD CAROUSEL */

.single-card-carousel {
	width: 100%;

	.section-title {
		text-align: left;
		margin-bottom: 1.25rem;
	}

	.carousel-frame {
		position: relative;
	}

	.single-card-swiper {
		padding-block-end: 32px;
	}

	.card {
		border-radius: var(--bs-border-radius-lg);
		background-color: transparent;

		& .card-content {
			gap: 16px;
			background-color: var(--white);
			border-radius: 5px;
			width: 275px;
			margin: 0 auto !important;

			& .card-content--image,
			.card-content--text {
				margin: unset;
				padding: unset;
			}

			& .card-content--image:has(img[src=""]) {
				display: none;

				& + .card-content--text {
					width: 100%;
				}
			}

			@media (width >= 992px) {
				width: 94%;
				flex-wrap: nowrap;
				gap: unset;

				& .card-content--image,
				.card-content--text {
					width: 50%;
					padding: 0.5rem;
				}

				& .card-content--image img {
					object-fit: contain;
					object-position: center;
					max-height: 332px;
					width: 100%;
				}
			}
		}

		& h3 {
			font-family: Poppins, sans-serif;
			font-size: 32px;
		}

		& h3,
		p,
		span,
		strong,
		i {
			color: var(--gray-850);
		}

		& .date {
			font-size: 12px;
		}

		& .description {
			margin-block-start: 20px;
		}
	}

	.swiper-button-next,
	.swiper-button-prev {
		&::after {
			color: var(--white);
			font-size: 38px;
			font-weight: 700;
		}
	}

	.swiper-button-prev {
		left: 0;
	}

	.swiper-button-next {
		right: 0;
	}

	.swiper-pagination {
		bottom: 0;
	}

	.swiper-pagination-bullet {
		display: inline-block !important;
		width: 12px;
		height: 12px;
		background: var(--white);
	}

	& span {
		display: inline-block;
	}
}

/* TABLE COLUMNS */

.table-columns,
.table-columns--block {
	& .section-heading {
		color: var(--gray-850);
		text-transform: none;
		font-size: 2em;
		font-weight: 700;
		line-height: 1.5em;
		font-family: Segoeui, sans-serif;
		letter-spacing: 0.01em;
		margin-bottom: 1.25rem;
	}

	& .table-columns__list,
	& .table-columns__list--block {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	& .row {
		flex-wrap: wrap;
		gap: 32px;
		margin-top: 0.5rem;

		@media (width >= 992px) {
			flex-wrap: nowrap;
		}
	}

	& .col-md-6 {
		flex: unset;
		flex-shrink: unset;
		margin-block-start: 16px;
		padding: unset;
	}

	& .col-heading {
		display: flex;
		align-items: center;
		margin-bottom: 0.5rem;
		overflow-x: hidden;

		&::after {
			content: "";
			position: relative;
			left: 4px;
			bottom: -4px;
			width: 83%;
			height: 1px;
			background: rgb(56 59 113);
			display: inline-block;
		}

		& .label {
			font-size: 22px;
			color: rgb(56 59 113);
			font-family: Segoeui, sans-serif;
			font-weight: 700;
			letter-spacing: 0.04em;
			text-transform: uppercase;
			white-space: nowrap;
		}
	}

	& .equipment-table {
		width: 100%;
		border: none;

		& thead {
			border: 0;

			& tr {
				border: 0;

				& th {
					font-weight: 500;
					font-size: 18px;
					color: rgb(56 59 113);
					border-right: none;
					padding: 0;

					&:last-child {
						text-align: right;
					}
				}
			}
		}

		& tbody {
			& tr {
				&:first-child {
					background: var(--white);
					font-weight: 500;
					font-size: 18px;
					color: rgb(56 59 113);
					border-right: none;

					& td {
						color: rgb(56 59 113);
						font-weight: 500;
						border: unset;
						border-inline: none;

						&:last-child {
							width: 32%;

							@media (width >= 992px) {
								width: 20%;
							}
						}
					}
				}

				&:nth-child(even):not(:first-child) {
					background: linear-gradient(
						90deg,
						rgb(255 255 255 / 100%) 0%,
						rgb(245 245 245 / 100%) 33%,
						rgb(245 245 245 / 100%) 66%,
						rgb(255 255 255 / 100%) 100%
					);
				}

				&:nth-child(odd):not(:first-child) {
					background: var(--white);
				}

				& td {
					color: #000;
					padding: 0.5rem 0.5rem 0.5rem 0;
					vertical-align: middle;
					border-inline: none;
					word-break: break-word;
				}

				& td + td {
					padding-inline-start: 8px;
					border-inline-start: 1px solid var(--gray-300);
				}
			}
		}
	}
}

.table-columns--block {
	max-width: 1320px;
	margin-inline: auto;
	padding-block: var(--space-lg);
	padding-inline: 1rem;
}

.table-columns .table-columns--block {
	padding-block: unset !important;
	padding-inline: unset !important;
}

/* DIVIDER */

.divider {
	padding-block: 1rem 3rem;

	& .divider__content {
		width: 95%;
		margin: 0 auto;

		&::after,
		&::before {
			content: "";
			width: 100%;
			height: 2px;
			position: relative;
			background-color: var(--brand-primary);
		}

		&.blue {
			&::after,
			&::before {
				background-color: #2f3260;
			}
		}

		&.red {
			&::after,
			&::before {
				background-color: #da1d65;
			}
		}

		&.orange {
			&::after,
			&::before {
				background-color: #f99d20;
			}
		}
	}

	& .divider__text {
		width: 100%;
		font-size: 20px;
		font-weight: 400;
		max-width: 240px;
		min-width: 240px;
		margin-inline: 8px;

		@media (width >= 992px) {
			max-width: 552px;
			min-width: max-content;
			margin-inline: 100px;
		}
	}
}

/* TEXT DROPDOWN ANIMATION */

.text-dropdown {
	position: relative;
	overflow: hidden;

	& h2 {
		letter-spacing: 5px;
		font-size: 22px;
		line-height: 32px;
		color: #85a216;
		text-align: center;
		text-transform: uppercase;
		max-width: 550px;
		font-weight: 700;

		@media (width >= 992px) {
			font-size: 35px;
			letter-spacing: 10px;
		}
	}

	& .text-dropdown__additional-text {
		text-align: center;
		max-width: 572px;
	}
}

.text-dropdown h2,
.text-dropdown p {
	opacity: 0;
	transform: translateY(-100%);
	text-shadow: 0 -18px 0 color-mix(in srgb, currentColor 35%, transparent),
		0 -36px 0 color-mix(in srgb, currentcolor 20%, transparent),
		0 -54px 0 color-mix(in srgb, currentcolor 10%, transparent);
	animation: dropDown 1s cubic-bezier(.22,1,.36,1) forwards;
	animation-delay: calc(var(--order, 1) * 0.2s);
	will-change: transform, opacity, text-shadow;
}

@keyframes dropDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
		text-shadow: 0 -18px 0 color-mix(in srgb, currentColor 35%, transparent),
			0 -36px 0 color-mix(in srgb, currentColor 20%, transparent),
			0 -54px 0 color-mix(in srgb, currentColor 10%, transparent);
	}

	to {
		transform: translateY(0);
		opacity: 1;
		text-shadow: none;
	}
}

/* LOTTIE CONTENT */

.lottie-content {
	max-width: 1150px;
	margin: 0 auto;
}

/* SIMPLE CARDS LIST */

.simple-cards-list {
	background-color: transparent;

	.card-content {
		padding-inline: 20px;
	}

	.card {
		background-color: #f0f0f0;
		border-radius: 5px;
		min-block-size: 230px;
		display: flex;
		flex-direction: column;
		box-shadow: 0 0 #0000, 0 1px 0.4px #00000008, 0 2px 0.8px #0000000a, 0 3.4px 1.6px #0000000b,
			0 5.4px 2.9px #0000000c, 0 8.9px 5.3px #0000000c, 0 15.4px 10.4px #0000000d,
			0 30.6px 22.8px #0000000e;
		position: relative;
		isolation: isolate;

		&:hover {
			.icon-circle,
			.icon-circle-sm {
				background: #3e3271;
			}

			.icon-circle img,
			.icon-circle-sm img {
				filter: invert(1);
			}
		}
	}

	.card-title {
		margin-top: 10px;
		margin-bottom: 5px;
		font-size: 18px;
		font-weight: 600;
		line-height: 22px;
		color: #121212;
		font-family: Poppins, sans-serif;
	}

	.icon-circle,
	.icon-circle-sm {
		inline-size: 56px;
		block-size: 56px;
		background: var(--gray-300);
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 8px rgb(0 0 0 / 6%) inset;
		transition: all 0.3s ease-in-out;
	}

	.icon-circle img {
		inline-size: 28px;
		block-size: 28px;
		object-fit: contain;
		filter: brightness(0) saturate(100%) invert(47%) sepia(0%) saturate(49%) hue-rotate(161deg)
			brightness(98%) contrast(97%);
	}

	.icon-circle-sm {
		inline-size: 34px;
		block-size: 34px;
	}

	.icon-circle-sm img {
		inline-size: 18px;
		block-size: 18px;
		object-fit: contain;
		filter: brightness(0) saturate(100%) invert(47%) sepia(0%) saturate(49%) hue-rotate(161deg)
			brightness(98%) contrast(97%);
	}

	.icon-circle img,
	.icon-circle-sm img {
		transition: all 0.3s ease-in-out;
	}
}

@media (width >= 992px) {
	.simple-cards-list {
		.card {
			min-block-size: 260px;
		}
	}
}

/* TEXT AND IMAGE BANNER */

.text-and-image-banner {
	background-image: linear-gradient(#2f3260, #212343);
	position: relative;
	padding-block: 72px 40px;

	@media (width >= 992px) {
		padding-block: 40px;
	}

	.container-wide {
		margin-block-start: 54px;
		padding-block-end: 40px;

		@media (width >= 992px) {
			margin-block-start: 144px;
			font-size: 3rem;
		}
	}

	.text-and-image-banner__label {
		color: var(--white);
		letter-spacing: 0;
		text-transform: uppercase;
		margin-top: 0;
		font-size: 2rem;
		font-weight: 400;
		line-height: 3rem;

		@media (width >= 992px) {
			font-size: 3rem;
		}
	}

	.title-highlight {
		letter-spacing: 0;
		text-transform: uppercase;
		margin-top: 0;
		font-weight: 700;
		color: #dec200;
		font-size: 3rem;
		line-height: 3rem;

		@media (width >= 992px) {
			font-size: 4rem;
			line-height: 4rem;
		}
	}

	.lead {
		color: #cbd5e1;
		font-weight: 400;
		font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
		line-height: 1.6;
	}

	.text-and-image__description {
		& * + * {
			margin-block-start: 16px;
		}

		p {
			font-family: var(--font-text);
			color: var(--white);
			font-size: 1rem;
			line-height: 1.7rem;
		}

		strong {
			color: var(--white);
		}
	}

	.btn-gold {
		font-family: var(--font-text);
		grid-column-gap: 10px;
		background-color: #dec200;
		color: #000;
		border-radius: 9px;
		justify-content: center;
		align-items: center;
		margin-top: 2rem;
		padding-top: 1rem;
		padding-bottom: 1rem;
		font-size: 1rem;
		line-height: 1rem;
		text-decoration: none;
		display: flex;
		transition: opacity 0.3s ease-in-out;

		& img {
			width: 16px;
			height: 16px;
		}
	}

	.btn-gold:hover {
		opacity: 0.8;
	}

	.text-and-image__image {
		position: relative;

		@media (width >= 1200px) {
			position: absolute;
			top: 0;
			right: 0;
			justify-content: flex-end;
		}

		& img {
			width: 100%;
		}
	}
}

/* LIST CARDS WITH SIMPLE TEXT */

.list-cards-with-simple-text {
	background: var(--white);

	.list-cards-with-simple-text__text-list {
		max-width: 1200px;
		flex-wrap: wrap;
		padding-inline: unset;
		list-style: none;

		&:has(> li:first-child strong:empty) {
			display: none !important;
		}

		& li {
			position: relative;
			padding-inline-start: 36px;
			padding-block: 20px;

			&::before {
				content: "";
				position: absolute;
				left: -14px;
				top: 50%;
				width: 50px;
				height: 24px;
				background: url(../assets/images/arrow-list.png) no-repeat center / contain;
				transform: translateY(-50%) rotate(-90deg);
			}
		}
	}

	.list-cards-with-simple-text__wrapper--description {
		color: var(--brand-secondary);
		max-width: 1560px;
		margin-bottom: 0;
		font-family: var(--font-text);
		font-size: 1.2rem;
		line-height: 2rem;
	}

	.list-cards-with-simple-text__wrapper--list {
		flex-wrap: wrap;
		max-width: 1560px;
		margin: 0 auto;
	}

	.list-cards-with-simple-text__card {
		width: 100%;
		max-width: 420px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 0;
		background: var(--white);
		border: 1px solid #dfdfdf;
		border-radius: 5px;
		padding: 0;
		min-height: 56px;
		color: var(--brand-text);
		overflow: hidden;

		@media (width >= 1200px) {
			min-width: 420px;
		}
	}

	.list-cards-with-simple-text__card--text {
		flex: 1 1 auto;
		order: 1;
		font-size: 1rem;
		font-family: 'Poppins', sans-serif;
		color: #6f6f6f;
		padding: 0.75rem 1rem;
	}

	.list-cards-with-simple-text__card--icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		order: 2;
		margin-left: auto;
		width: 56px;
		height: 56px;
		min-width: 56px;
		min-height: 100%;
		border-left: 1px solid var(--bs-gray-300);
		background: #76767640;
		color: var(--brand-secondary);
		font-size: 1.25rem;
		padding: 0;

		&:has(img[src=""]) {
			display: none;
		}

		& img {
			inline-size: 24px;
			block-size: 24px;
			object-fit: contain;
		}
	}

	@media (width >= 992px) {
		.section-title {
			margin-bottom: 2rem;
		}
	}
}

.title-and-line {
	.title-and-line__title {
		color: var(--brand-secondary);
		margin-bottom: 0;
		font-family: Poppins, sans-serif;
		font-size: 2.5rem;
		font-weight: 700;
		line-height: 3rem;
	}

	.title-and-line__line {
		inline-size: 64px;
		block-size: 6px;
		border: none;
		margin: unset;
		background-color: #dec200;
		height: 4px;
	}
}

/* LIST OF STEPS */

.list-of-steps {
	background-color: var(--white);

	.steps-row {
		gap: 20px;

		.step-col {
			.step-circle {
				background-color: var(--white);
				text-align: center;
				border: 2px solid #c9c9c9;
				border-radius: 50%;
				width: 100px;
				height: 100px;
				box-shadow: 2px 4px 10px #0003;
			}

			.steps-row__item--image {
				width: 60px;
				height: 60px;
				object-fit: contain;
			}

			.step-chevron img {
				width: 30px;
			}

			.step-text {
				width: 100%;
				max-width: 100px;
				font-family: var(--font-text);
				font-size: 1rem;
				line-height: 1.7rem;
			}
		}
	}

	@media (width >= 768px) {
		.steps-row {
			gap: 82px;

			& .steps-row__item {
				position: relative;
				overflow: visible;

				&:not(:last-child):after {
					content: "";
					position: absolute;
					right: -66px;
					top: 36px;
					width: 50px;
					height: 30px;
					background: url("../assets/images/arrow-steps.svg") no-repeat center / contain;
					transform: rotate(180deg);
				}
			}
		}
	}
}

/* LIST OF LARGE BUTTONS */

.list-of-large-buttons {
	background-color: var(--gray-300);

	.list-of-large-buttons__title {
		text-align: left;
		font-size: 2rem;
		color: #2f3260;
		font-family: Poppins, sans-serif;
		line-height: 4rem;
		margin-block-end: 20px;
	}

	.list-of-large-buttons__list {
		padding-block-end: 40px;
	}

	.btn-cta {
		background-color: var(--brand-licks-green);
		color: var(--white);
		border: 0;
		border-radius: 0.5rem;
		padding-block: 0.75rem;
		padding-inline: 1.5rem;
		text-align: start;
		font-size: 14px;
		font-weight: 600;
		font-family: var(--font-text);
		line-height: 20px;
	}

	.btn-cta:hover,
	.btn-cta:focus-visible {
		background-color: color-mix(in srgb, var(--brand-licks-green) 85%, #000 15%);
		color: var(--white);
	}

	@media (width >= 768px) {
		.list-of-large-buttons__title {
			text-align: center;
			font-size: 4rem;
			margin-block-end: 72px;
		}
	}
}

.simple-header {
  width: 100%;
  transition: background-color 0.2s ease-in-out;

	&.bg-transparent, &.bg-white {
		.simple-header-menu {
			@media (width <= 720px) {
				& .simple-header-menu__item .simple-header-menu__item--link {
					color: #fff !important;
				}
			}
		}
		.hamburger-menu {
			border: 1px solid var(--brand-secondary);
			background-color: transparent;
			& .hamburger-menu__lines {
				background-color: var(--brand-secondary);

				&::before,
				&::after {
					background-color: var(--brand-secondary);
				}
			}
		}
	}

	&.scrolling {
		background-color: #2f325f;
	}

	&.menu-open {
		.simple-header__wrapper {
			grid-template-rows: 1fr;
			overflow: visible;
		}
		.hamburger-menu {
			color: #2f325f;
		}
	}

	.simple-header__wrapper {
		z-index: 9999;
		width: 100%;
	}

	.hamburger-menu__checkbox {
		visibility: hidden;
		width: 0;
		height: 0;
		position: absolute;

		&:checked ~ .simple-header__wrapper {
			grid-template-rows: 1fr;
			overflow: visible;
		}

		&:checked ~ .hamburger-menu {
			background-color: #2f325f;
		}
	}

	.simple-header__logo {
		display: flex;
		width: 124px;
		height: 43px;

		& .simple-header__logo--image {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}
	}

	
	.hamburger-menu {
		position: relative;
		display: flex;
		width: 46px;
		height: 46px;
		padding: 10px;
		border: 1px solid #fff;
		border-radius: 8px;

		& .hamburger-menu__lines {
			position: relative;
			display: flex !important;
			width: 16px;
			height: 2px;
			background-color: #fff;
			border-radius: 999px;
			margin: 0 auto;

			&::before,
			&::after {
				content: "";
				display: block;
				width: 16px;
				height: 2px;
				background-color: #fff;
				border-radius: 999px;
				position: absolute;
			}

			&::before {
				top: -6px;
			}

			&::after {
				top: 6px;
			}
		}

		@media (width >= 920px) {
			display: none !important;
		}
	}
	

	.simple-header__wrapper {
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;    
		display: grid;
		grid-template-rows: 0fr;
		overflow: hidden;
		transition: all 0.2s linear;

		@media (width >= 920px) {
			position: relative;
			display: flex;
			justify-content: flex-start;
			align-items: center;
			background-color: transparent;
		}
	}

	.simple-header-menu {
		display: grid;
		overflow: hidden;
		background-color: var(--brand-blue);

		& ul,
		& li {
			list-style: none;
			padding-inline-start: unset;
			margin: unset;
			padding-block: 1rem;
		}

		@media (width >= 920px) {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 6px;
			width: 100%;
			background-color: transparent;

			& ul {
				margin: unset;
			}
		}

		.simple-header-menu__item {
			padding: 8px 32px;
			font-size: .875rem;
			font-weight: 500;
			line-height: 24px;
			text-decoration: none;

			@media (width >= 1600px) {
				font-size: 1.125rem;
			}

			& .simple-header-menu__item--link {
				color: #fff;
				width: 100%;
				transition: all 0.2s ease-in-out;

				@media (width >= 920px) {
					padding: 8px 24px;
					transition: all 0.2s ease-in-out;
					border-radius: 43px;

					&:hover {
						padding: 8px 24px;
						background-color: #fff;
						color: #2f3260;
					}
				}
			}

			@media (width >= 920px) {
				padding: 8px 0;
			}
		}
	}

	.btn-gold {
		background-color:#dec200;
		outline-offset: 0px;
		color: #2f3260;
		text-align: center;
		border-radius: 48px;
		outline: 2px solid #0000;
		justify-content: center;
		align-items: center;
		padding: 8px 24px;
		font-size: 14px;
		font-weight: 500;
		line-height: 24px;
		text-decoration: none;
		transition: all 0.2s;
		display: flex;
		margin: 16px 32px;

		@media (width >= 920px) {
			margin: unset;
		}

		@media (width >= 1600px) {
			font-size: 1.125rem;
		}
	}

	&.variant-full-screen {
		border-block-end: 1px solid #fff;

		&.scrolling {
			background-color: #3e3271;
		}

		&:checked ~ .hamburger-menu {
			background-color: #3e3271;
		}

		.container-wide {
			max-width: 1714px;
		}

		.simple-header-menu {      
			background-color: #2f3260;

			@media (width >= 920px) {
				background-color: transparent;
				justify-content: flex-end;
			}
		}
	}
}

.cke_editable .simple-header {
	background-color: #2f325f;
}

/* TRADEMARK REQUEST FORM */

.trademark-request-form {
	.trademark-request-form .request-card {
		border-radius: var(--bs-border-radius-lg);
	}

	.trademark-request-form h1 {
		font-weight: 700;
	}

	.trademark-request-form .btn-group .btn {
		flex: 1;
	}

	.trademark-request-form .btn-check:checked + .btn-outline-secondary {
		background-color: var(--bs-gray-100);
		color: var(--bs-btn-color);
		border-color: var(--bs-gray-400);
		font-weight: 600;
	}

	.message-feedback {
		display: block;
		color: #fff;
		border-radius: 5px;
		padding: 20px;

		p {
			font-family: var(--font-text);
			font-size: 14px;
			font-weight: 600;
			line-height: 20px;
			color: #fff;
		}
	}

	.message-feedback__success {
		background-color: #85a216;
	}

	.message-feedback__error {
		background-color: #5b0b11;
	}

	.trademark-request-form__image {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		min-height: 100vh;
		object-fit: cover;
	}

	.trademark-request-form__title {
		color: #333;
		text-align: center;
		font-family: Poppins, sans-serif;
		font-size: 1.375rem;
		font-weight: 700;

		@media (width >= 920px) {
			font-size: 2rem;
		}
	}

	.form-label {
		font-family: var(--font-text);
		font-size: 1rem;
		color: #333;
		font-weight: 400;
		margin-block-end: 6px;
	}

	.file-button {
		cursor: pointer;
		border: 1px solid #ccc;
		margin: 0;
		padding: 8px 12px;
		font-size: 14px;
		font-weight: 400;
		display: inline-block;
		background-color: #3e3271;
		color: #fff;
		border-radius: 5px;
	}

	.file-hint {
		font-size: 12px;
		line-height: 16px;
		font-family: var(--font-text);
		font-weight: 600;
	}

	#arquivo_da_logo {
		width: 100%;
		max-width: max-content;
		position: absolute;
		opacity: 0;
		z-index: -1;
	}

	.btn-radio {
		position: relative;
		color: #000;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 0.25rem;
		margin-bottom: 0;
		font-weight: 500;

		input,
		label {
			width: 100%;
			cursor: pointer;
			padding-block: 10px;
		}

		input {
			accent-color: #3e3271;
		}
	}

	.address-box {
		background-color: #ebebeb;
		border-radius: 5px;
		margin-top: 20px;
		padding: 20px;
	}
}

/* PAGE ANCHOR */

.page-anchor {
	padding-block: 22px;
	opacity: 0;
	visibility: hidden;
}

.cke_editable .page-anchor {
	opacity: 1;
	visibility: visible;
}

/* RICH TEXT PARAGRAPH */

.text-rich-paragraph {
	.col-12 {
	    width: 100%;
		max-width: 1014px;
	}
	
	p {
		font-size: 19px;
		font-family: "'Poppins'", sans-serif;
		line-height: 32px;
		font-weight: 400;
		color: #2f3260;
	}

	.container-wide {
		padding-left: clamp(1rem, 3vw, 3rem);
		padding-right: clamp(1rem, 2vw, 2rem);
	}
}

.hero-banner {
	height: calc(100vh - 108px);
}

/* TEXT LIST WITH TWO COLUMN */

.text-list-with-two-column {
	.item + .item {
		border-top: 1px solid var(--bs-gray-300);
	}

	.item {
		padding-block: 1rem;
		transition: all 0.2s;

		&:hover {
			background-color: #f0f0f0;
		}

		&:first-child {
			margin-top: unset;
		}
	}

	.text-list-with-two-column__text-left {
		font-family: var(--font-text);
		font-weight: 300;
		letter-spacing: 0.01em;
		color: #767676;
		background-color: #bccbde;
		width: 100%;
		padding: 2px 10px;
		font-size: 1rem;

		@media (min-width: 992px) {
			font-size: 1.5rem;
			padding: unset;
			background-color: unset;
		}
	}

	h3 {
		color: #333;
		margin-bottom: 0;
		font-family: Poppins, sans-serif;
		font-size: 1.2rem;
	}

	.text-detail {
		color: var(--brand-text);
	}

	.text-list-with-two-column__description {
		& * + * {
			margin-block: 10px;
		}
	}
}

/* WRAPPER LOTTIE */

.wrapper-lottie {
	position: relative;

	.section {
		max-width: 1714px;
	}

	& lottie-player {
		width: 100%;
		max-width: 1920px;
		height: 100%;
		position: absolute;
		top: 0;
		left: 50%;
		z-index: -1;
		opacity: 0.05;
		transform: translateX(-50%);
	}
}

/* HTML AND SOCIAL SECTION */

.html-and-social-section {
	.feedback-message {
		border: 1px solid #000;
		background-color: #f3f2ff;
		border-radius: 24px;
		padding: 28px 28px 32px;

		& p {
			font-family: var(--font-text);
			font-weight: 600;
			color: #000;
			font-size: 26px;
			line-height: 32px;
			text-align: center;
		}

		&.success::after {
			content: "";
			display: block;
			position: relative;
			width: 100%;
			height: 40px;
			background: url(../assets/images/check-success.svg) no-repeat center / contain;
			margin-block: 40px;
		}
	}

	.card {
		background-color: #fff;
		border: 1px solid #eff0f6;
		border-radius: 0;
		box-shadow: 0 2px 7px #14142b0f;
	}

	.right-panel {
		background-color: var(--brand-light);
	}

	.form-label {
		margin-bottom: 5px;
		font-weight: 700;
		display: block;
		font-family: var(--font-text);
		font-size: 14px;
		line-height: 20px;
	}

	.form-control {
		background-color: #fff;
		border: 1px solid #eff0f6;
		border-radius: 0;
		min-height: 60px;
		margin-bottom: 0;
		padding: 16px 24px;
		font-size: 0.8rem;
		font-weight: 400;
		line-height: 20px;
		transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
		box-shadow: 0 2px 7px #14142b14;
	}

	.form-cta {
		min-width: 186px;
		width: 100%;
		color: #fff;
		text-align: center;
		transform-style: preserve-3d;
		border-radius: 0;
		padding: 16px 38px;
		font-size: 14px;
		font-weight: 700;
		line-height: 20px;
		text-decoration: none;
		transition: background-color 0.3s, transform 0.3s, color 0.3s;

		&:hover {
			transform: translate3d(0, -3px, 0.01px);
		} 

		@media (min-width: 992px) {
			font-size: 20px;
			padding: 26px 38px;
			max-width: max-content;
		}
	}

	.right-panel {
		h3 {
			color: #373737;
			letter-spacing: 0;
			text-transform: none;
			margin-top: 0;
			margin-bottom: 10px;
			font-size: 18px;
			font-weight: 500;
			line-height: 26px;
		}

		.list-items a img {
			width: 22px;
			height: 22px;
			object-fit: contain;
			display: flex;
			align-items: center;
			justify-content: center;
		}
	}

	.social-btn {
		inline-size: 44px;
		block-size: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 0.5rem;
		background: var(--brand-secondary);
		color: #fff;
		font-size: 1.1rem;
		box-shadow: var(--elev-1);
		transition: transform 0.15s ease, background-color 0.2s ease;

		&:hover {
			transform: translateY(-2px);
			color: #fff;
			background: color-mix(in srgb, var(--brand-secondary) 85%, #000 15%);
		}
	}
}

.social-follow-block {
	.social-title {
		font-weight: 400 !important;
	}

	.social-icons {
		margin-block-start: 1rem;
		flex-wrap: wrap;
	}

	.social-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.social-link img {
		display: block;
		width: 30px;
		height: 26px
			object-fit: contain;
	}
}

/* LIST LINKS WITH IMAGE AND TEXT */

.list-links-with-image-and-text {
	background-color: #fff;

	.items-row {
		margin-inline: auto;
	}

	.list-links-with-image-and-text__link {
		inline-size: 180px;
		display: flex;
		align-items: center;
		text-align: center;
		flex-direction: column;
		color: var(--brand-title);
		transition: transform 0.2s ease;
	}

	.list-links-with-image-and-text__link:hover {
		text-decoration: none;
		transform: translateY(-2px);
	}

	.list-links-with-image-and-text__image {
		text-align: center;
		width: 100%;
		height: max-content;
		max-width: 180px;
		max-height: 120px;
		display: flex;
		justify-content: center;
	}

	.list-links-with-image-and-text__image img {
		max-width: 120px;
		width: 100%;
		display: inline-block;
		object-fit: contain;
	}

	.list-links-with-image-and-text__title,
	.list-links-with-image-and-text__text {
		width: 100%;
		max-width: 200px;
	}

	.list-links-with-image-and-text__title {
		text-align: center;
		margin-top: 0;
		font-family: Poppins, sans-serif;
		font-size: 22px;
		font-weight: 700;
		color: #767676;
		line-height: 26px;
	}

	.list-links-with-image-and-text__text {
		text-align: center;
		margin-top: 5px;
		margin-bottom: 0;
		font-family: var(--font-text);
		line-height: 22px;
		color: #aaa;
		font-size: 15px;
		font-weight: 400;

		& strong {
			text-align: center;
			margin-top: 5px;
			margin-bottom: 0;
			font-family: var(--font-text);
			line-height: 22px;
			font-size: 16px;
			color: #767676;
		} >=
	}

	@media (min-width: 576px) {
		.list-links-with-image-and-text__link {
			inliize:  >=00px;
		}
		.list-links-with-image-and-text__image {
			inline-size: 120px;
			block-size: 120px;
		}
	}

	@media (min-width: 992px) {
		.list-links-with-image-and-text__link {
			inline-size: 220px;
		}
	}
}

/* BANNER EVENT */

.banner-event {
	position: relative;

	& .banner-event__container {
		position: relative;
	}

	& .banner-event__image {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;

		@media (min-width: 1200px) {
			position: relative;
			height: 100vh;
		}
	}

	& .banner-event__overlay {
		position: relative;
		padding-block: 3rem 0;
		padding-inline: unset;
		inset: 0;
		background-color: #3e3271f2;
		opacity: 1;    

		@media (min-width: 1200px) {
			position: absolute;
			padding: 3rem 1rem;
		}
	}

	& .banner-event__wrapper {
		position: relative;
		z-index: 1;
		height: 100%;
		max-height: max-content;
		padding-inline: 1rem;
		margin-block-start: 4rem;

		@media (min-width: 1200px) {
			padding-inline: unset;
		}
	}

	& .banner-event__date {
		border: 1px solid #fff;
		width: 100%;    
		height: max-content;
		padding: 0;
		text-align: center;
		color: var(--white);
		font-family: var(--font-text);

		@media (min-width: 1200px) {
			max-width: 180px;
		}

		@media (min-width: 1600px) {
			max-width: 256px;
		}

		& .banner-event__date-day {
			font-size: 3rem;
			font-weight: 700;
			line-height: 100%;
			margin-top: 16px;
			display: block;
		}

		& .banner-event__date-month {
			font-size: 2rem;
			font-weight: 300;
			line-height: 100%;
			display: block;
		}

		& .banner-event__date-line {
			border: 1px solid #fff;
			opacity: 1;
			margin: 1rem 0;
		}

		& .banner-event__date-year {
			font-size: 2rem;
			font-weight: 300;
			line-height: 100%;
			margin-bottom: 16px;
			display: block;
		}
	}

	& .banner-event__divider {
		display: none;

		@media (min-width: 1200px) {
			display: block;
			border: 1px solid #fff;
			width: 1px;
			margin: 0 64px;
			opacity: 1;
		}
	}

	& .banner-event__text {
		height: max-content;
		padding: 0;
	}

	& .banner-event__title {
		font-size: 1.8rem;
		line-height: 2.5rem;
		color: var(--white);
		font-weight: 700;
		margin: 0;

		@media (min-width: 992px) {
			font-size: 2rem;
		}

		@media (min-width: 1200px) {
			font-size: 3rem;
			line-height: 3.5rem;
		}

		@media (min-width: 1400px) {
			font-size: 4rem;
			line-height: 4.5rem;
		}

		@media (min-width: 1714px) {
			font-size: 5rem; 
			line-height: 5.5rem;
		}
	}

	& .banner-event__button {
		margin-top: 20px;
		width: 100%;
		min-height: 48px;
		padding: 18px 16px 18px 32px;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 12px;
		background-color: #dec200;
		color: #fff;
		text-decoration: none;
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1.5rem;
		white-space: nowrap;
		transition: background-color 0.3s;

		&:hover {
			background-color: #282556;
		}

		&::after {
			content: "";
			display: block;
			position: relative;
			width: 20px;
			height: 20px;
			background: url(../assets/images/circle-arrow.svg) no-repeat center / contain;      
		}

		@media (min-width: 1200px) {
			max-width: 300px;
		}
	}

	.banner-event__footer {
		position: relative;

		@media (min-width: 1200px) {      
			position: absolute;
			bottom: 0;
			left: 0;
		}

		.banner-event__footer--info {
			background-color: #ffff;

			@media (min-width: 1200px) {
				height: 6rem;
			}
		}

		.banner-event__footer--info__item {
			width: 100%;
			max-width: 386px;

			& .banner-event__footer--info__item--icon {
				width: 28px;
				height: 28px;
				object-fit: contain;
			}

			& .banner-event__footer--info__item--text {
				font-size: 1.2rem;
				margin-bottom: 0;
				font-family: var(--font-text);
				line-height: 1.5rem;
				color: #767676;
				font-weight: 400;
			}

			& .banner-event__footer--info__item--additional-icon {
				width: 24px;
				height: 24px;
				object-fit: contain;
			}
		}

		.banner-event__footer--info-right {
			width: 100%;

			@media (min-width: 992px) {
				min-width: 268px;
				max-width: 268px;
				padding: 0px 20px 20px 20px;
			}

			@media (min-width: 1714px) {
				min-width: 382px;
				max-width: 382px;
			}

			& .banner-event__footer--info-right__wrapper {
				padding: 0px 20px 20px 20px;
				background-color: #fff;
				min-width: 228px;
			}

			& .banner-event__footer--info-right__text {
				font-family: var(--font-text);
				font-size: 0.8rem;
				font-weight: 700;
				line-height: 1.5rem;
				color: #767676;
			}

			.banner-event__footer--info-right__list {
				display: flex;
				justify-content: center;
				list-style: none;
				margin: unset;
				padding: unset;

			}

			.banner-event__footer--info-right__list-item img {
				width: 100%;
				max-width: 120px;
				height: 70px;
				object-fit: contain;
			}
		}
	}
}

.text-columns-with-background-image {
	position: relative;
	padding-inline: unset;

	.title {
		background-color: #f5f5f7;
		padding: 62px 16px;
	}

	.section-bg-img {
		position: absolute;
		inset: 0;
		inline-size: 100%;
		block-size: 100%;
		object-fit: cover;
		object-position: top;
		z-index: -1;
		pointer-events: none;
	}

	> .container-wide {
		position: relative;
		z-index: 1;
		max-width: 100%;
	}

	.row > [class*="col-"] {
		border-inline: 0;
		box-shadow: none;
		background-color: #0000;
		background-image: linear-gradient(#ffffffd9,#ffffffd9);
	}

	.column-block {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.title, .column-title {
		margin-top: 0;
		line-height: 28px;
		color: #333;
		font-size: 28px;
		letter-spacing: 2px;
		font-weight: 500;
		font-family: Poppins, sans-serif;
		position: relative;
	}

	.title::before, .column-title::before {
		content: "";
		display: block;
		inline-size: 44px;
		block-size: 2px;
		margin: 0 auto 1.5rem;
		background: var(--bs-primary);
	}

	.column-description {
		& > * + * {
			margin-block-start: 20px;
		}

		p, span, li, a {
			text-align: left;
			overflow: visible;
			color: #767676;
			font-family: Segoeui,sans-serif;
			font-size: 16px;
			font-weight: 400;
			line-height: 26px;
		}

		ul > li {
			list-style: none;
			position: relative;

			&::before {
				content: "";
				position: absolute;
				top: calc(50% + -1px);
				left: -6px;
				display: inline-block;
				width: 12px;
				height: 20px;
				margin-left: -1em;
				background: url('../assets/images/check-success.svg') no-repeat center;
				background-size: contain;
				transform: translateY(-50%);  
				filter: brightness(0) saturate(100%) invert(71%) sepia(75%) saturate(313%) hue-rotate(48deg) brightness(94%) contrast(99%);
			}
		}

		ul, ol {
			padding-inline-start: 32px;
			display: flex;
			flex-direction: column;
			gap: 10px;

			@media (min-width: 992px) {
				padding-inline-start: 80px;
			}
		}
	}

	.row > [class*="col-"]:nth-child(even) {
		color: #fff;
		background-color: transparent;
		background-image: linear-gradient(#3e3271d9, #3e3271d9);

		h3, p, span, li, a {
			color: #fff;
		}
	}

	.checklist {
		li {
			display: flex;
			align-items: flex-start;
			gap: 0.5rem;
			margin-bottom: 0.6rem;
		}

		.icon {
			color: var(--bs-primary);
			font-size: 1.1rem;
			line-height: 1;
			margin-top: 0.15rem;
		}
	}

	@media (min-width: 992px) {
		.column-block {
			padding-block: 2.5rem 10rem !important;
			padding-inline: 2.5rem !important;
		}

		.row {
			flex-wrap: nowrap;
		}

		.row > [class*="col-"] {
			flex: 1 1 0;
			width: auto;
			max-width: none;
		}
	}
}

.list-card {
	h3 {
		font-size: 1.125rem !important;
		font-weight: 500;
	}

	a img + p {
		font-family: 'Poppins', sans-serif;
	}
}

/* FORM JOBS */
.jobs-form-section {
	.container-wide {
		max-width: 1000px;
	}

	h2.h1 {
		color: #333;
		font-size: 32px;
		line-height: 36px;
	}

	p.lead {
		font-size: 16px;
		line-height: 26px;
		color: #767676;
	}
	
	.form-panel {
		border: 1px solid var(--bs-gray-300);
		background-color: #fff;
		box-shadow: 0 4px 10px 3px #0003 !important;
		border-radius: 5px !important;
		padding: 40px 40px 30px;
	}

	.form-control {
		font-family: 'Poppins', sans-serif;
		border-radius: 5px;
		font-size: 12px;
	}

	.form-select {
		font-family: 'Poppins', sans-serif;
		background-color: #F3F3F3;
		border-radius: 5px;
		font-size: 12px;
	}
	
	.file-upload {
		.file-button {
			background-color: #fafafa;
			color: #333;

			img {
				filter: brightness(0);
			}
		}
	}
	
	.file-col {
		display: flex;
		align-items: center;
		gap: .75rem;
	}

	.file-col .input-group {
		flex: 1 1 auto;
		min-width: 0;
	}

	.file-col small {
		margin-top: 0 !important;
		white-space: nowrap;
	}

	.file-col #fileError {
		margin-left: 2.25rem;
	}
	
	.file-col {
		width: max-content;

		.file-input {
			width: max-content;
			background-color: #F3F3F3;
			border-radius: 5px;

			.input-group-text {
				background-color: #F3F3F3;
			}

			.form-control {
				width: max-content;
				background-color: #F3F3F3;
			}
		}

		small {
			font-size: 12px;
			font-weight: 600;
			font-family: 'Poppins', sans-serif;
			color: #333;
		}
	}

	.lead {
		color: #6b7280;
	}
	
	.file-button {
		cursor: pointer;
		border: 1px solid #ccc;
		margin: 0;
		padding: 8px 12px;
		font-size: 14px;
		font-weight: 400;
		display: inline-block;
		background-color: #3e3271;
		color: #fff;
		border-radius: 5px;
	}

	.file-hint {
		font-size: 12px;
		font-family: 'Poppins', sans-serif;
		line-height: 16px;
		font-weight: 500;
	}

	#arquivo {
		width: 100%;
		max-width: max-content;
		position: absolute;
		opacity: 0;
		z-index: -1;
	}

	.message-feedback__success {
		background: #e6f9ed;
		border: 1px solid #38b48e;
		color: #217a5b;
		border-radius: 6px;
		padding: 1.5rem 1rem;
		margin-top: 1.5rem;
		font-weight: 500;
		font-size: 1.1rem;
		box-shadow: 0 2px 8px 0 #38b48e22;
		transition: all .2s;
	}

	.message-feedback__error {
		background: #fff0f0;
		border: 1px solid #e74c3c;
		color: #b03a2e;
		border-radius: 6px;
		padding: 1.5rem 1rem;
		margin-top: 1.5rem;
		font-weight: 500;
		font-size: 1.1rem;
		box-shadow: 0 2px 8px 0 #e74c3c22;
		transition: all .2s;
	}
	
	button.btn-primary {
		font-weight: 500;
		color: #fff;
		line-height: inherit;
		cursor: pointer;
		border: 0;
		padding: 9px 15px;
		text-decoration: none;
		display: inline-block;
		background-color: #83a115;
		border-radius: 5px;
		height: 45px;
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.cards-slider-section, .stats-scroll-section {
	padding-inline: unset;
}

.stats-scroll-section {
	margin-top: 10px;
}

.list-unstyled {
	a {
		color: var(--bs-headings-color);
	}
}

.events-redirect-container {
	.btn-toggle-custom {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 24px;
        border-radius: 50rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
        border: 1px solid transparent;
    }

    .btn-toggle-custom.inactive {
        background-color: #fff;
        border-color: #dee2e6;
        color: var(--gray-800);
    }

    .btn-toggle-custom.inactive:hover {
        background-color: #f8f9fa;
        border-color: var(--gray-800);
    }

    .btn-toggle-custom.active {
        background-color: var(--primary-green);
        border-color: var(--primary-green);
        color: #fff;
    }

    .btn-toggle-custom.active:hover {
        filter: brightness(0.95);
        color: #fff;
    }

    .btn-toggle-custom i {
        font-size: 1.1em;
        margin-right: 8px;
    }
  }

/* FORM LP SUBSCRIBE */
.form-inscricao-section {
  h2 {
    color: var(--brand-secondary);
    font-size: 4rem;
  }

  .btn {
    border-radius: 2rem !important;
    font-weight: 500 !important;
    padding-inline: 2rem;
  }
}

.alerts-container .recent-thumbnail {
	object-fit: cover;
}