/**
 * @file
 * Subtheme specific CSS.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
	--header-h: 100px;
	--feedback-status: #198754;
	--feedback-warning: #b78103;
	--feedback-error: #dc3545;
	--feedback-ink: #17324d;
	--feedback-muted: #667a8f;
}

.app-feedback-modal .modal-dialog {
	max-width: 520px;
}

.app-feedback-modal__content {
	border: 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(8, 29, 52, 0.22);
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
	border-top: 5px solid var(--feedback-status);
}

.app-feedback-modal__content--warning {
	border-top-color: var(--feedback-warning);
}

.app-feedback-modal__content--error {
	border-top-color: var(--feedback-error);
}

.app-feedback-modal__header {
	display: block;
	position: relative;
	padding: 1.1rem 1.4rem 0.4rem;
	border-bottom: 0;
}

.app-feedback-modal__header .btn-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.app-feedback-modal__eyebrow {
	margin-bottom: 0.35rem;
	padding-right: 2.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--feedback-muted);
}

.app-feedback-modal__title {
	margin: 0;
	padding-right: 2.5rem;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--feedback-status);
}

.app-feedback-modal__content--warning .app-feedback-modal__title {
	color: var(--feedback-warning);
}

.app-feedback-modal__content--error .app-feedback-modal__title {
	color: var(--feedback-error);
}

.app-feedback-modal__body {
	padding: 0.55rem 1.4rem 1.2rem;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--feedback-ink);
}

.app-feedback-modal__message:last-child {
	margin-bottom: 0;
}

.app-feedback-modal__message-text {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.65;
	color: inherit;
}

.app-feedback-modal__divider {
	margin: 0;
	border: 0;
	border-top: 1px solid #e3ebf3;
	opacity: 1;
}

.app-feedback-modal__footer {
	padding: 0 1.4rem 1.4rem;
	border-top: 0;
}

.app-feedback-modal__button {
	min-width: 140px;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	box-shadow: none;
}

html,
body,
.layout-container,
.site-footer-custom,
.nav-link,
.footer-links-menu a,
.footer-links-menu .nav-link,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.site-footer-custom {
	background-color: #023c62;
	color: #fff;
	padding-top: 28px;
	padding-bottom: 28px;
}

.footer-menu-title {
	font-size: 1.5rem;
	font-weight: 600;
}

.site-footer-custom .footer-menu-title {
	margin-bottom: 2.1rem !important;
}

.site-footer-custom .footer-links-menu .menu-item,
.site-footer-custom .footer-links-menu .nav-item,
.site-footer-custom .footer-links-menu li {
	margin-top: 0;
	margin-bottom: 0.18rem;
}

.site-footer-custom .wraper-footer-cta-links {
	padding-top: 1.05rem !important;
}

.site-footer-custom .footer-logo {
	margin-bottom: 0.84rem !important;
}

#header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	max-width: 100%;
	width: 100%;
}

#navbar-main.navbar {
	display: block;
}

/* Fallback CSS para o topo caso o JS de breakpoint nao execute. */
.top-content-desktop {
	display: block;
}

.top-content-mobile {
	display: none;
}

.row-top {
	align-items: center;
}

.col-top-2 {
	gap: 0.75rem;
	flex-wrap: wrap;
}

.wrap-menu {
	min-width: 0;
}

.wrap-menu .menu,
.wrap-menu .nav,
.wrap-menu .navbar-nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.wrap-menu .navbar-collapse,
.wrap-menu .collapse {
	display: block;
	visibility: visible;
}

.wrap-menu .navbar-toggler {
	display: none;
}

.wrap-menu .nav-link {
	position: relative;
	color: #495057;
	font-weight: 500;
	transition: color 0.2s ease;
}

.wrap-menu .nav-link::after {
	content: '';
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.35rem;
	height: 2px;
	background-color: #de7420;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.wrap-menu .nav-link:hover,
.wrap-menu .nav-link:focus,
.wrap-menu .nav-link.active,
.wrap-menu .nav-link.is-active {
	color: #de7420;
}

.wrap-menu .nav-link:hover::after,
.wrap-menu .nav-link:focus::after,
.wrap-menu .nav-link.active::after,
.wrap-menu .nav-link.is-active::after {
	transform: scaleX(1);
}

.top-actions-wrap {
	margin-left: 0.75rem;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}

.top-actions-wrap .btn {
	white-space: nowrap;
}

.top-user-menu {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.top-user-menu::after {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	height: 10px;
}

.top-user-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid #d5e0e9;
	border-radius: 999px;
	background: #f4f8fc;
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.top-user-menu-toggle:hover,
.top-user-menu-toggle:focus {
	border-color: #9cb7cd;
	box-shadow: 0 0 0 3px rgba(2, 60, 98, 0.12);
	outline: none;
}

.top-user-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.top-user-menu-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 180px;
	padding: 0.35rem;
	border: 1px solid #d7e1ea;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(2, 60, 98, 0.16);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
	z-index: 1010;
}

.top-user-menu-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	padding: 0.45rem 0.65rem 0.5rem;
	margin-bottom: 0.35rem;
	border-bottom: 1px solid #e6edf4;
	max-width: 100%;
}

.top-user-menu-info .top-user-name {
	width: 100%;
	max-width: 170px;
}

.top-user-menu:hover .top-user-menu-dropdown,
.top-user-menu:focus-within .top-user-menu-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.top-user-menu-link {
	display: block;
	padding: 0.5rem 0.65rem;
	border-radius: 8px;
	color: #023c62;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.16s ease, color 0.16s ease;
}

.top-user-menu-link:hover,
.top-user-menu-link:focus {
	background: #f0f5fa;
	color: #023c62;
	text-decoration: none;
	outline: none;
}

.top-user-badge {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding: 0.35rem 0.65rem;
	border: 1px solid #d5e0e9;
	border-radius: 10px;
	background: #f4f8fc;
	line-height: 1.1;
	flex: 0 1 230px;
	min-width: 120px;
	max-width: 230px;
}

