/* ==========================================================================
   Vamob — sistema de design
   Paleta extraída do logo: azul-marinho, azul e verde-água.
   Estrutura: 1 Tokens · 2 Base · 3 Elementor (neutralização) · 4 Layout
              5 Tipografia · 6 Botões · 7 Cards e listas · 8 Seções · 9 Header
              10 Footer · 11 Páginas internas · 12 Utilitários e movimento
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
	--vm-navy-950: #051530;
	--vm-navy-900: #071b3a;
	--vm-navy-800: #0a2a55;
	--vm-navy-700: #0a3468;
	--vm-blue-600: #045ba3;
	--vm-blue-100: #dcebf8;
	--vm-blue-50: #eef5fb;
	--vm-teal-500: #1aaa91;
	--vm-teal-400: #3cc4aa;
	--vm-teal-700: #0e7c69;
	--vm-teal-100: #d9f4ee;

	--vm-ink: #071b3a;
	--vm-text: #3f4f68;
	--vm-muted: #52627a;
	--vm-line: #d3e0ee;
	--vm-soft: #f5f8fb;

	/* Fundos das seções (o branco fica para cards, header e formulários) */
	--vm-bg: #eaf2fa;
	--vm-bg-2: #d9e8f6;
	--vm-bg-mint: #dcf2ec;

	--vm-radius: 16px;
	--vm-radius-lg: 24px;
	--vm-shadow-sm: 0 1px 2px rgba(7, 27, 58, 0.05), 0 4px 14px rgba(7, 27, 58, 0.05);
	--vm-shadow: 0 2px 4px rgba(7, 27, 58, 0.04), 0 16px 40px rgba(7, 27, 58, 0.09);

	--vm-container: 1180px;
	--vm-gutter: clamp(20px, 4vw, 32px);
	--vm-section: clamp(64px, 9vw, 112px);
	--vm-header-h: 72px;

	--vm-font: "Manrope", "Manrope Fallback", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* 2. Base ------------------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body.vm {
	margin: 0;
	font-family: var(--vm-font);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--vm-text);
	background: var(--vm-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

.vm img,
.vm svg {
	max-width: 100%;
	height: auto;
}

.vm a {
	color: inherit;
}

.vm :focus-visible {
	outline: 3px solid var(--vm-teal-500);
	outline-offset: 3px;
	border-radius: 6px;
}

.vm [id] {
	scroll-margin-top: calc(var(--vm-header-h) + 16px);
}

html.vm-nav-open {
	overflow: hidden;
}

.vm-skip {
	position: absolute;
	left: -9999px;
	top: 8px;
	z-index: 100;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--vm-navy-900);
	color: #fff;
	font-weight: 700;
}

.vm-skip:focus {
	left: 8px;
}

#vm-sentinel {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

/* 3. Elementor: neutraliza os padrões do construtor ------------------------- */
/* Padding e espaçamento padrão já são zerados no Kit do Elementor (instalação Vamob),
   então os controles do editor continuam funcionando. Aqui só o essencial. */
.vm .e-con {
	max-width: none;
	min-width: 0;
}

.vm .elementor-widget-text-editor,
.vm .elementor-widget-html {
	color: inherit;
	font: inherit;
}

.vm .elementor-widget-text-editor p,
.vm .elementor-widget-text-editor ul,
.vm .elementor-widget-text-editor ol {
	margin: 0 0 1em;
}

.vm .elementor-widget-text-editor > :last-child,
.vm .elementor-widget-text-editor > .elementor-widget-container > :last-child {
	margin-bottom: 0;
}

/* 4. Layout ---------------------------------------------------------------- */
.vm .vm-section {
	--sec-bg: var(--vm-bg);
	width: 100%;
	padding: var(--vm-section) 0;
	position: relative;
	background:
		radial-gradient(45% 55% at 100% 0%, rgba(26, 170, 145, 0.11), transparent 70%),
		radial-gradient(45% 55% at 0% 100%, rgba(4, 91, 163, 0.09), transparent 70%),
		var(--sec-bg);
}

.vm .vm-section--soft { --sec-bg: var(--vm-bg-2); }
.vm .vm-section--mint { --sec-bg: var(--vm-bg-mint); }

