:root {
	--vcomint-bg: #180727;
	--vcomint-bg-soft: #231036;
	--vcomint-surface: rgba(255,255,255,0.045);
	--vcomint-surface-strong: rgba(255,255,255,0.075);
	--vcomint-border: rgba(255,255,255,0.12);
	--vcomint-text: #f7f2ff;
	--vcomint-muted: rgba(247,242,255,0.68);
	--vcomint-teal: #2da3a3;
	--vcomint-teal-light: #35bfba;
	--vcomint-gold: #f4c430;
	--vcomint-purple: #5b2696;
	--vcomint-radius: 14px;
	--vcomint-container: min(1280px, calc(100vw - 48px));
	--vcomint-font-display: Georgia, 'Times New Roman', serif;
	--vcomint-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--vcomint-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 0%, rgba(91,38,150,0.32), transparent 30%),
		radial-gradient(circle at 90% 12%, rgba(45,163,163,0.12), transparent 28%),
		var(--vcomint-bg);
	color: var(--vcomint-text);
	font-family: var(--vcomint-font-body);
	line-height: 1.6;
}
body.admin-bar .vcomint-site-header { top: 32px; }
a { color: var(--vcomint-teal-light); }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}
.vcomint-site-header {
	position: sticky !important;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(18px);
	background: rgba(24,7,39,0.78);
	border-bottom: 1px solid var(--vcomint-border);
}
.vcomint-site-header__inner,
.vcomint-site-footer__inner {
	width: var(--vcomint-container);
	margin: 0 auto;
}
.vcomint-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}
.vcomint-site-brand {
	color: var(--vcomint-text);
	font-family: var(--vcomint-font-mono);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
}
.vcomint-site-nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.vcomint-site-nav a {
	color: var(--vcomint-muted);
	font-family: var(--vcomint-font-mono);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}
.vcomint-site-nav a:hover { color: var(--vcomint-teal-light); }
.vcomint-site-main {
	width: 100%;
	min-height: 70vh;
}
.vcomint-container {
	width: var(--vcomint-container);
	margin: 0 auto;
	padding: 72px 0;
}
.vcomint-site-footer {
	border-top: 1px solid var(--vcomint-border);
	background: rgba(0,0,0,0.16);
}
.vcomint-site-footer__inner {
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	color: var(--vcomint-muted);
	font-size: 0.9rem;
}
.vcomint-page-title,
.vcomint-entry-title {
	margin: 0 0 24px;
	font-family: var(--vcomint-font-display);
	font-size: clamp(3rem, 8vw, 6.5rem);
	line-height: 0.95;
	letter-spacing: -0.055em;
	color: var(--vcomint-text);
}
.vcomint-entry-content {
	max-width: 860px;
	color: var(--vcomint-muted);
	font-size: 1.08rem;
	line-height: 1.85;
}
.vcomint-entry-content h2,
.vcomint-entry-content h3 {
	font-family: var(--vcomint-font-display);
	color: var(--vcomint-text);
	line-height: 1.1;
	letter-spacing: -0.035em;
}
.vcomint-card {
	border: 1px solid var(--vcomint-border);
	border-radius: var(--vcomint-radius);
	background: var(--vcomint-surface);
	box-shadow: 0 24px 70px rgba(0,0,0,0.2);
}
.vcomint-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(53,191,186,0.42);
	border-radius: 6px;
	background: rgba(45,163,163,0.12);
	color: var(--vcomint-teal-light);
	font-family: var(--vcomint-font-mono);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
}
.vcomint-button:hover,
.wp-block-button__link:hover {
	background: var(--vcomint-teal);
	color: var(--vcomint-bg);
}
@media (max-width: 782px) {
	body.admin-bar .vcomint-site-header { top: 46px; }
}
@media (max-width: 720px) {
	:root { --vcomint-container: min(100% - 28px, 1280px); }
	.vcomint-site-header__inner { min-height: 64px; }
	.vcomint-site-nav { display: none; }
	.vcomint-site-footer__inner { flex-direction: column; align-items: flex-start; padding: 28px 0; }
}
.vcomint-front-page {
	width: 100%;
	min-height: 60vh;
}