.top-user-label {
	font-size: 0.67rem;
	font-weight: 500;
	color: #4d6479;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.top-user-name {
	display: block;
	font-size: 0.86rem;
	color: #023c62;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.top-user-mail {
	font-size: 0.72rem;
	color: #5d7488;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.top-user-badge--mobile {
	align-items: flex-start;
	max-width: 100%;
}

.text-title {
	margin: 0;
	color: #003f69;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.text-title-md {
	margin: 0;
	color: #003f69;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.015em;
}

.text-title-sm {
	margin: 0;
	color: #003f69;
	font-size: 1.3rem !important;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.01em;
}

.text-title-xs {
	margin: 0;
	color: #003f69;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.01em;
}

.link--primary {
	color: #e55a24;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.link--primary:hover,
.link--primary:focus {
	color: #c94b1b;
	text-decoration: none;
}

.block-destaque-content {
	padding: 80px 16px;
}

.block-destaque-title {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.block-destaque-title h2 {
	margin: 0;
}

.block-destaque-title .field,
.block-destaque-title .field__item,
.block-destaque-title p {
	margin: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.block-destaque-subtitle,
.block-destaque-subtitle .field--name-field-text-simple-2,
.block-destaque-subtitle .field--name-field-text-simple-2 .field__item,
.block-destaque-subtitle .field--name-field-text-simple-2 p {
	margin: 1.25rem auto 0;
	max-width: 840px;
	color: #3f5872;
	font-size: 1rem;
	line-height: 1.35;
	text-align: center;
	font-weight: 400;
}

.block-items {
	margin-top: 4.5rem;
	row-gap: 1.5rem;
}

.block-item {
	text-align: left;
}

.block-item-inner {
	height: 100%;
	background-color: #fff;
	border: 1px solid #e2e6ed;
	border-radius: 20px;
	padding: 2rem 2rem;
	box-shadow: 0 2px 10px rgba(12, 34, 54, 0.06);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.block-item-inner:hover,
.block-item-inner:focus-within {
	box-shadow: 0 14px 28px rgba(12, 34, 54, 0.18);
	transform: translateY(-2px);
}

.block-item .icon {
	margin-bottom: 2.25rem;
}

.block-item .icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.block-item .text {
	margin-top: 1.75rem;
	color: #3f5872;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
}

.css-vagas-home {
	padding: 5rem 0;
}

.css-vagas-home .view-header {
	margin-bottom: 2rem;
}

/* ── Listing page /para-estudantes ───────────────────── */

.css-vagas-page {
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.css-vagas-page .view-filters {
	margin-bottom: 2rem;
}

.js input.form-autocomplete {
	background-image: none !important;
	background-repeat: no-repeat !important;
	background-position: right 0.85rem center !important;
	background-size: 1rem 1rem !important;
	padding-right: 2.5rem !important;
}

.js input.form-autocomplete.ui-autocomplete-loading {
	background-image: url('/core/misc/throbber-active.svg') !important;
	background-repeat: no-repeat !important;
	background-position: right 0.85rem center !important;
	background-size: 1rem 1rem !important;
}

html[dir='rtl'] .js input.form-autocomplete,
html[dir='rtl'] .js input.form-autocomplete.ui-autocomplete-loading {
	background-position: left 0.85rem center !important;
}

/* ── Card de Vaga ─────────────────────────────────────── */

.item-vaga {
	height: 100%;
	padding: 10px 0;
}

.css-vagas-page .views-row,
.css-vagas-home .views-row {
	display: flex;
	height: 100%;
}

.css-vagas-home .view-content {
	align-items: stretch;
}

.css-vagas-home .views-row {
	display: flex;
	flex-direction: column;
}

.item-vaga .item-inner {
	height: 100%;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border: 1px solid #e2e6ed;
	border-radius: 20px;
	padding: 1.35rem 1.35rem 1.1rem;
	box-shadow: 0 2px 10px rgba(12, 34, 54, 0.06);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.item-vaga .item-inner:hover {
	box-shadow: 0 10px 24px rgba(12, 34, 54, 0.14);
	transform: translateY(-2px);
}

.item-vaga .row-custom {
	display: flex;
	width: 100%;
}

.item-vaga .row-1 {
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.item-vaga .row-1 .col-custom:first-child {
	flex: 1 1 0;
	min-width: 0;
}

.item-vaga .row-1 .col-custom:last-child {
	flex-shrink: 0;
}

.item-vaga .row-2 {
	flex: 1;
	flex-direction: column;
	gap: 0.2rem;
	margin-bottom: 0.15rem;
}

.item-vaga .row-2 .col-custom {
	align-items: center;
	gap: 0.5rem;
	color: #3f5872;
	font-size: 0.9375rem;
}

.item-vaga .row-2 .col-custom:last-child {
	margin-top: 0.35rem;
	padding-top: 0;
}

.item-vaga .row-2 .col-custom i {
	font-size: 0.9375rem;
	color: #3f5872;
	flex-shrink: 0;
}

.item-vaga .row-3 {
	flex-direction: column;
	margin-top: auto;
	padding-top: 0.85rem;
}

.item-vaga .vaga-numero {
	margin-top: 0.4rem;
	margin-bottom: 0.35rem;
	color: #6b7280;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.item-vaga .dv-empresa {
	margin-top: 0.35rem;
	color: #3f5872;
	font-size: 0.9375rem;
	font-weight: 400;
}

.item-vaga .dv-salario {
	color: #003f69;
	font-size: 0.9375rem;
	font-weight: 400;
}

.item-vaga .tag-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-content: flex-start;
	gap: 0.35rem;
	min-width: 0;
	min-height: 3.6rem;
	overflow: visible;
}

.item-vaga .col-custom.d-flex.text-align-center {
	min-width: 0;
}

.item-vaga .item-regime {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.42rem 1rem;
	border-radius: 999px;
	background-color: #4caf50;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.tag-pill {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 100%;
	padding: 0.32rem 0.75rem;
	border-radius: 999px;
	background-color: rgba(222, 116, 32, 0.12);
	border: 1px solid rgba(222, 116, 32, 0.25);
	color: #0f3e5d;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
	text-align: left;
	word-break: break-word;
}

.item-vaga .tag-pill {
	flex: 0 0 auto;
}

.tag-pill--more {
	min-width: 2.2rem;
	justify-content: center;
	font-weight: 700;
}

.cto-content-desktop {
	display: block;
}

.cto-content {
	margin: 0;
	padding: 0;
}

.cto-image {
	position: relative;
	min-height: 400px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 72px 16px;
	overflow: hidden;
	margin: 0;
}

.cto-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 18, 48, 0.62) 0%, rgba(15, 20, 60, 0.48) 45%, rgba(40, 20, 10, 0.42) 100%);
	pointer-events: none;
}

.cto-overlay-content {
	max-width: 980px;
	position: relative;
	z-index: 1;
}

.cto-title h3 {
	margin: 0;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.12;
}

.cto-body {
	margin: 1.5rem 4rem 0;
	max-width: 920px;
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.45;
}

.cto-body p {
	margin-bottom: 0;
}

.cto-actions {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

.ui-btn,
.banner-actions a,
.cto-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: filter 0.2s ease;
}

.ui-btn--primary,
.banner-action-primary a,
.cto-action-primary a {
	background-color: #e55a24;
	color: #fff;
	border: 0;
	min-width: 214px;
}

.ui-btn--secondary,
.banner-action-secondary a {
	background-color: #fff;
	color: #023c62;
	border: 2px solid #fff;
}

.ui-btn--primary:hover,
.ui-btn--primary:focus,
.ui-btn--secondary:hover,
.ui-btn--secondary:focus,
.banner-action-primary a:hover,
.banner-action-primary a:focus,
.banner-action-secondary a:hover,
.banner-action-secondary a:focus,
.cto-action-primary a:hover,
.cto-action-primary a:focus {
	filter: brightness(0.95);
}

.cto-action-primary .ui-btn--disabled,
.cto-action-primary .ui-btn--disabled:hover,
.cto-action-primary .ui-btn--disabled:focus {
	background-color: #8ea0ae;
	border-color: #8ea0ae;
	color: #fff;
	pointer-events: none;
	cursor: not-allowed;
	filter: none;
	opacity: 0.85;
}

.cto-action-primary__hint {
	margin-top: 0.55rem;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.35;
	color: #fff;
}

.banner-content-desktop,
.banner-content-mobile {
	display: none;
}

.banner-image {
	position: relative;
	min-height: 640px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 80px;
	overflow: hidden;
}

.banner-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 18, 48, 0.62) 0%, rgba(15, 20, 60, 0.48) 45%, rgba(40, 20, 10, 0.42) 100%);
	pointer-events: none;
}