.vm .vm-section--tight {
	padding: clamp(40px, 6vw, 72px) 0;
}

.vm .vm-container {
	width: 100%;
	max-width: var(--vm-container);
	margin-inline: auto;
	padding-inline: var(--vm-gutter);
	display: flex;
	flex-direction: column;
}

.vm .vm-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 760px;
	margin: 0 auto clamp(36px, 5vw, 60px);
	text-align: center;
}

.vm .vm-head--left {
	align-items: flex-start;
	margin-inline: 0;
	text-align: left;
}

.vm .vm-grid {
	display: grid;
	gap: 20px;
	width: 100%;
	align-items: stretch;
}

.vm .vm-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vm .vm-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vm .vm-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vm .vm-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.vm .vm-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(32px, 6vw, 80px);
	align-items: center;
	width: 100%;
}

.vm .vm-split--visual-wide { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.vm .vm-split--visual-left > :first-child { order: 2; }

.vm .vm-stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.vm .vm-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* O Elementor aplica flex-direction com a mesma especificidade e carrega depois: sobe-se um nível. */
.vm .e-con.vm-actions,
.vm .e-con.vm-product__top,
.vm .e-con.vm-tile { flex-direction: row; }
.vm .vm-actions > .elementor-widget { width: auto; flex: 0 0 auto; }

@media (max-width: 1023px) {
	.vm .vm-grid--4,
	.vm .vm-grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vm .vm-split,
	.vm .vm-split--visual-wide { grid-template-columns: minmax(0, 1fr); }
	.vm .vm-split--visual-left > :first-child { order: 0; }
}

@media (max-width: 899px) {
	.vm .vm-grid--3 { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 599px) {
	.vm .vm-grid--2,
	.vm .vm-grid--4 { grid-template-columns: minmax(0, 1fr); }
	.vm .vm-grid--tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vm .e-con.vm-actions { flex-direction: column; align-items: stretch; width: 100%; }
	.vm .vm-actions > .elementor-widget { width: 100%; }
}

/* 5. Tipografia ------------------------------------------------------------ */
.vm .vm-h1 .elementor-heading-title,
.vm .vm-h2 .elementor-heading-title,
.vm .vm-h3 .elementor-heading-title {
	margin: 0;
	font-family: var(--vm-font);
	font-weight: 800;
	color: var(--vm-ink);
	letter-spacing: -0.03em;
	line-height: 1.08;
	text-wrap: balance;
}

.vm .vm-h1 .elementor-heading-title { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.6rem); letter-spacing: -0.035em; line-height: 1.04; }
.vm .vm-h1--page .elementor-heading-title { font-size: clamp(2rem, 1.2rem + 3.4vw, 3.4rem); }
.vm .vm-h2 .elementor-heading-title { font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.75rem); }
.vm .vm-h3 .elementor-heading-title { font-size: 1.2rem; letter-spacing: -0.015em; line-height: 1.25; font-weight: 700; }

.vm .vm-mark {
	background: linear-gradient(95deg, var(--vm-blue-600), #0e8f79);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.vm .vm-eyebrow,
.vm .vm-eyebrow p {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--vm-teal-700);
}

.vm .vm-eyebrow p::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 10px;
	border-radius: 50%;
	background: var(--vm-teal-500);
	vertical-align: 1px;
}

.vm .vm-lead,
.vm .vm-lead p {
	margin: 0;
	font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
	line-height: 1.6;
	color: var(--vm-text);
}

.vm .vm-lead { max-width: 62ch; }
.vm .vm-head .vm-lead { max-width: 58ch; }

.vm .vm-small,
.vm .vm-small p {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--vm-muted);
}

/* 6. Botões ---------------------------------------------------------------- */
.vm .vm-btn .elementor-button,
.vm a.vm-btn,
.vm button.vm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	min-height: 50px;
	padding: 0 26px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font-family: var(--vm-font);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.005em;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	fill: currentColor;
}

.vm .vm-btn .elementor-button-content-wrapper { display: inline-flex; align-items: center; gap: 0.5em; }
.vm .vm-btn .elementor-button-text { line-height: 1; }