.vcomint-blog {
	width: min(1280px, calc(100vw - 32px));
	margin: 0 auto;
	padding: clamp(72px, 9vw, 124px) 0 72px;
	color: var(--off-white, #f7f2ff);
}

.vcomint-blog__header {
	margin-bottom: 42px;
}

.vcomint-blog__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
	color: var(--teal-light, #35bfba);
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.vcomint-blog__eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.vcomint-blog__header h1 {
	margin: 0;
	color: var(--off-white, #f7f2ff);
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(3.4rem, 7.8vw, 6.8rem);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.055em;
}

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

.vcomint-blog-card a {
	display: block;
	height: 100%;
	border: 1px solid rgba(255,255,255,0.09);
	border-radius: 16px;
	background: rgba(255,255,255,0.035);
	color: var(--off-white, #f7f2ff);
	text-decoration: none;
	overflow: hidden;
	box-shadow: 0 18px 58px rgba(0,0,0,0.16);
}

.vcomint-blog-card__image {
	margin: 0;
	background: rgba(255,255,255,0.04);
	overflow: hidden;
}

.vcomint-blog-card__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	display: block;
	object-fit: cover;
}

.vcomint-blog-card__content {
	padding: 22px;
}

.vcomint-blog-card__meta {
	margin: 0 0 10px;
	color: var(--teal-light, #35bfba);
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vcomint-blog-card h2 {
	margin: 0 0 12px;
	color: var(--off-white, #f7f2ff);
	font-family: var(--font-display, Georgia, serif);
	font-size: clamp(1.55rem, 2.6vw, 2.35rem);
	line-height: 1.06;
	letter-spacing: -0.04em;
}

.vcomint-blog-card p {
	color: rgba(255,255,255,0.68);
	line-height: 1.72;
}

.vcomint-blog__pagination {
	margin-top: 48px;
}

@media (max-width: 980px) {
	.vcomint-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.vcomint-blog {
		width: min(100% - 24px, 1280px);
		padding-top: 56px;
	}

	.vcomint-blog__grid {
		grid-template-columns: 1fr;
	}
}
:root {
	--purple-deep: #180727;
	--purple-mid: #2a0e45;
	--off-white: #f7f2ff;
	--muted: rgba(255, 255, 255, 0.68);
	--teal: #2da3a3;
	--teal-light: #35bfba;
	--gold-light: #f4c430;
	--font-display: Georgia, "Times New Roman", serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	--font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
	min-height: 100%;
	background: var(--purple-deep);
	scroll-behavior: smooth;
}

body {
	min-height: 100%;
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(53, 191, 186, 0.12), transparent 34rem),
		radial-gradient(circle at top right, rgba(244, 196, 48, 0.08), transparent 30rem),
		linear-gradient(180deg, #180727 0%, #12051f 100%);
	color: var(--off-white);
	font-family: var(--font-body);
}

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

a {
	color: inherit;
}

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

.vcomint-site-shell {
	min-height: 62vh;
}

.vcomint-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(18, 5, 31, 0.86);
	backdrop-filter: blur(18px);
}

.vcomint-site-header__inner {
	width: min(1280px, calc(100vw - 32px));
	min-height: 76px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(190px, 0.9fr) minmax(180px, 0.8fr) auto;
	gap: 24px;
	align-items: center;
}

.vcomint-site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: var(--off-white);
	text-decoration: none;
}

.vcomint-site-header__mark {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border: 1px solid rgba(53, 191, 186, 0.36);
	border-radius: 12px;
	background: rgba(53, 191, 186, 0.09);
	color: var(--teal-light);
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 900;
}

.vcomint-site-header__brand-text {
	min-width: 0;
	display: grid;
	gap: 3px;
}

.vcomint-site-header__brand-text strong {
	color: var(--off-white);
	font-family: var(--font-display);
	font-size: 1.25rem;
	line-height: 1;
	letter-spacing: -0.035em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vcomint-site-header__brand-text em {
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.78rem;
	font-style: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vcomint-site-header__page-title {
	min-width: 0;
	display: grid;
	gap: 4px;
	padding-left: 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.vcomint-site-header__page-title span {
	color: var(--teal-light);
	font-family: var(--font-mono);
	font-size: 0.58rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vcomint-site-header__page-title strong {
	min-width: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vcomint-site-header__nav {
	justify-self: end;
	min-width: 0;
}

.vcomint-site-header__menu,
.vcomint-site-footer__menu {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vcomint-site-header__menu a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--font-mono);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.vcomint-site-header__menu a:hover,
.vcomint-site-header__menu .current-menu-item > a {
	border-color: rgba(53, 191, 186, 0.32);
	background: rgba(53, 191, 186, 0.08);
	color: var(--teal-light);
}

.vcomint-site-footer {
	margin-top: 72px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(10, 3, 18, 0.52);
}

.vcomint-site-footer__inner {
	width: min(1280px, calc(100vw - 32px));
	margin: 0 auto;
	padding: 36px 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
}

.vcomint-site-footer__brand {
	display: grid;
	gap: 6px;
}

.vcomint-site-footer__brand strong {
	color: var(--off-white);
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: -0.035em;
}

.vcomint-site-footer__brand span,
.vcomint-site-footer__copy {
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.9rem;
	line-height: 1.6;
}

.vcomint-site-footer__nav {
	justify-self: end;
}

.vcomint-site-footer__menu a {
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--font-mono);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.vcomint-site-footer__menu a:hover {
	color: var(--teal-light);
}

.vcomint-site-footer__copy {
	grid-column: 1 / -1;
	margin: 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vcomint-front-page,
.vcomint-page {
	width: 100%;
	min-height: 60vh;
}

.vcomint-page > *:first-child,
.vcomint-front-page > *:first-child {
	margin-top: 0;
}

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

	.vcomint-site-header {
		position: relative;
		top: auto;
	}

	.vcomint-site-header__inner {
		min-height: auto;
		padding: 18px 0;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.vcomint-site-header__page-title {
		padding-left: 0;
		border-left: 0;
	}

	.vcomint-site-header__nav {
		justify-self: stretch;
		overflow-x: auto;
	}

	.vcomint-site-header__menu {
		width: max-content;
		max-width: none;
	}

	.vcomint-site-footer__inner {
		grid-template-columns: 1fr;
	}

	.vcomint-site-footer__nav {
		justify-self: start;
	}
}

@media (max-width: 640px) {
	.vcomint-site-header__inner,
	.vcomint-site-footer__inner {
		width: min(100% - 24px, 1280px);
	}

	.vcomint-site-header__brand-text em {
		display: none;
	}

	.vcomint-site-footer__menu {
		flex-wrap: wrap;
	}
}
.vcomint-page-full {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.vcomint-page-full > * {
	max-width: none;
}

.vcomint-page-full .entry-content,
.vcomint-page-full .wp-block-group,
.vcomint-page-full .wp-block-cover,
.vcomint-page-full .wp-block-html {
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.vcomint-page-full img,
.vcomint-page-full video,
.vcomint-page-full iframe {
	max-width: 100%;
}
/* ===== FORMULÁRIO DIRETÓRIO ===== */

.vcomint-directory-form {
  width: 100%;
}

.vcomint-directory-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.vcomint-field--full,
.vcomint-directory-tools-field,
.vcomint-directory-submit-field {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .vcomint-directory-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LABELS ===== */

.vcomint-directory-form .vcomint-field label,
.vcomint-directory-form .vcomint-field > span,
.vcomint-directory-form .vcomint-directory-tools-field > label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ===== INPUTS / TEXTAREA / SELECT ===== */

.vcomint-directory-form input[type="text"],
.vcomint-directory-form input[type="url"],
.vcomint-directory-form input[type="number"],
.vcomint-directory-form select,
.vcomint-directory-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  box-sizing: border-box;
}

/* Corrige legibilidade dos selects */
.vcomint-directory-form select {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

/* MUITO importante: opções do dropdown legíveis */
.vcomint-directory-form select option {
  background: #241338 !important;
  color: #ffffff !important;
}

/* Alguns navegadores respeitam também option:checked */
.vcomint-directory-form select option:checked,
.vcomint-directory-form select option:hover {
  background: #3d2460 !important;
  color: #ffffff !important;
}

/* ===== CHECKBOX DE INDÚSTRIA ===== */

.vcomint-checkbox-label {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 6px;
}

.vcomint-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin: 0;
}

/* ===== FERRAMENTAS USADAS ===== */

.vcomint-directory-tools-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .vcomint-directory-tools-checklist {
    grid-template-columns: 1fr;
  }
}

.vcomint-directory-tool-option {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  min-height: 52px;
  box-sizing: border-box;
}

.vcomint-directory-tool-option input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  flex: 0 0 20px;
  margin: 0 !important;
}

.vcomint-directory-tool-option span {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ===== INPUTS NUMÉRICOS MENORES ===== */

/* Faz o campo continuar alinhado no grid, mas o input ficar compacto */
.vcomint-directory-form .vcomint-field[data-show-for="empresa"] input[type="number"],
.vcomint-directory-form .vcomint-field[data-show-for="freelancer"] input[type="number"] {
  width: 120px !important;
  max-width: 120px !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  text-align: center;
}

/* Se quiser os campos numéricos todos em linha visualmente mais compacta */
.vcomint-directory-form .vcomint-field[data-show-for="empresa"],
.vcomint-directory-form .vcomint-field[data-show-for="freelancer"] {
  align-self: start;
}

/* ===== BOTÃO ===== */

.vcomint-directory-submit-button {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 14px;
  cursor: pointer;
}

/* ===== MENSAGEM ===== */

.vcomint-directory-form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
}

.vcomint-directory-form-message--success {
  border: 1px solid rgba(80, 200, 120, 0.35);
}

.vcomint-directory-form-message--error {
  border: 1px solid rgba(220, 80, 80, 0.35);
}
.vcomint-tools-multiselect {
	position: relative;
	width: 100%;
}

.vcomint-tools-multiselect-trigger {
	width: 100%;
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	cursor: pointer;
	text-align: left;
	box-sizing: border-box;
}

.vcomint-tools-multiselect-label {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
}

.vcomint-tools-multiselect-arrow {
	font-size: 18px;
	line-height: 1;
	opacity: 0.75;
}

.vcomint-tools-multiselect-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 12px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: #241333;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
}

.vcomint-tools-multiselect-search {
	width: 100%;
	min-height: 48px;
	margin: 0 0 10px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	box-sizing: border-box;
}

.vcomint-tools-multiselect-search::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.vcomint-tools-multiselect-options {
	max-height: 260px;
	overflow-y: auto;
	padding: 4px;
}

.vcomint-tools-multiselect-option {
	display: flex !important;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 11px 10px;
	border-radius: 10px;
	color: #ffffff;
	cursor: pointer;
	box-sizing: border-box;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

.vcomint-tools-multiselect-option:hover {
	background: rgba(255, 255, 255, 0.08);
}

.vcomint-tools-multiselect-option input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	min-height: 18px !important;
	flex: 0 0 18px;
	margin: 0 !important;
}

.vcomint-tools-multiselect-option span {
	font-size: 15px;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: none;
}

.vcomint-tools-multiselect-empty {
	margin: 10px 4px 4px;
	font-size: 14px;
	opacity: 0.75;
}
/* =========================================================
   VComInt Voting System — versão compacta do slider
   ========================================================= */

.vcomint-vote-widget {
	margin: 18px 0 !important;
	padding: 14px 18px !important;
	border-radius: 16px !important;
	box-shadow: 0 10px 28px rgba(0,0,0,0.16) !important;
}

.vcomint-vote-widget__header {
	align-items: center !important;
	margin-bottom: 10px !important;
	gap: 12px !important;
}

.vcomint-vote-widget__title {
	font-size: 0.95rem !important;
	line-height: 1.2 !important;
}

.vcomint-vote-widget__score-pill {
	padding: 6px 10px !important;
	font-size: 0.78rem !important;
	gap: 4px !important;
}

.vcomint-vote-widget__score-pill strong {
	font-size: 0.86rem !important;
}

.vcomint-vote-widget__body {
	grid-template-columns: 1fr auto !important;
	gap: 6px 14px !important;
	align-items: center !important;
}

.vcomint-vote-widget__controls {
	align-self: center !important;
}

.vcomint-vote-widget__range {
	height: 6px !important;
	margin: 0 !important;
	display: block !important;
}

.vcomint-vote-widget__range::-webkit-slider-thumb {
	width: 18px !important;
	height: 18px !important;
	border-width: 2px !important;
}

.vcomint-vote-widget__range::-moz-range-thumb {
	width: 18px !important;
	height: 18px !important;
	border-width: 2px !important;
}

.vcomint-vote-widget__range::-moz-range-track {
	height: 6px !important;
}

.vcomint-vote-widget__marks {
	padding: 5px 2px 0 !important;
	font-size: 0.68rem !important;
	line-height: 1 !important;
}

.vcomint-vote-widget__button {
	grid-column: 2 / 3 !important;
	grid-row: 1 / 3 !important;
	min-height: 38px !important;
	padding: 8px 14px !important;
	border-radius: 11px !important;
	font-size: 0.78rem !important;
	box-shadow: 0 5px 14px rgba(47, 201, 183, 0.22) !important;
}

.vcomint-vote-widget__button:hover {
	transform: translateY(-1px) !important;
	box-shadow: 0 8px 18px rgba(47, 201, 183, 0.28) !important;
}

@media (max-width: 782px) {
	.vcomint-vote-widget {
		padding: 14px !important;
	}

	.vcomint-vote-widget__header {
		display: grid !important;
		grid-template-columns: 1fr !important;
		margin-bottom: 12px !important;
	}

	.vcomint-vote-widget__body {
		grid-template-columns: 1fr !important;
	}

	.vcomint-vote-widget__button {
		grid-column: 1 / -1 !important;
		grid-row: auto !important;
		width: 100% !important;
		min-height: 40px !important;
	}
}
/* =========================================================
   Single Blog Layout - VComInt
   ========================================================= */

.vcomint-single {
	width: 100%;
	background: #fff;
	color: inherit;
	font-family: inherit;
}

.vcomint-single-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.vcomint-single-hero.no-featured-image {
	background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.vcomint-single-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
	z-index: 1;
}

.vcomint-single-hero-inner {
	position: relative;
	z-index: 2;
	width: min(960px, 100%);
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

.vcomint-single-category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.vcomint-single-category:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
}

.vcomint-single-title {
	margin: 0;
	color: #fff;
	font-family: inherit;
	font-size: clamp(2.4rem, 6vw, 5.5rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.055em;
	text-wrap: balance;
}

.vcomint-single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 18px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 1.4;
}

.vcomint-single-meta span {
	position: relative;
}

.vcomint-single-meta span + span::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	transform: translateY(-50%);
}

.vcomint-single-body {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 64px 0 72px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
	gap: 56px;
	align-items: start;
}

.vcomint-single-body.no-toc {
	display: block;
	width: min(820px, calc(100% - 40px));
}

.vcomint-single-sidebar {
	position: relative;
	min-width: 0;
}

.vcomint-single-toc {
	position: sticky;
	top: 110px;
	padding: 24px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.vcomint-single-toc-title {
	margin: 0 0 16px;
	color: inherit;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vcomint-single-toc-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vcomint-single-toc-item {
	margin: 0;
	padding: 0;
	line-height: 1.35;
}

.vcomint-single-toc-item a {
	display: block;
	color: rgba(15, 23, 42, 0.74);
	font-size: 0.94rem;
	text-decoration: none;
	transition: color 160ms ease, transform 160ms ease;
}

.vcomint-single-toc-item a:hover {
	color: #111827;
	transform: translateX(2px);
}

.vcomint-single-toc-item.toc-depth-3 {
	padding-left: 14px;
}

.vcomint-single-toc-item.toc-depth-4 {
	padding-left: 28px;
}

.vcomint-single-toc-item.toc-depth-3 a,
.vcomint-single-toc-item.toc-depth-4 a {
	font-size: 0.88rem;
	color: rgba(15, 23, 42, 0.62);
}

.vcomint-single-content {
	min-width: 0;
	color: inherit;
	font-family: inherit;
	font-size: clamp(1.05rem, 1.1vw, 1.17rem);
	line-height: 1.78;
}

.vcomint-single-content > *:first-child {
	margin-top: 0;
}

.vcomint-single-content p {
	margin: 0 0 1.35em;
}

.vcomint-single-content h2,
.vcomint-single-content h3,
.vcomint-single-content h4 {
	font-family: inherit;
	color: inherit;
	line-height: 1.16;
	letter-spacing: -0.025em;
	scroll-margin-top: 130px;
}

.vcomint-single-content h2 {
	margin: 2.1em 0 0.75em;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.vcomint-single-content h3 {
	margin: 1.8em 0 0.7em;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.vcomint-single-content h4 {
	margin: 1.5em 0 0.6em;
	font-size: clamp(1.2rem, 1.7vw, 1.5rem);
}

.vcomint-single-content a {
	text-underline-offset: 0.18em;
}

.vcomint-single-content img {
	max-width: 100%;
	height: auto;
	border-radius: 18px;
}

.vcomint-single-content ul,
.vcomint-single-content ol {
	margin: 0 0 1.5em 1.25em;
	padding: 0;
}

.vcomint-single-content li {
	margin-bottom: 0.45em;
}

.vcomint-page-links {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.vcomint-related-posts {
	padding: 72px 20px 88px;
	background: #f8fafc;
}

.vcomint-related-posts-inner {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.vcomint-related-posts-title {
	margin: 0 0 28px;
	color: inherit;
	font-family: inherit;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.vcomint-related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.vcomint-related-card {
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.vcomint-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.vcomint-related-card-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.vcomint-related-card-image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e5e7eb;
}

.vcomint-related-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 220ms ease;
}

.vcomint-related-card:hover .vcomint-related-card-image img {
	transform: scale(1.04);
}

.vcomint-related-card-content {
	padding: 22px;
}

.vcomint-related-card-content h3 {
	margin: 0 0 10px;
	color: inherit;
	font-family: inherit;
	font-size: 1.16rem;
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.02em;
}

.vcomint-related-card-content p {
	margin: 0;
	color: rgba(15, 23, 42, 0.68);
	font-size: 0.95rem;
	line-height: 1.55;
}

@media (max-width: 960px) {
	.vcomint-single-hero {
		min-height: 68vh;
		padding: 96px 20px;
	}

	.vcomint-single-body {
		width: min(820px, calc(100% - 32px));
		display: block;
		padding: 44px 0 60px;
	}

	.vcomint-single-sidebar {
		margin-bottom: 32px;
	}

	.vcomint-single-toc {
		position: relative;
		top: auto;
	}

	.vcomint-related-posts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.vcomint-single-hero {
		min-height: 62vh;
		padding: 84px 18px;
	}

	.vcomint-single-title {
		font-size: clamp(2.15rem, 12vw, 3.35rem);
	}

	.vcomint-single-meta {
		font-size: 0.88rem;
	}

	.vcomint-single-meta span + span::before {
		display: none;
	}

	.vcomint-single-toc {
		padding: 20px;
		border-radius: 18px;
	}

	.vcomint-related-posts {
		padding: 56px 16px 68px;
	}
}
/* =========================================================
   Blog Single - VComInt
   ========================================================= */

.vci-post-single {
	background: #ffffff;
	color: #111827;
}

.vci-post-hero {
	position: relative;
	min-height: calc(100vh - 92px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 160px 24px 110px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	isolation: isolate;
}

.vci-post-hero.no-image {
	background: radial-gradient(circle at top left, #123d4a 0%, #0b1320 40%, #090014 100%);
}

.vci-post-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			180deg,
			rgba(9, 0, 20, 0.46) 0%,
			rgba(9, 0, 20, 0.68) 48%,
			rgba(9, 0, 20, 0.86) 100%
		);
}

.vci-post-hero__content {
	width: min(1040px, 100%);
	margin: 0 auto;
	text-align: center;
	color: #ffffff;
}

.vci-post-hero__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff !important;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none !important;
}

.vci-post-hero__title {
	max-width: 960px;
	margin: 0 auto;
	color: #ffffff !important;
	font-family: inherit;
	font-size: clamp(2.7rem, 7vw, 6.4rem);
	font-weight: 850;
	line-height: 0.95;
	letter-spacing: -0.065em;
	text-wrap: balance;
	text-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
}

.vci-post-hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
	margin-top: 26px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.96rem;
	line-height: 1.4;
}

.vci-post-layout {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 76px 0 84px;
	display: grid !important;
	grid-template-columns: minmax(220px, 25%) minmax(0, 75%);
	gap: 56px;
	align-items: start;
	background: #ffffff;
}

.vci-post-layout.no-toc {
	display: block !important;
	width: min(820px, calc(100% - 40px));
}

.vci-post-aside {
	min-width: 0;
}

.vci-post-toc {
	position: sticky;
	top: 112px;
	max-height: calc(100vh - 140px);
	overflow: auto;
	padding: 22px;
	border: 1px solid rgba(17, 24, 39, 0.09);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.vci-post-toc__label {
	margin: 0 0 16px !important;
	color: #111827;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.vci-post-toc__list {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	counter-reset: toc-counter;
}

.vci-post-toc__item {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.35;
	counter-increment: toc-counter;
}

.vci-post-toc__item a {
	position: relative;
	display: block;
	padding-left: 24px;
	color: rgba(17, 24, 39, 0.66) !important;
	font-size: 0.91rem;
	text-decoration: none !important;
	transition: color 160ms ease, transform 160ms ease;
}

.vci-post-toc__item a::before {
	content: counter(toc-counter);
	position: absolute;
	left: 0;
	top: 0;
	color: rgba(17, 24, 39, 0.38);
	font-size: 0.78rem;
	font-weight: 800;
}

.vci-post-toc__item a:hover {
	color: #111827 !important;
	transform: translateX(2px);
}

.vci-post-toc__item.level-3 a {
	padding-left: 34px;
	font-size: 0.86rem;
}

.vci-post-toc__item.level-4 a {
	padding-left: 44px;
	font-size: 0.82rem;
}

.vci-post-content {
	min-width: 0;
	max-width: 760px;
	color: #111827;
	font-family: inherit;
	font-size: clamp(1.06rem, 1.1vw, 1.16rem);
	line-height: 1.78;
}

.vci-post-content > *:first-child {
	margin-top: 0 !important;
}

.vci-post-content p {
	margin: 0 0 1.35em;
}

.vci-post-content h2,
.vci-post-content h3,
.vci-post-content h4 {
	color: #111827;
	font-family: inherit;
	line-height: 1.14;
	letter-spacing: -0.035em;
	scroll-margin-top: 130px;
}

.vci-post-content h2 {
	margin: 2.25em 0 0.72em;
	font-size: clamp(1.85rem, 3.1vw, 2.75rem);
}

.vci-post-content h3 {
	margin: 1.85em 0 0.7em;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.vci-post-content h4 {
	margin: 1.55em 0 0.62em;
	font-size: clamp(1.22rem, 1.7vw, 1.5rem);
}

.vci-post-content a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.vci-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 18px;
}

.vci-post-content ul,
.vci-post-content ol {
	margin: 0 0 1.5em 1.25em;
	padding: 0;
}

.vci-post-content li {
	margin-bottom: 0.45em;
}

.vci-related {
	padding: 76px 20px 90px;
	background: #f7f8fb;
}

.vci-related__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.vci-related__title {
	margin: 0 0 30px;
	color: #111827;
	font-family: inherit;
	font-size: clamp(1.9rem, 3vw, 2.7rem);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: -0.045em;
}

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

.vci-related-card {
	overflow: hidden;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 22px 60px rgba(15, 23, 42, 0.07);
}

.vci-related-card__link {
	display: block;
	height: 100%;
	color: inherit !important;
	text-decoration: none !important;
}

.vci-related-card__image {
	aspect-ratio: 16 / 9;
	margin: 0;
	overflow: hidden;
	background: #e5e7eb;
}

.vci-related-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vci-related-card__body {
	padding: 22px;
}

.vci-related-card__body h3 {
	margin: 0 0 10px;
	color: #111827;
	font-size: 1.14rem;
	font-weight: 850;
	line-height: 1.22;
	letter-spacing: -0.025em;
}

.vci-related-card__body p {
	margin: 0;
	color: rgba(17, 24, 39, 0.66);
	font-size: 0.94rem;
	line-height: 1.55;
}

@media (max-width: 1024px) {
	.vci-post-hero {
		min-height: 72vh;
		padding: 130px 22px 90px;
	}

	.vci-post-layout {
		width: min(820px, calc(100% - 32px));
		display: block !important;
		padding: 50px 0 70px;
	}

	.vci-post-aside {
		margin-bottom: 34px;
	}

	.vci-post-toc {
		position: relative;
		top: auto;
		max-height: none;
	}

	.vci-post-content {
		max-width: none;
	}

	.vci-related__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.vci-post-hero {
		min-height: 66vh;
		padding: 112px 18px 76px;
	}

	.vci-post-hero__title {
		font-size: clamp(2.25rem, 12vw, 3.5rem);
	}

	.vci-post-layout {
		width: min(100% - 28px, 820px);
	}

	.vci-post-toc {
		padding: 20px;
		border-radius: 18px;
	}

	.vci-related {
		padding: 58px 16px 72px;
	}
}
/* =========================================================
   Blog Single - ajustes finais
   ========================================================= */

.vci-post-single {
	background: #0b0213 !important;
	color: #f4effa;
}

.vci-post-hero {
	min-height: calc(88vh - 92px);
	background-color: #0b0213;
}

.vci-post-hero__overlay {
	background:
		linear-gradient(
			180deg,
			rgba(9, 0, 20, 0.38) 0%,
			rgba(9, 0, 20, 0.72) 58%,
			rgba(9, 0, 20, 0.96) 100%
		) !important;
}

.vci-post-layout {
	background: #0b0213 !important;
	color: #f4effa;
}

.vci-post-sidebar-box {
	position: sticky;
	top: 112px;
	max-height: calc(100vh - 140px);
	overflow: auto;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.075) 0%,
			rgba(255, 255, 255, 0.035) 100%
		);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
}

.vci-post-toc {
	position: static !important;
	top: auto !important;
	max-height: none !important;
	overflow: visible !important;
	padding: 24px 0 0 !important;
	margin-top: 24px;
	border: 0 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.vci-post-sidebar-label {
	margin: 0 0 16px !important;
	color: rgba(255, 255, 255, 0.72) !important;
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.vci-post-details {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.vci-post-detail {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.vci-post-detail span {
	color: rgba(255, 255, 255, 0.46);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vci-post-detail a,
.vci-post-detail time {
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none !important;
}

.vci-post-detail a:hover {
	color: #ffffff !important;
}

.vci-post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vci-post-categories a {
	display: inline-flex;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.92) !important;
	font-size: 0.78rem;
	font-weight: 750;
	line-height: 1;
	text-decoration: none !important;
}

.vci-post-categories a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff !important;
}

.vci-post-toc__list {
	counter-reset: toc-counter;
}

.vci-post-toc__item a {
	color: rgba(255, 255, 255, 0.62) !important;
	text-decoration: none !important;
}

.vci-post-toc__item a::before {
	color: rgba(255, 255, 255, 0.32) !important;
}

.vci-post-toc__item a:hover {
	color: #ffffff !important;
}

.vci-post-toc__item.level-3 a,
.vci-post-toc__item.level-4 a {
	color: rgba(255, 255, 255, 0.52) !important;
}

.vci-post-content {
	color: rgba(255, 255, 255, 0.84) !important;
}

.vci-post-content h2,
.vci-post-content h3,
.vci-post-content h4 {
	color: #ffffff !important;
}

.vci-post-content p,
.vci-post-content li {
	color: rgba(255, 255, 255, 0.78);
}

.vci-post-content a {
	color: #d7c6ff !important;
}

.vci-related {
	background: #10051d !important;
}

.vci-related__title {
	color: #ffffff !important;
}

.vci-related-card {
	border-color: rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.vci-related-card__body h3 {
	color: #ffffff !important;
}

.vci-related-card__body p {
	color: rgba(255, 255, 255, 0.64) !important;
}

@media (max-width: 1024px) {
	.vci-post-sidebar-box {
		position: relative;
		top: auto;
		max-height: none;
	}
}
.vcomint-internal-link[data-vcomint-tooltip] {
	position: relative;
	text-decoration-line: underline;
	text-decoration-style: solid !important;
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
	text-decoration-color: rgba(53,191,186,.92);
}

.vcomint-internal-link[data-vcomint-tooltip]:hover::after,
.vcomint-internal-link[data-vcomint-tooltip]:focus::after {
	content: attr(data-vcomint-tooltip);
	position: absolute;
	z-index: 9999;
	left: 0;
	bottom: calc(100% + 10px);
	width: min(340px, 80vw);
	padding: 14px 16px;
	border: 1px solid rgba(53, 191, 186, 0.95);
	border-radius: 14px;
	background: rgba(45, 163, 163, 0.82);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
	box-shadow:
		0 18px 44px rgba(0, 0, 0, 0.34),
		0 0 28px rgba(53, 191, 186, 0.24);
	white-space: normal;
	pointer-events: none;
	backdrop-filter: blur(8px);
}
.vcomint-internal-link[data-vcomint-tooltip]:hover::before,
.vcomint-internal-link[data-vcomint-tooltip]:focus::before {
	content: "";
	position: absolute;
	z-index: 9999;
	left: 18px;
	bottom: calc(100% + 3px);
	width: 14px;
	height: 14px;
	background: rgba(45, 163, 163, 0.82);
	border-left: 1px solid rgba(53, 191, 186, 0.95);
	border-top: 1px solid rgba(53, 191, 186, 0.95);
	transform: rotate(45deg);
	box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.18);
	pointer-events: none;
	backdrop-filter: blur(8px);
}
.vcomint-internal-link[data-vcomint-tooltip] {
	position: relative;
	text-decoration-line: underline;
	text-decoration-style: solid !important;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	text-decoration-color: rgba(53, 191, 186, 0.92);
}
.vcomint-site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-width: 0;
}

.vcomint-site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(244, 196, 48, 0.42);
	border-radius: 999px;
	background: rgba(244, 196, 48, 0.08);
	color: var(--gold-light, #f4c430);
	font-family: var(--font-mono, ui-monospace, monospace);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.vcomint-site-header__cta:hover {
	background: var(--gold-light, #f4c430);
	color: var(--purple-deep, #180727);
}

@media (max-width: 980px) {
	.vcomint-site-header__actions {
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.vcomint-site-header__cta {
		width: fit-content;
	}
}
.vcomint-site-header__menu li {
	position: relative;
}

.vcomint-site-header__menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 9999;
	min-width: 230px;
	display: none;
	margin: 0;
	padding: 10px;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: #241333;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.vcomint-site-header__menu li:hover > .sub-menu,
.vcomint-site-header__menu li:focus-within > .sub-menu {
	display: block;
}

.vcomint-site-header__menu .sub-menu li {
	width: 100%;
}

.vcomint-site-header__menu .sub-menu a {
	width: 100%;
	min-height: 40px;
	padding: 10px 12px;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.78);
	white-space: normal;
}

.vcomint-site-header__menu .sub-menu a:hover {
	background: rgba(53, 191, 186, 0.08);
	color: var(--teal-light, #35bfba);
}

@media (max-width: 980px) {
	.vcomint-site-header__menu .sub-menu {
		position: static;
		display: block;
		margin-top: 6px;
		padding: 8px;
		box-shadow: none;
	}

	.vcomint-site-header__menu .sub-menu a {
		padding-left: 18px;
	}
}
/* Header dropdown — mantém submenu clicável */
.vcomint-site-header__menu li {
	position: relative;
}

.vcomint-site-header__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
	min-width: 240px;
	display: block;
	margin: 0;
	padding: 10px;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: #241333;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition:
		opacity 160ms ease,
		visibility 160ms ease,
		transform 160ms ease;
}

.vcomint-site-header__menu li:hover > .sub-menu,
.vcomint-site-header__menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

/* Área invisível acima do submenu para evitar fechamento ao mover o mouse */
.vcomint-site-header__menu .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 12px;
}

.vcomint-site-header__menu .sub-menu li {
	width: 100%;
}

.vcomint-site-header__menu .sub-menu a {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 40px;
	padding: 10px 12px;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.78);
	white-space: nowrap;
	text-decoration: none;
}

.vcomint-site-header__menu .sub-menu a:hover,
.vcomint-site-header__menu .sub-menu a:focus {
	background: rgba(53, 191, 186, 0.08);
	color: var(--teal-light, #35bfba);
}

/* Evita que o submenu fique escondido atrás do shell/conteúdo */
.vcomint-site-header {
	position: relative;
	z-index: 10000;
}

@media (max-width: 980px) {
	.vcomint-site-header__menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		margin-top: 6px;
		padding: 8px;
		box-shadow: none;
	}

	.vcomint-site-header__menu .sub-menu::before {
		display: none;
	}

	.vcomint-site-header__menu .sub-menu a {
		padding-left: 18px;
		white-space: normal;
	}
}
/* =========================================================
   Header Mobile Hamburger - VComInt
   ========================================================= */

.vcomint-site-header__hamburger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border: 1px solid rgba(53, 191, 186, 0.36);
	border-radius: 12px;
	background: rgba(53, 191, 186, 0.09);
	color: var(--teal-light, #35bfba);
	cursor: pointer;
}

.vcomint-site-header__hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition:
		transform 180ms ease,
		opacity 180ms ease;
}

.vcomint-site-header__hamburger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.vcomint-site-header__hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.vcomint-site-header__hamburger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
	.vcomint-site-header {
		position: sticky !important;
		top: 0;
		z-index: 10000;
	}

	body.admin-bar .vcomint-site-header {
		top: 46px;
	}

	.vcomint-site-header__inner {
		width: min(100% - 24px, 1280px);
		min-height: 68px;
		padding: 12px 0;
		display: grid;
		grid-template-columns: auto 1fr auto;
		gap: 12px;
		align-items: center;
	}

	.vcomint-site-header__brand {
		grid-column: 1 / 2;
	}

	.vcomint-site-header__page-title {
		grid-column: 2 / 3;
		min-width: 0;
		padding-left: 12px;
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}

	.vcomint-site-header__page-title span {
		display: none;
	}

	.vcomint-site-header__page-title strong {
		font-size: 0.78rem;
	}

	.vcomint-site-header__hamburger {
		grid-column: 3 / 4;
		display: inline-flex;
		justify-self: end;
	}

	.vcomint-site-header__actions {
		grid-column: 1 / -1;
		display: none !important;
		width: 100%;
		margin-top: 8px;
		padding: 14px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 18px;
		background: rgba(36, 19, 51, 0.96);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
	}

	.vcomint-site-header__actions.is-open {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.vcomint-site-header__nav {
		width: 100%;
		overflow: visible;
	}

	.vcomint-site-header__menu {
		width: 100%;
		max-width: none;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}

	.vcomint-site-header__menu > li {
		width: 100%;
	}

	.vcomint-site-header__menu a {
		width: 100%;
		min-height: 44px;
		justify-content: flex-start;
		padding: 10px 12px;
		border-radius: 12px;
		white-space: normal;
	}

	.vcomint-site-header__menu .sub-menu {
		position: static !important;
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: none !important;
		min-width: 0;
		width: 100%;
		margin: 4px 0 8px;
		padding: 8px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.045);
		box-shadow: none;
	}

	.vcomint-site-header__menu .sub-menu::before {
		display: none !important;
	}

	.vcomint-site-header__menu .sub-menu a {
		min-height: 40px;
		padding-left: 18px;
		font-size: 0.62rem;
	}

	.vcomint-site-header__cta {
		width: 100%;
		min-height: 44px;
		border-radius: 12px;
	}
}

@media (max-width: 640px) {
	.vcomint-site-header__mark {
		width: 38px;
		height: 38px;
		border-radius: 11px;
	}

	.vcomint-site-header__brand-text strong {
		max-width: 120px;
		font-size: 1.02rem;
	}

	.vcomint-site-header__brand-text em {
		display: none;
	}

	.vcomint-site-header__page-title {
		display: none;
	}

	.vcomint-site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.vcomint-site-header__brand {
		grid-column: 1 / 2;
	}

	.vcomint-site-header__hamburger {
		grid-column: 2 / 3;
	}

	.vcomint-site-header__actions {
		grid-column: 1 / -1;
	}
}