.banner-overlay-content {
	width: 100%;
	max-width: none;
	color: #fff;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.banner-overlay-text {
	max-width: 760px;
	margin-bottom: 0;
}

.banner-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.25rem;
}

.banner-body {
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 2rem;
}

.banner-body p {
	margin-bottom: 0;
}

/* ── Banner Search ─────────────────────────────────────────── */
.banner-search {
	margin-top: 1.75rem;
	margin-bottom: 1.75rem;
	width: 100%;
}

.banner-search-card {
	background: rgba(255, 255, 255, 0.97);
	border-radius: 16px;
	padding: 1.5rem 1.75rem;
	width: 100%;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.banner-search-form {
	--bs-gutter-x: 1rem;
	--bs-gutter-y: 1rem;
}

.banner-search-field {
	min-width: 0;
}

.banner-search-field--serial {
	max-width: none;
}

.banner-search-field .form-item {
	margin: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.banner-search-field label,
.banner-search-field .form-item__label,
.banner-search-field .control-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #003f69;
	margin-bottom: 0.4rem;
	letter-spacing: 0.01em;
}

.banner-search-field input[type="text"],
.banner-search-field input[type="search"] {
	width: 100%;
	border: 2px solid #b0bec5;
	border-radius: 8px;
	padding: 0.65rem 0.875rem;
	font-size: 0.9375rem;
	color: #111;
	background: #fff;
	outline: none;
	transition: border-color 0.2s;
}

.banner-search-field--serial input[type="text"],
.banner-search-field--serial input[type="search"],
.input-serial-curto {
	text-align: left;
}

.banner-search-field input[type="text"]::placeholder,
.banner-search-field input[type="search"]::placeholder {
	color: #78909c;
	font-size: 0.9rem;
}

.banner-search-field select {
	width: 100%;
	border: 2px solid #b0bec5;
	border-radius: 8px;
	padding: 0.65rem 0.875rem;
	font-size: 0.9375rem;
	color: #111;
	background: #fff;
	outline: none;
	appearance: auto;
	cursor: pointer;
	transition: border-color 0.2s;
}

.banner-search-field input[type="text"]:focus,
.banner-search-field input[type="search"]:focus,
.banner-search-field select:focus {
	border-color: #023c62;
	box-shadow: 0 0 0 3px rgba(2, 60, 98, 0.12);
}

.banner-search-submit {
	display: flex;
	align-items: flex-end;
}

.banner-search-submit .form-actions,
.banner-search-submit .js-form-actions {
	margin: 0;
	width: 100%;
	display: grid;
}

.banner-search-submit .form-submit,
.banner-search-submit input[type="submit"],
.banner-search-submit button[type="submit"] {
	background-color: #e55a24;
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 0.68rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: filter 0.2s ease;
	width: 100%;
	min-width: 100%;
}

.banner-search-submit .form-submit:hover,
.banner-search-submit .form-submit:focus,
.banner-search-submit input[type="submit"]:hover,
.banner-search-submit input[type="submit"]:focus,
.banner-search-submit button[type="submit"]:hover,
.banner-search-submit button[type="submit"]:focus {
	filter: brightness(0.92);
	outline: none;
}

/* ── Banner Interno (páginas internas) ─────────────────────── */
.banner-image--interna {
	min-height: 320px;
	padding: 60px 80px;
	align-items: flex-end;
}

.banner-image--interna::before {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 18, 48, 0.65) 100%
	);
}