.vm .vm-btn--primary .elementor-button,
.vm a.vm-btn--primary,
.vm button.vm-btn--primary {
	background: var(--vm-teal-500);
	color: var(--vm-navy-900);
	box-shadow: 0 8px 22px rgba(26, 170, 145, 0.32);
}

.vm .vm-btn--primary .elementor-button:hover,
.vm a.vm-btn--primary:hover,
.vm button.vm-btn--primary:hover {
	background: var(--vm-teal-400);
	color: var(--vm-navy-900);
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(26, 170, 145, 0.38);
}

.vm .vm-btn--ghost .elementor-button,
.vm a.vm-btn--ghost {
	background: #fff;
	color: var(--vm-ink);
	border-color: #c9d4e2;
}

.vm .vm-btn--ghost .elementor-button:hover,
.vm a.vm-btn--ghost:hover {
	border-color: var(--vm-navy-700);
	color: var(--vm-ink);
	transform: translateY(-1px);
}

.vm .vm-btn--ghost-light .elementor-button {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.38);
}

.vm .vm-btn--ghost-light .elementor-button:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
	color: #fff;
}

.vm .vm-btn--link .elementor-button {
	min-height: 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	color: var(--vm-teal-700);
	box-shadow: none;
}

.vm .vm-btn--link .elementor-button-text::after {
	content: "→";
	display: inline-block;
	margin-left: 0.4em;
	transition: transform 0.2s;
}

.vm .vm-btn--link .elementor-button:hover { color: var(--vm-navy-700); background: none; }
.vm .vm-btn--link .elementor-button:hover .elementor-button-text::after { transform: translateX(4px); }

@media (max-width: 599px) {
	.vm .vm-actions .vm-btn,
	.vm .vm-actions .vm-btn .elementor-button { width: 100%; }
}

/* 7. Cards, ícones, listas ------------------------------------------------- */
.vm .vm-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--vm-line);
	border-radius: 20px;
	box-shadow: var(--vm-shadow-sm);
	transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.vm .vm-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--vm-shadow);
	border-color: #d3dde9;
}

.vm .vm-card p { margin: 0; font-size: 0.97rem; line-height: 1.6; color: var(--vm-text); }

.vm .vm-card--flat { box-shadow: none; }
.vm .vm-card--flat:hover { transform: none; box-shadow: none; }

.vm .vm-ico {
	flex: none;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--vm-blue-50), var(--vm-teal-100));
	color: var(--vm-navy-700);
}

.vm .vm-ico {
	display: grid;
	place-items: center;
}

.vm .vm-ico svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vm .vm-badge {
	display: inline-block;
	width: auto;
	align-self: flex-start;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--vm-blue-50);
}

.vm .vm-badge p {
	margin: 0;
	color: var(--vm-navy-700);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.5;
}

.vm .vm-checks ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.vm .vm-checks li {
	position: relative;
	padding-left: 30px;
	font-size: 0.98rem;
	line-height: 1.5;
	color: var(--vm-text);
}

.vm .vm-checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.12em;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--vm-teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7c69' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.vm .vm-checks--two ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; }

@media (max-width: 599px) {
	.vm .vm-checks--two ul { grid-template-columns: minmax(0, 1fr); }
}

/* Cartões com lista (ecossistema) */
.vm .vm-product { gap: 18px; padding: 32px; }
.vm .vm-product .vm-h3 .elementor-heading-title { font-size: 1.35rem; }
.vm .vm-product__top { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; width: 100%; }

/* Passos */
.vm .vm-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	counter-reset: step;
}

.vm .vm-step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 66px;
	counter-increment: step;
}

.vm .vm-step::before {
	content: counter(step);
	position: absolute;
	top: 0;
	left: 0;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--vm-navy-900);
	color: #fff;
	font-size: 1.05rem;
	font-weight: 800;
	box-shadow: 0 0 0 6px var(--sec-bg, #fff);
	z-index: 1;
}