.banner-title--interna {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.banner-title--interna p {
	margin: 0;
}

@media (max-width: 767px) {
	.banner-image--interna {
		min-height: 200px;
		padding: 40px 24px;
	}

	.banner-title--interna {
		font-size: 1.5rem;
	}
}

.btn-buscar-vagas {
	background-color: #e55a24;
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 0.68rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: filter 0.2s ease;
}

.btn-buscar-vagas:hover,
.btn-buscar-vagas:focus {
	filter: brightness(0.92);
	outline: none;
}

@media (min-width: 992px) {
	.banner-search-field--serial {
		max-width: 110px;
	}
}

@media (max-width: 767.98px) {
	.banner-search-card {
		padding: 1rem;
		border-radius: 12px;
	}

	.banner-search-form {
		--bs-gutter-x: 0.75rem;
		--bs-gutter-y: 0.75rem;
	}

	.banner-search-field,
	.banner-search-submit {
		width: 100%;
	}

	.banner-search-field label,
	.banner-search-field .form-item__label,
	.banner-search-field .control-label {
		font-size: 0.9rem;
	}

	.banner-search-field input[type="text"],
	.banner-search-field input[type="search"],
	.banner-search-field select {
		padding: 0.75rem 0.875rem;
		font-size: 1rem;
	}

	.banner-search-submit .form-submit,
	.banner-search-submit input[type="submit"],
	.banner-search-submit button[type="submit"],
	.btn-buscar-vagas {
		width: 100%;
		padding: 0.9rem 1rem;
		font-size: 1rem;
	}
}
/* ── /Banner Search ─────────────────────────────────────────── */

.banner-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (min-width: 768px) {
	.banner-content-desktop {
		display: block;
	}
}

@media (max-width: 767.98px) {
	.banner-content-mobile {
		display: block;
	}

	.banner-image {
		min-height: 460px;
		padding: 32px 24px;
	}

	.banner-title {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.banner-body {
		font-size: 1.125rem;
		margin-bottom: 1.5rem;
	}

	.banner-actions {
		gap: 0.75rem;
		flex-direction: column;
		align-items: stretch;
	}

	.banner-action-primary,
	.banner-action-secondary {
		width: 100%;
	}

	.banner-actions a,
	.cto-actions a,
	.ui-btn {
		width: 100%;
		padding: 0.8rem 1rem;
	}

	.cto-image {
		min-height: 430px;
		padding: 48px 16px;
	}

	.cto-content-mobile .cto-overlay-content {
		max-width: 320px;
		margin: 0 auto;
	}

	.cto-title h3 {
		font-size: 2.25rem;
	}

	.cto-body {
		margin-top: 1rem;
		margin-left: auto;
		margin-right: auto;
		max-width: 320px;
		font-size: 1rem;
		line-height: 1.3;
	}

	.cto-actions {
		margin-top: 1.5rem;
	}

	.cto-content-mobile .cto-actions a {
		width: auto;
		min-width: 220px;
		padding: 0.8rem 1.5rem;
	}

	.block-destaque-content {
		padding: 48px 16px;
	}

	.block-destaque-title {
		line-height: 1.25;
	}

	.text-title {
		font-size: 2.25rem;
		line-height: 1.2;
	}

	.text-title-md {
		font-size: 1.7rem;
		line-height: 1.18;
	}

	.block-destaque-subtitle,
	.block-destaque-subtitle .field--name-field-text-simple-2,
	.block-destaque-subtitle .field--name-field-text-simple-2 .field__item,
	.block-destaque-subtitle .field--name-field-text-simple-2 p {
		margin-top: 1rem;
		font-size: 1rem;
		line-height: 1.45;
	}

	.block-items {
		margin-top: 2.25rem;
	}

	.block-item-inner {
		padding: 2rem 1.5rem;
		border-radius: 16px;
	}

	.block-item .icon {
		margin-bottom: 1.5rem;
	}

		.text-title-sm {
			font-size: 1.2rem;
		}

		.text-title-xs {
			font-size: 1.1rem;
		}

	.block-item .text {
		margin-top: 1rem;
		font-size: 1rem;
	}

	.tag-pill {
		font-size: 1rem;
	}
}

.top-content-mobile {
	position: relative;
}

.top-content-mobile .button-menu {
	cursor: pointer;
	margin: 0;
	color: #023c62;
}

.top-content-mobile #wrap-menu-mobile {
	max-width: min(340px, 88vw);
}

.top-content-mobile #wrap-menu-mobile .offcanvas-title {
	color: #023c62;
	font-weight: 600;
}

.top-content-mobile #wrap-menu-mobile .offcanvas-body {
	padding-top: 0;
}

.top-content-mobile #wrap-menu-mobile .inner-search-mobile {
	margin-top: 0.875rem;
}

.top-content-mobile #wrap-menu-mobile .inner-search-mobile .container-inline,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile #search-block-form,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile form {
	width: 100%;
	max-width: 100%;
	display: block;
}

.top-content-mobile #wrap-menu-mobile .inner-search-mobile .container-inline div,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile .container-inline label,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-item-keys {
	display: block;
	width: 100% !important;
	max-width: 100%;
}

.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-item,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-search,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-text,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile input[type='search'],
.top-content-mobile #wrap-menu-mobile .inner-search-mobile input[type='text'] {
	width: 100%;
	max-width: 100%;
}

.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-item {
	margin-bottom: 0;
}

.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-search,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-text,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile input[type='search'],
.top-content-mobile #wrap-menu-mobile .inner-search-mobile input[type='text'] {
	min-height: 46px;
	padding: 0 0.9rem;
	font-size: 1rem;
	border-radius: 8px;
}

.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-actions,
.top-content-mobile #wrap-menu-mobile .inner-search-mobile input[type='submit'],
.top-content-mobile #wrap-menu-mobile .inner-search-mobile button[type='submit'],
.top-content-mobile #wrap-menu-mobile .inner-search-mobile .form-submit {
	display: none !important;
}

.top-content-mobile #wrap-menu-mobile .menu,
.top-content-mobile #wrap-menu-mobile .nav,
.top-content-mobile #wrap-menu-mobile .navbar-nav {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.top-content-mobile #wrap-menu-mobile .menu-item,
.top-content-mobile #wrap-menu-mobile .nav-item {
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e5e8ec;
}

.top-content-mobile #wrap-menu-mobile .menu-item a,
.top-content-mobile #wrap-menu-mobile .nav-link {
	display: block;
	padding: 14px 4px;
	color: #023c62;
	text-decoration: none;
}

@media (max-width: 767.98px) {
	.top-content-desktop {
		display: none;
	}

	.top-content-mobile {
		display: block;
	}

	.wrap-menu .navbar-toggler {
		display: inline-flex;
	}
}

@media (max-width: 1199px) {
	.wrap-menu .nav-link {
		padding-left: 0.55rem;
		padding-right: 0.55rem;
		font-size: 0.95rem;
	}

	.top-user-badge {
		min-width: 110px;
		max-width: 170px;
	}
}

@media (max-width: 991.98px) {
	.top-actions-wrap {
		gap: 0.35rem;
	}

	.col-top-2 {
		justify-content: flex-end;
	}
}

@media (max-width: 575.98px) {
	.top-content-mobile #wrap-menu-mobile {
		max-width: 100vw;
	}
}

.footer-links-menu .menu,
.footer-links-menu .nav,
.footer-links-menu .navbar-nav {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* garante que o container não colapse quando contém os botões sociais */
.footer-links-menu {
	overflow: visible !important;
}

.footer-links-menu .menu-item,
.footer-links-menu .nav-item,
.footer-links-menu li {
	display: block;
	margin-top: 0;
	margin-bottom: 0.18rem;
	border: 0 !important;
}

.footer-links-menu a,
.footer-links-menu .nav-link {
	display: inline-block;
	padding: 0;
	color: #fff;
	border: 0 !important;
	box-shadow: none !important;
}

.footer-links-menu a:hover,
.footer-links-menu a:focus,
.footer-links-menu .nav-link:hover,
.footer-links-menu .nav-link:focus,
.footer-links-menu .nav-link.active,
.footer-links-menu .nav-link.is-active {
	color: #fff;
	border: 0 !important;
	box-shadow: none !important;
	outline: 0;
}

.footer-links-menu .footer-link--disabled,
.footer-links-menu .footer-link--disabled:hover,
.footer-links-menu .footer-link--disabled:focus {
	color: rgba(255, 255, 255, 0.35) !important;
	cursor: not-allowed !important;
	pointer-events: none;
	text-decoration: none !important;
}

.footer-cta-links {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	min-height: 36px;
}

.footer-cta-link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px;
	min-height: 36px;
	font-size: 1rem;
	line-height: 1;
	color: #fff !important;
	border-radius: 50% !important;
	text-decoration: none !important;
	transition: transform 0.2s ease, filter 0.2s ease;
	padding: 0 !important;
}

.footer-cta-link:hover,
.footer-cta-link:focus {
	color: #fff !important;
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.footer-cta-link--mail {
	background-color: #0f4a7a !important;
}

.footer-cta-link--instagram {
	background-color: #f08a1e !important;
}

.footer-cta-link--linkedin {
	background-color: #0a66c2 !important;
}

.footer-cta-link--whatsapp {
	background-color: #25d366 !important;
}

/* ── Node Vagas — Header ─────────────────────────────── */
.vaga-header {
	padding: 1.5rem 0 1rem;
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 1.5rem;
}

.vaga-titulo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 0.25rem;
}

.vaga-empresa {
	font-size: 1rem;
	color: #4b5563;
	margin-bottom: 0.75rem;
}

.vaga-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1.25rem;
	font-size: 0.875rem;
	color: #6b7280;
}

.vaga-meta-item {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.vaga-meta-item i {
	font-size: 0.8rem;
	color: #9ca3af;
}

.vaga-badge--regime {
	display: inline-block;
	background-color: #22c55e;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
}

@media (max-width: 767.98px) {
	.vaga-titulo {
		font-size: 1.2rem;
	}
	.vaga-meta {
		gap: 0.4rem 1rem;
	}
}

/* ── Node Vagas — Body ─────────────────────────────── */
.vaga-body {
	margin-top: 1.5rem;
}

.vaga-section {
	margin-bottom: 2rem;
}

.vaga-section-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 0.75rem;
}

.vaga-section-body {
	font-size: 0.9375rem;
	color: #374151;
	line-height: 1.7;
}

.vaga-section-body p {
	margin-bottom: 0.75rem;
}

.vaga-section-body ul,
.vaga-section-body ol {
	padding-left: 1.25rem;
	margin-bottom: 0.75rem;
}

.vaga-lista-requisitos {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.vaga-lista-requisitos li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	color: #374151;
	line-height: 1.6;
}

.vaga-lista-requisitos li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #f08a1e;
}

.vaga-lista-beneficios {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.vaga-lista-beneficios li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	color: #374151;
	line-height: 1.6;
}

.vaga-lista-beneficios li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #22c55e;
}

/* ── Node Vagas — Tags Tecnologias ────────────────── */
.vaga-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	min-width: 0;
}

.vaga-tag-pill {
	display: inline-flex;
	align-items: center;
	max-width: min(100%, 320px);
	padding: 0.32rem 0.8rem;
	border: 1px solid rgba(222, 116, 32, 0.28);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.1;
	color: #0f3e5d;
	background: rgba(222, 116, 32, 0.08);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Node Vagas — Sidebar ─────────────────────────── */
.vaga-sidebar {
	position: sticky;
	top: calc(var(--header-h) + 1.25rem);
	max-height: calc(100vh - var(--header-h) - 2.5rem);
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.25rem;
}

.vaga-compartilhar-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
}