.vm .vm-step::after {
	content: "";
	position: absolute;
	top: 22px;
	left: 46px;
	right: -24px;
	height: 2px;
	background: repeating-linear-gradient(90deg, #cbd6e4 0 6px, transparent 6px 12px);
}

.vm .vm-step:last-child::after { display: none; }
.vm .vm-step:last-child::before { background: var(--vm-teal-500); color: var(--vm-navy-900); }
.vm .vm-step p { margin: 0; font-size: 0.95rem; color: var(--vm-text); }

@media (max-width: 1023px) {
	.vm .vm-steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
	.vm .vm-step { padding: 0 0 32px 68px; min-height: 80px; }
	.vm .vm-step::before { box-shadow: none; }
	.vm .vm-step::after { top: 46px; bottom: 0; left: 22px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, #cbd6e4 0 6px, transparent 6px 12px); }
}

/* Etapas de expansão: mini gráfico de barras (etapa N = N barras preenchidas) */
.vm .vm-stage { position: relative; min-height: 220px; justify-content: flex-start; }

.vm .vm-stage::after {
	content: "";
	position: absolute;
	top: 26px;
	right: 26px;
	width: 46px;
	height: 30px;
	background:
		linear-gradient(var(--c4, #dbe4ef), var(--c4, #dbe4ef)) 100% 100% / 8px 100% no-repeat,
		linear-gradient(var(--c3, #dbe4ef), var(--c3, #dbe4ef)) 66% 100% / 8px 70% no-repeat,
		linear-gradient(var(--c2, #dbe4ef), var(--c2, #dbe4ef)) 33% 100% / 8px 46% no-repeat,
		linear-gradient(var(--c1, #dbe4ef), var(--c1, #dbe4ef)) 0 100% / 8px 26% no-repeat;
	border-radius: 2px;
}

.vm .vm-stage:nth-child(1) { --c1: var(--vm-teal-500); }
.vm .vm-stage:nth-child(2) { --c1: var(--vm-teal-500); --c2: var(--vm-teal-500); }
.vm .vm-stage:nth-child(3) { --c1: var(--vm-teal-500); --c2: var(--vm-teal-500); --c3: var(--vm-teal-500); }
.vm .vm-stage:nth-child(4) { --c1: var(--vm-teal-500); --c2: var(--vm-teal-500); --c3: var(--vm-teal-500); --c4: var(--vm-blue-600); }

@media (max-width: 1023px) { .vm .vm-stage { min-height: 0; } }

/* Diferenciais */
.vm .vm-tile {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--vm-line);
	border-radius: 16px;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.vm .vm-tile:hover { border-color: #cbd6e4; box-shadow: var(--vm-shadow-sm); transform: translateY(-2px); }
.vm .vm-tile .vm-ico { width: 40px; height: 40px; border-radius: 12px; }
.vm .vm-tile .vm-ico svg { width: 20px; height: 20px; }
.vm .vm-tile .elementor-heading-title { margin: 0; font-size: 0.98rem; font-weight: 700; line-height: 1.3; color: var(--vm-ink); letter-spacing: -0.01em; }

@media (max-width: 599px) {
	.vm .e-con.vm-tile { flex-direction: column; align-items: flex-start; padding: 16px; gap: 10px; }
}

/* Cartão de chamada dentro de grade */
.vm .vm-card--cta {
	background: linear-gradient(160deg, var(--vm-navy-800), var(--vm-navy-950));
	border-color: transparent;
	justify-content: space-between;
}

.vm .vm-card--cta .elementor-heading-title { color: #fff; }
.vm .vm-card--cta p { color: rgba(255, 255, 255, 0.75); }

/* Comparativo "você cuida / Vamob cuida" */
.vm .vm-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; width: 100%; }
.vm .vm-duo .vm-card { padding: 36px; gap: 18px; }
.vm .vm-duo .vm-card--dark { background: linear-gradient(160deg, var(--vm-navy-800), var(--vm-navy-950)); border-color: transparent; }
@media (max-width: 767px) { .vm .vm-duo { grid-template-columns: minmax(0, 1fr); } .vm .vm-duo .vm-card { padding: 28px; } }

/* FAQ */
.vm .vm-faq { display: grid; gap: 12px; width: 100%; max-width: 820px; margin-inline: auto; }
.vm .vm-faq details { background: #fff; border: 1px solid var(--vm-line); border-radius: 16px; padding: 0 22px; transition: border-color 0.2s, box-shadow 0.2s; }
.vm .vm-faq details[open] { border-color: #cbd6e4; box-shadow: var(--vm-shadow-sm); }
.vm .vm-faq summary { position: relative; padding: 20px 32px 20px 0; font-weight: 700; color: var(--vm-ink); cursor: pointer; list-style: none; letter-spacing: -0.01em; }
.vm .vm-faq summary::-webkit-details-marker { display: none; }
.vm .vm-faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 500; color: var(--vm-teal-700); transition: transform 0.2s; }
.vm .vm-faq details[open] summary::after { content: "–"; }
.vm .vm-faq details p { margin: 0 0 20px; color: var(--vm-text); }

/* 8. Seções ---------------------------------------------------------------- */
/* Hero */
.vm .vm-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(32px, 5vw, 72px) 0 clamp(40px, 6vw, 72px);
	background:
		radial-gradient(60% 55% at 88% 6%, rgba(26, 170, 145, 0.24), transparent 70%),
		radial-gradient(50% 55% at 4% 0%, rgba(4, 91, 163, 0.2), transparent 70%),
		#dfeaf7;
}

.vm .vm-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(7, 27, 58, 0.1) 1px, transparent 1.3px);
	background-size: 24px 24px;
	-webkit-mask-image: linear-gradient(180deg, #000 0, transparent 70%);
	mask-image: linear-gradient(180deg, #000 0, transparent 70%);
	pointer-events: none;
}

.vm .vm-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	width: 100%;
}

.vm .vm-hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }

.vm .vm-pill,
.vm .vm-pill p {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--vm-navy-700);
}

.vm .vm-pill {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px 7px 12px;
	border: 1px solid var(--vm-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: var(--vm-shadow-sm);
}

.vm .vm-pill p::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 9px;
	border-radius: 50%;
	background: var(--vm-teal-500);
	box-shadow: 0 0 0 4px rgba(26, 170, 145, 0.2);
}

.vm .vm-hero__chips ul { display: flex; flex-flow: row wrap; gap: 8px 18px; list-style: none; margin: 0; padding: 0; }
.vm .vm-hero__chips li { position: relative; padding-left: 26px; font-size: 0.92rem; font-weight: 600; color: var(--vm-ink); }
.vm .vm-hero__chips li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--vm-teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7c69' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.vm .vm-hero__visual { position: relative; min-width: 0; }

@media (max-width: 1023px) {
	.vm .vm-hero__grid { grid-template-columns: minmax(0, 1fr); }
	.vm .vm-hero__visual { max-width: 620px; margin-inline: auto; width: 100%; }
}

/* Seção escura (white-label, CTA final) */
.vm .vm-section--dark {
	color: rgba(255, 255, 255, 0.78);
	background:
		radial-gradient(55% 60% at 100% 0%, rgba(26, 170, 145, 0.2), transparent 70%),
		radial-gradient(50% 55% at 0% 100%, rgba(4, 91, 163, 0.32), transparent 70%),
		var(--vm-navy-900);
	overflow: hidden;
}

.vm .vm-section--dark .elementor-heading-title { color: #fff; }
.vm .vm-section--dark .vm-lead,
.vm .vm-section--dark .vm-lead p,
.vm .vm-section--dark p { color: rgba(255, 255, 255, 0.78); }
.vm .vm-section--dark .vm-eyebrow,
.vm .vm-section--dark .vm-eyebrow p { color: var(--vm-teal-400); }
.vm .vm-section--dark .vm-checks li { color: rgba(255, 255, 255, 0.85); }
.vm .vm-section--dark .vm-checks li::before {
	background-color: rgba(60, 196, 170, 0.16);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233cc4aa' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}
.vm .vm-section--dark .vm-small,
.vm .vm-section--dark .vm-small p { color: rgba(255, 255, 255, 0.6); }

/* CTA final */
.vm .vm-cta__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(32px, 6vw, 80px);
	align-items: center;
	width: 100%;
}

.vm .vm-cta__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }

@media (max-width: 899px) { .vm .vm-cta__grid { grid-template-columns: minmax(0, 1fr); } }

/* Pontos de destaque do painel */
.vm .vm-dash__head { max-width: 760px; }
.vm .vm-dash__points ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.vm .vm-dash__points li { position: relative; padding-left: 28px; font-weight: 600; color: var(--vm-ink); font-size: 0.97rem; }
.vm .vm-dash__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.4em;
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: var(--vm-teal-500);
	box-shadow: 0 0 0 4px rgba(26, 170, 145, 0.18);
}
@media (max-width: 767px) { .vm .vm-dash__points ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.vm .vm-note { text-align: center; }

/* 9. Header ---------------------------------------------------------------- */
.vm-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.86);
	-webkit-backdrop-filter: saturate(1.6) blur(14px);
	backdrop-filter: saturate(1.6) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

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

.vm-header.is-stuck {
	background: rgba(255, 255, 255, 0.95);
	border-color: var(--vm-line);
	box-shadow: 0 6px 24px rgba(7, 27, 58, 0.06);
}

.vm-header__inner {
	max-width: var(--vm-container);
	height: var(--vm-header-h);
	margin: 0 auto;
	padding: 0 var(--vm-gutter);
	display: flex;
	align-items: center;
	gap: 24px;
}

.vm-logo { display: inline-flex; align-items: center; flex: none; }
.vm-logo img { display: block; height: 38px; width: auto; }

.vm-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.vm-nav__list { display: flex; gap: 2px; margin: 0; padding: 0; list-style: none; }

.vm-nav__list a {
	display: block;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--vm-ink);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.15s, color 0.15s;
}

.vm-nav__list a:hover,
.vm-nav__list .current-menu-item > a,
.vm-nav__list .current_page_item > a { background: var(--vm-soft); color: var(--vm-navy-700); }

.vm-nav__cta { min-height: 44px !important; padding: 0 22px !important; font-size: 0.95rem !important; white-space: nowrap; }

.vm-burger {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 0;
	border: 1px solid var(--vm-line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.vm-burger span {
	position: absolute;
	left: 12px;
	right: 12px;
	height: 2px;
	border-radius: 2px;
	background: var(--vm-ink);
	transition: transform 0.25s, opacity 0.2s, top 0.25s;
}
.vm-burger span:nth-child(1) { top: 14px; }
.vm-burger span:nth-child(2) { top: 21px; }
.vm-burger span:nth-child(3) { top: 28px; }
.vm-burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.vm-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vm-burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1023px) {
	.js .vm-burger { display: block; }
	.js .vm-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin: 0;
		padding: 12px var(--vm-gutter) 24px;
		background: #fff;
		border-bottom: 1px solid var(--vm-line);
		box-shadow: 0 24px 40px rgba(7, 27, 58, 0.1);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
		max-height: calc(100vh - var(--vm-header-h));
		overflow-y: auto;
	}
	.js .vm-nav.is-open { opacity: 1; visibility: visible; transform: none; }
	.vm-nav__list { flex-direction: column; gap: 0; }
	.vm-nav__list a { padding: 14px 4px; border-radius: 0; border-bottom: 1px solid var(--vm-line); font-size: 1.05rem; }
	.vm-nav__list a:hover,
	.vm-nav__list .current-menu-item > a { background: none; }
	.vm-nav__cta { width: 100%; min-height: 52px !important; }
	.vm-header__inner { gap: 12px; }
	.no-js .vm-header__inner { flex-wrap: wrap; height: auto; padding-block: 12px; }
}

/* 10. Footer --------------------------------------------------------------- */
.vm-footer {
	background: var(--vm-navy-950);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.95rem;
}

.vm-footer a { text-decoration: none; transition: color 0.15s; }
.vm-footer a:hover { color: #fff; }

.vm-footer__inner {
	max-width: var(--vm-container);
	margin: 0 auto;
	padding: clamp(48px, 7vw, 80px) var(--vm-gutter) clamp(32px, 5vw, 48px);
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
}

.vm-footer__tagline { margin: 16px 0 20px; max-width: 30ch; font-size: 1.02rem; color: rgba(255, 255, 255, 0.85); }

.vm-footer__h {
	margin: 0 0 16px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.vm-footer__list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.vm-footer__address { line-height: 1.5; }

.vm-social { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.vm-social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	color: #fff;
	transition: background-color 0.2s, border-color 0.2s;
}
.vm-social a:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); }

.vm-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.vm-footer__bottom-inner {
	max-width: var(--vm-container);
	margin: 0 auto;
	padding: 22px var(--vm-gutter);
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px 24px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
}
.vm-footer__bottom-inner p { margin: 0; }
.vm-footer__legal { display: block; margin-top: 2px; }
.vm-footer__legal-list { display: flex; flex-flow: row wrap; gap: 8px 24px; margin: 0; padding: 0; list-style: none; }

@media (max-width: 899px) {
	.vm-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vm-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 519px) {
	.vm-footer__inner { grid-template-columns: minmax(0, 1fr); }
}

/* 11. Páginas internas ----------------------------------------------------- */
.vm .vm-pagehero {
	position: relative;
	overflow: hidden;
	padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 7vw, 88px);
	background:
		radial-gradient(50% 70% at 92% 0%, rgba(26, 170, 145, 0.2), transparent 70%),
		radial-gradient(45% 60% at 0% 0%, rgba(4, 91, 163, 0.16), transparent 70%),
		var(--vm-bg-2);
	border-bottom: 1px solid var(--vm-line);
}

.vm .vm-pagehero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

.vm-breadcrumbs { margin: 0 0 8px; font-size: 0.85rem; color: var(--vm-muted); }
.vm-breadcrumbs ol { display: flex; flex-flow: row wrap; gap: 4px 0; margin: 0; padding: 0; list-style: none; }
.vm-breadcrumbs li + li::before { content: "/"; margin: 0 10px; color: #b7c3d3; }
.vm-breadcrumbs a { text-decoration: none; color: var(--vm-muted); }
.vm-breadcrumbs a:hover { color: var(--vm-navy-700); text-decoration: underline; }
.vm-breadcrumbs [aria-current] { color: var(--vm-ink); font-weight: 600; }

/* Blocos de recurso detalhados */
.vm .vm-feature-group { padding: 32px; gap: 20px; }
.vm .vm-feature-group .vm-h3 .elementor-heading-title { font-size: 1.3rem; }

/* Páginas legais e texto corrido */
.vm-legal { padding: clamp(40px, 6vw, 80px) var(--vm-gutter); }
.vm-legal__inner { max-width: 780px; margin: 0 auto; }
.vm-legal__title { margin: 0 0 8px; font-size: clamp(2rem, 1.2rem + 3vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--vm-ink); }
.vm-legal__meta { margin: 0 0 32px; color: var(--vm-muted); font-size: 0.9rem; }
.vm-prose { font-size: 1.05rem; line-height: 1.75; }
.vm-prose h2 { margin: 2.2em 0 0.6em; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--vm-ink); line-height: 1.25; }
.vm-prose h3 { margin: 1.8em 0 0.5em; font-size: 1.15rem; font-weight: 700; color: var(--vm-ink); }
.vm-prose p,
.vm-prose ul,
.vm-prose ol { margin: 0 0 1.1em; }
.vm-prose ul,
.vm-prose ol { padding-left: 1.4em; }
.vm-prose li { margin-bottom: 0.4em; }
.vm-prose a { color: var(--vm-blue-600); text-decoration: underline; text-underline-offset: 3px; }
.vm-prose .vm-notice { padding: 16px 20px; border: 1px solid #f1d98a; border-radius: 14px; background: #fff9e6; color: #5c4b0d; font-size: 0.95rem; }

.vm-post { margin-bottom: 32px; }
.vm-post__title { margin: 0 0 8px; font-size: 1.5rem; }

/* 404 */
.vm-404 { padding: clamp(64px, 12vw, 140px) var(--vm-gutter); text-align: center; background: radial-gradient(50% 60% at 50% 0%, rgba(26, 170, 145, 0.18), transparent 70%), var(--vm-bg); }
.vm-404__inner { max-width: 560px; margin: 0 auto; }
.vm-404__code { margin: 0; font-size: clamp(4rem, 12vw, 7rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1; background: linear-gradient(95deg, var(--vm-blue-600), #0e8f79); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.vm-404 h1 { margin: 12px 0 12px; font-size: clamp(1.6rem, 1rem + 2vw, 2.25rem); font-weight: 800; color: var(--vm-ink); letter-spacing: -0.025em; }
.vm-404__actions { display: flex; flex-flow: row wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* 11b. Complementos de layout ---------------------------------------------- */
.vm .vm-actions--center { justify-content: center; margin-top: clamp(28px, 4vw, 44px); }
.vm .vm-split--top { align-items: start; }
.vm .vm-stack--wide { width: 100%; gap: clamp(48px, 7vw, 88px); align-items: stretch; }
.vm .vm-pagehero .vm-container > .vm-pagehero__copy { max-width: 800px; }
.vm .elementor-widget.vm-dash__points { margin-bottom: clamp(28px, 4vw, 44px); }
.vm .elementor-widget.vm-note { margin-top: 18px; }

/* Passos em coluna (página de contato) */
.vm .vm-steps--mini { grid-template-columns: minmax(0, 1fr); gap: 0; margin: 8px 0; }
.vm .vm-steps--mini .vm-step { padding: 0 0 28px 68px; min-height: 80px; }
.vm .vm-steps--mini .vm-step::before { box-shadow: none; }
.vm .vm-steps--mini .vm-step::after { top: 46px; bottom: 0; left: 22px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, #cbd6e4 0 6px, transparent 6px 12px); }
.vm .vm-steps--mini .vm-step:last-child { padding-bottom: 0; }
.vm .vm-steps--mini .vm-step:last-child::before { background: var(--vm-navy-900); color: #fff; }

/* Cartão escuro dentro de seção clara */
.vm .vm-card--dark { color: rgba(255, 255, 255, 0.8); }
.vm .vm-card--dark .elementor-heading-title { color: #fff; }
.vm .vm-card--dark .vm-checks li { color: rgba(255, 255, 255, 0.86); }
.vm .vm-card--dark .vm-checks li::before {
	background-color: rgba(60, 196, 170, 0.16);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233cc4aa' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E");
}

/* Formulário sobre fundo claro (página de contato) */
.vm .vm-form-card--page { border: 1px solid var(--vm-line); box-shadow: var(--vm-shadow); }

/* 11c. Cor de destaque por opção -------------------------------------------
   Cada item de uma grade (diferenciais, cards, recursos) recebe uma cor própria
   em rotação, para as opções se diferenciarem e chamarem a atenção. As cores
   partem da paleta do logo (verde-água, azul) + âmbar, violeta e rosa de apoio. */
.vm .vm-grid > :nth-child(5n + 1) { --ac: #0e7c69; --ac-bg: #d0f1e8; }
.vm .vm-grid > :nth-child(5n + 2) { --ac: #045ba3; --ac-bg: #d5e8fa; }
.vm .vm-grid > :nth-child(5n + 3) { --ac: #b46a00; --ac-bg: #fde9bd; }
.vm .vm-grid > :nth-child(5n + 4) { --ac: #5a3ed0; --ac-bg: #e6dfff; }
.vm .vm-grid > :nth-child(5n + 5) { --ac: #c4264f; --ac-bg: #ffdbe4; }

.vm .vm-tile .vm-ico,
.vm .vm-card:not(.vm-card--cta) .vm-ico {
	background: var(--ac-bg, linear-gradient(135deg, var(--vm-blue-50), var(--vm-teal-100)));
	color: var(--ac, var(--vm-navy-700));
}

.vm .vm-tile { border-left: 4px solid var(--ac, var(--vm-line)); }
.vm .vm-tile:hover { border-color: var(--ac, #cbd6e4); box-shadow: 0 10px 24px -8px rgba(7, 27, 58, 0.18); }
.vm .vm-card:not(.vm-card--cta):hover { border-color: var(--ac, #d3dde9); }

/* 12. Movimento ------------------------------------------------------------ */
.vm .vm-reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.vm .vm-reveal.is-pending { opacity: 0; transform: translateY(16px); }
.vm .vm-reveal.is-pending.is-in { opacity: 1; transform: none; }
.vm .vm-grid > .vm-reveal:nth-child(2) { transition-delay: 0.05s; }
.vm .vm-grid > .vm-reveal:nth-child(3) { transition-delay: 0.1s; }
.vm .vm-grid > .vm-reveal:nth-child(4) { transition-delay: 0.15s; }
.vm .vm-grid > .vm-reveal:nth-child(5) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.vm *,
	.vm *::before,
	.vm *::after { animation: none !important; transition: none !important; }
	.vm .vm-reveal.is-pending { opacity: 1; transform: none; }
}