.ui-btn--outline {
	display: block;
	width: 100%;
	text-align: center;
	padding: 0.55rem 1rem;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	background: transparent;
	color: #374151;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
	text-decoration: none;
}

.ui-btn--outline:hover {
	border-color: #f08a1e;
	color: #f08a1e;
}

.ui-btn--share {
	display: inline-block;
	padding: 0.4rem 1rem;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #374151;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}

.ui-btn--share:hover {
	border-color: #f08a1e;
	color: #f08a1e;
}

.vaga-compartilhar-btns {
	display: flex;
	gap: 0.5rem;
}

a.vaga-share-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	min-width: 2.25rem;
	min-height: 2.25rem;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #4b5563 !important;
	color: #fff !important;
	font-size: 1rem;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	transition: background-color 0.18s, transform 0.15s;
}

a.vaga-share-btn:hover {
	background-color: #374151 !important;
	color: #fff !important;
	transform: scale(1.1);
}

/* ── Painel Page Header ─────────────────────────────────────────────────── */

.painel-page-header-wrapper {
	margin-bottom: 1.5rem;
}

.painel-page-header {
	background-color: #7c97a9;
	border-radius: 0;
	padding: 2.75rem 2.5rem;
}

.painel-page-header__title {
	margin: 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
}

/* ── Painel Breadcrumb ───────────────────────────────────────────────────── */

.painel-breadcrumb {
	margin-bottom: 0.75rem;
}

.painel-breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.painel-breadcrumb__item,
.painel-breadcrumb__sep {
	display: flex;
	align-items: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1;
}

.painel-breadcrumb__sep {
	font-size: 0.6rem;
	color: rgba(255, 255, 255, 0.5);
}

.painel-breadcrumb__link {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.18s;
}

.painel-breadcrumb__link:hover,
.painel-breadcrumb__link:focus {
	color: #fff;
	text-decoration: none;
}

.painel-breadcrumb__text {
	color: rgba(255, 255, 255, 0.75);
}

.painel-breadcrumb__item--current .painel-breadcrumb__text {
	color: #fff;
	font-weight: 600;
}

/* ── Tipografia dos formulários do painel ───────────────────────────────── */

/* H2: título da seção de formulário (ex: "Editar Informações Pessoais") */
#custom-panel-candidato-edit-form h2,
#custom-panel-empresa-edit-form h2 {
	font-size: 1.35rem;
	font-weight: 600;
	color: #023c62;
	line-height: 1.25;
}

/* H3: títulos de grupo de campos (ex: "Dados de Acesso", "Dados Pessoais") */
#custom-panel-candidato-edit-form h3,
#custom-panel-empresa-edit-form h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #374151;
	line-height: 1.3;
}

/* H4: sub-itens dentro de grupos (ex: "Instituição 1", "Curso 1") */
#custom-panel-candidato-edit-form h4,
#custom-panel-empresa-edit-form h4 {
	font-size: 0.875rem;
	font-weight: 500;
	color: #6b7280;
	line-height: 1.3;
}

/* Labels de campo */
#custom-panel-candidato-edit-form label,
#custom-panel-empresa-edit-form label {
	font-size: 0.85rem;
	font-weight: 500;
	color: #374151;
	margin-bottom: 0.25rem;
}

/* ── Cards de itens dinâmicos do painel (Instituição, Curso, Experiência) ── */

#custom-panel-candidato-edit-form .card {
	border: 1px solid #e2e6ed;
	border-radius: 6px;
	background-color: #f8fafc;
	box-shadow: none;
}

#custom-panel-candidato-edit-form .card-body {
	padding: 1.25rem 1.5rem;
}

#custom-panel-candidato-edit-form .card-title {
	font-size: 0.8rem;
	font-weight: 600;
	color: #023c62;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e2e6ed;
}

/* ── Botão primário do projeto (reutilizável) ──────────────────────────── */
.btn-primario {
	background-color: #023c62;
	color: #fff;
	border: 1px solid #023c62;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s, border-color 0.15s;
}
.btn-primario:hover,
.btn-primario:focus {
	background-color: #012d4a;
	border-color: #012d4a;
	color: #fff;
}

/* ── Botão outline laranja (reutilizável) ───────────────────────────────── */
.btn-outline-laranja {
	background-color: transparent;
	color: #de7420;
	border: 1px solid #de7420;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s;
}
.btn-outline-laranja:hover,
.btn-outline-laranja:focus {
	background-color: #de7420;
	color: #fff;
}

/* ── Botão outline azul-escuro (reutilizável) ───────────────────────────── */
.btn-outline-azul-escuro {
	background-color: transparent;
	color: #0f3e5d;
	border: 1px solid #0f3e5d;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s;
}
.btn-outline-azul-escuro:hover,
.btn-outline-azul-escuro:focus {
	background-color: #0f3e5d;
	color: #fff;
}

/* Wrapper flex dos botões de adicionar/remover item (paragraph) */
#custom-panel-candidato-edit-form .painel-paragraph-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

/* Botão "Incluir" — override do btn-primary + form-control adicionados pelo Bootstrap Barrio */
#custom-panel-candidato-edit-form .painel-paragraph-actions .btn-outline-laranja {
	width: auto !important;
	background-color: transparent !important;
	color: #de7420 !important;
	border-color: #de7420 !important;
}

#custom-panel-candidato-edit-form .painel-paragraph-actions .btn-outline-laranja:hover,
#custom-panel-candidato-edit-form .painel-paragraph-actions .btn-outline-laranja:focus {
	background-color: #de7420 !important;
	color: #fff !important;
}

/* Botão "Remover" — override do btn-primary + form-control adicionados pelo Bootstrap Barrio */
#custom-panel-candidato-edit-form .painel-paragraph-actions .btn-outline-azul-escuro {
	width: auto !important;
	background-color: transparent !important;
	color: #0f3e5d !important;
	border-color: #0f3e5d !important;
}

#custom-panel-candidato-edit-form .painel-paragraph-actions .btn-outline-azul-escuro:hover,
#custom-panel-candidato-edit-form .painel-paragraph-actions .btn-outline-azul-escuro:focus {
	background-color: #0f3e5d !important;
	color: #fff !important;
}

/* ── Botão Salvar — override Bootstrap Barrio no form do painel ────────── */
#custom-panel-candidato-edit-form .btn-primario {
	width: auto !important;
	min-width: 220px;
	background-color: #023c62 !important;
	border-color: #023c62 !important;
	color: #fff !important;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
#custom-panel-candidato-edit-form .btn-primario:hover,
#custom-panel-candidato-edit-form .btn-primario:focus {
	background-color: #012d4a !important;
	border-color: #012d4a !important;
}

/* ── Radios Sim/Não inline no form do painel ────────────────────────────── */
#edit-field-possui-deficiencia--wrapper {
	display: block !important;
}
#edit-field-possui-deficiencia {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	gap: 1.5rem !important;
	align-items: center !important;
}
#edit-field-possui-deficiencia > div {
	flex: 0 0 auto !important;
	width: auto !important;
	display: flex !important;
	align-items: center !important;
	gap: 0.35rem !important;
	padding-left: 0 !important;
	margin-bottom: 0 !important;
}
#edit-field-possui-deficiencia > div input {
	position: static !important;
	margin: 0 !important;
	flex-shrink: 0 !important;
}
#edit-field-possui-deficiencia > div label {
	margin: 0 !important;
	padding: 0 !important;
	cursor: pointer;
}

/* ── Sidebar Painel (fora do container, fixa lateralmente) ──────────────── */

:root {
	--painel-sidebar-w: 220px;
}

#sidebar-painel {
	position: fixed;
	left: 0 !important;
	top: 100px; /* atualizado pelo JS com base na altura real do #header */
	width: var(--painel-sidebar-w, 220px);
	max-height: 80vh; /* fallback; atualizado pelo JS */
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 500;
	background-color: #fff;
	padding: 1rem 0;
	visibility: hidden; /* JS define visible após calcular posição */
	transition: top 0.1s ease, max-height 0.1s ease, left 0.1s ease;
}

#sidebar-painel .block-menu .nav {
	flex-direction: column;
}

#sidebar-painel .nav-link {
	padding: 0.55rem 1.25rem;
	color: #023c62;
	font-size: 0.9rem;
	font-weight: 500;
	border-left: 3px solid transparent;
	transition: background-color 0.15s, border-color 0.15s, color 0.15s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#sidebar-painel .nav-link:hover,
#sidebar-painel .nav-link:focus {
	background-color: #f0f4f8;
	border-left-color: #e55a24;
	color: #e55a24;
}

#sidebar-painel .nav-link.is-active {
	background-color: #e8f0f8;
	border-left-color: #023c62;
	color: #023c62;
	font-weight: 600;
}

/* Layout do painel — mantém a sidebar fixa sem gerar overflow horizontal */
body.path-painel {
	overflow-x: hidden;
}

#page-wrapper.is-painel-page .row-offcanvas {
	--bs-gutter-x: 0;
	margin-left: 0;
	margin-right: 0;
}

#page-wrapper.is-painel-page main.main-content {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
	flex: 0 0 100%;
}

#page-wrapper.has-painel-sidebar #main {
	margin-left: var(--painel-sidebar-w, 220px);
	width: calc(100% - var(--painel-sidebar-w, 220px));
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

/* Responsivo: oculta em telas pequenas */
@media (max-width: 991.98px) {
	#sidebar-painel {
		display: none;
	}

	#page-wrapper.has-painel-sidebar #main {
		margin-left: 0;
		width: 100%;
	}
}

@media (max-width: 991.98px) {
	.vaga-sidebar {
		position: static;
		max-height: none;
		overflow-y: visible;
		margin-top: 1.5rem;
	}
}

/* ── Páginas de erro (403/404) ─────────────────────────────────────────── */
.custom-error-page {
	padding: 2.5rem 1rem 3rem;
}

.custom-error-page__panel {
	max-width: 760px;
	margin: 0 auto;
	padding: 2.1rem 1.6rem 1.9rem;
	text-align: center;
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
	border: 1px solid #d7e5f3;
	border-radius: 20px;
	box-shadow: 0 16px 40px rgba(2, 60, 98, 0.09);
}

.custom-error-page__code {
	display: inline-block;
	margin-bottom: 0.85rem;
	padding: 0.2rem 0.8rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #0f3e5d;
	background-color: #e8f0f8;
}

.custom-error-page__icon {
	margin-bottom: 0.7rem;
	font-size: 2.3rem;
	line-height: 1;
	color: #de7420;
}

.custom-error-page__title {
	margin: 0 0 0.7rem;
	font-size: clamp(1.5rem, 1.9vw + 1rem, 2rem);
	font-weight: 700;
	line-height: 1.2;
	color: #023c62;
}

.custom-error-page__message {
	margin: 0;
	font-size: 1.03rem;
	font-weight: 500;
	line-height: 1.6;
	color: #244866;
}

.custom-error-page__hint {
	margin: 0.9rem auto 0;
	max-width: 620px;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #58748e;
}

@media (max-width: 767.98px) {
	.custom-error-page {
		padding: 2rem 0.75rem 2.4rem;
	}

	.custom-error-page__panel {
		padding: 1.7rem 1.1rem 1.5rem;
		border-radius: 16px;
	}

	.custom-error-page__icon {
		font-size: 2rem;
	}
}


.footer-cta-link--linkedin {
	background-color: #0a66c2;
}

.footer-cta-link--whatsapp {
	background-color: #2f9b3a;
}

@media (max-width: 767.98px) {
	.site-footer-custom {
		padding-top: 34px;
		padding-bottom: 20px;
	}

	.site-footer-custom .content > .row:first-child > [class*='col-'] + [class*='col-'] {
		margin-top: 1.58rem;
	}

	.site-footer-custom .footer-menu-title {
		margin-bottom: 0.88rem !important;
	}

	.site-footer-custom .footer-links-menu .menu-item,
	.site-footer-custom .footer-links-menu .nav-item,
	.site-footer-custom .footer-links-menu li {
		margin-top: 0;
		margin-bottom: 0.42rem;
	}

	.site-footer-custom .content > .row:first-child {
		margin-bottom: 1.4rem;
	}

	.site-footer-custom .content > .row.mb-4 {
		margin-bottom: 0 !important;
	}

	.site-footer-custom .content > .row.mb-4 .col-md-4 {
		margin-top: 0.7rem;
	}
}

.whatsapp-float-block {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1030;
}

.whatsapp-float-block .content {
	display: flex;
}

.whatsapp-float-button {
	width: 80px;
	height: 80px;
	background-color: #16c74a;
	color: #fff;
	font-size: 3rem;
	line-height: 1;
	box-shadow: 0 12px 30px rgba(22, 199, 74, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-button:hover,
.whatsapp-float-button:focus {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(22, 199, 74, 0.42);
}

@media (max-width: 767.98px) {
	.whatsapp-float-block {
		right: 16px;
		bottom: 16px;
	}

	.whatsapp-float-button {
		width: 72px;
		height: 72px;
		font-size: 2.35rem;
	}
}

.lgpd-cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 2000;
	background: #ffffff;
	border: 1px solid #dfe3e8;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	padding: 16px;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.lgpd-cookie-banner.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.lgpd-cookie-banner__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.lgpd-cookie-banner__text {
	margin: 0;
	color: #243447;
	font-size: 0.95rem;
	line-height: 1.4;
}

.lgpd-cookie-banner__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.lgpd-cookie-banner__btn {
	background: #023c62;
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 10px 18px;
	font-weight: 600;
	cursor: pointer;
}

.lgpd-cookie-banner__btn:hover,
.lgpd-cookie-banner__btn:focus {
	filter: brightness(0.95);
}

.lgpd-cookie-banner__btn--ghost {
	background: #ffffff;
	color: #023c62;
	border: 1px solid #023c62;
}

/* --- field_itens_p (icone_descricao) --- */
.row-itens-p {
	margin-top: 2rem;
	row-gap: 1rem;
}

.item-p-card {
	height: 100%;
	background-color: #fff;
	border: 1px solid #e2e6ed;
	border-radius: 16px;
	padding: 1.25rem 1.5rem;
	gap: 1.25rem;
	box-shadow: 0 2px 10px rgba(12, 34, 54, 0.06);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.item-p-card:hover,
.item-p-card:focus-within {
	box-shadow: 0 10px 24px rgba(12, 34, 54, 0.14);
	transform: translateY(-2px);
}

.item-p-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item-p-icon img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.item-p-text {
	color: #3f5872;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
}

@media (max-width: 767.98px) {
	.lgpd-cookie-banner__content {
		flex-direction: column;
		align-items: flex-start;
	}

	.lgpd-cookie-banner__actions {
		width: 100%;
		flex-direction: column;
	}

	.lgpd-cookie-banner__btn {
		width: 100%;
	}
}

/* ── Correção de clique no reCAPTCHA (desktop e mobile) ─────────────────── */

/*
 * Garante que o wrapper do captcha crie um contexto de empilhamento próprio
 * e não seja bloqueado por elementos com z-index maior acima dele.
 */
.captcha {
	position: relative;
	z-index: 2;
	isolation: isolate;
}

.captcha_element,
.g-recaptcha {
	position: relative;
}

/*
 * O iframe e o div interno do widget reCAPTCHA DEVEM receber eventos de ponteiro.
 * Alguns temas/módulos herdam pointer-events: none de ancestrais.
 */
.g-recaptcha > div,
.g-recaptcha iframe {
	pointer-events: auto !important;
}

/*
 * Impede que o banner LGPD (opacity: 0 mas posicionado fixo)
 * bloqueie cliques quando não está visível.
 */
.lgpd-cookie-banner:not(.is-visible) {
	pointer-events: none;
}

/*
 * No mobile, o cabeçalho sticky com z-index alto pode criar contextos de
 * empilhamento que interferem em elementos de formulário abaixo.
 * A propriedade isolation garante que o conteúdo do header não "vaze"
 * para a área de conteúdo principal.
 */
@media (max-width: 767.98px) {
	#header {
		isolation: isolate;
	}

	.captcha {
		z-index: 3;
	}
}

/* Oculta a aba "Criar nova conta" nas paginas de login. */
.page-user-login .tabs .nav-link--user-register,
.page-user-login .tabs li:has(> .nav-link--user-register) {
	display: none !important;
}
/* ── Paginação ───────────────────────────────────────────────── */
nav[aria-label] .pagination.js-pager__items {
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
	padding: 1.5rem 0 0.5rem;
	margin-bottom: 0;
}

nav[aria-label] .pagination.js-pager__items .page-item .page-link {
	min-width: 2.5rem;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #d5e0e9;
	color: #023c62;
	background-color: #fff;
	font-weight: 500;
	font-size: 0.9rem;
	padding: 0.45rem 0.8rem;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

nav[aria-label] .pagination.js-pager__items .page-item .page-link:hover,
nav[aria-label] .pagination.js-pager__items .page-item .page-link:focus {
	background-color: #023c62;
	border-color: #023c62;
	color: #fff;
	outline: none;
	box-shadow: 0 2px 8px rgba(2, 60, 98, 0.25);
}

nav[aria-label] .pagination.js-pager__items .page-item.active .page-link {
	background-color: #de7420;
	border-color: #de7420;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(222, 116, 32, 0.35);
	pointer-events: none;
}