/* Visualize landing — replica de m_visualize.php (softnet-ui.css viz-* + tokens report-page-body) */

html {
	scroll-behavior: smooth;
}

body.report-page-body {
	--rep-bg: #ffffff;
	--rep-bg-card: #ffffff;
	--rep-ink: #0b1220;
	--rep-muted: #64748b;
	--rep-sys-blue: #0081c5;
	--rep-sys-blue-hover: #0077b3;
	--rep-sys-blue-active: #006699;
	--rep-accent: #1e3a5f;
	--rep-accent-soft: rgba(30, 58, 95, 0.06);
	--rep-border: rgba(15, 23, 42, 0.1);
	--rep-radius: 12px;
	--rep-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	--rep-shadow-hover: 0 8px 24px rgba(15, 23, 42, 0.08);

	margin: 0;
	min-height: 100vh;
	background: #ffffff !important;
	background-image: none !important;
	color: #1e293b;
	font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.report-page-body * {
	box-sizing: border-box;
}

body.report-page-body a {
	color: #1d4ed8;
}

body.report-page-body a:hover {
	color: #1e40af;
}

/* Visualize — landing comercial (m_visualize.php) */
.viz-body {
	background: #f1f5f9;
	margin: 0;
}

.viz-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--rep-border);
}

.viz-nav__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.viz-nav__brand {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	line-height: 1.2;
}

.viz-nav__logo {
	font-size: 18px;
	font-weight: 800;
	background: linear-gradient(90deg, #2563eb, #7c3aed);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -0.02em;
}

.viz-nav__by {
	font-size: 10px;
	font-weight: 600;
	color: var(--rep-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.viz-nav__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-right: auto;
}

.viz-nav__links a {
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	text-decoration: none;
}

.viz-nav__links a:hover {
	color: var(--rep-sys-blue);
}

.viz-nav__actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.viz-nav__actions .viz-btn--sm {
	min-height: 36px;
}

.viz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.viz-btn:focus-visible {
	outline: 2px solid #1d4ed8;
	outline-offset: 2px;
}

.viz-btn--sm {
	padding: 8px 14px;
	font-size: 12px;
}

.viz-btn--lg {
	padding: 14px 24px;
	font-size: 15px;
}

.viz-btn--block {
	width: 100%;
}

.viz-btn--primary {
	background: #fbbf24;
	color: #1e293b;
}

.viz-btn--primary:hover {
	background: #f59e0b;
	color: #0f172a;
}

.viz-btn--ghost {
	background: #fff;
	color: #475569;
	border: 1px solid var(--rep-border);
}

.viz-btn--ghost:hover {
	background: #f8fafc;
	color: #0f172a;
}

body.report-page-body a.viz-btn--ghost,
body.report-page-body a.viz-btn--ghost:visited {
	color: #475569;
}

body.report-page-body a.viz-btn--ghost:hover {
	color: #0f172a;
}

body.report-page-body a.viz-btn--primary,
body.report-page-body a.viz-btn--primary:visited {
	color: #1e293b;
}

body.report-page-body a.viz-btn--primary:hover {
	color: #0f172a;
}

.viz-btn--blue {
	background: #1d4ed8;
	color: #fff;
}

.viz-btn--blue:hover {
	background: #1e40af;
	color: #fff;
}

body.report-page-body a.viz-btn--blue,
body.report-page-body a.viz-btn--blue:visited,
body.report-page-body a.viz-btn--blue:hover {
	color: #fff;
}

.viz-pill {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(251, 191, 36, 0.35), rgba(244, 114, 182, 0.35));
	color: #fef3c7;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.viz-pill--soft {
	background: #e0f2fe;
	color: #0369a1;
	border-color: #7dd3fc;
}

.viz-pricing__card .viz-pill {
	background: #fbbf24;
	color: #1e293b;
	border-color: #f59e0b;
}

.viz-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(125deg, #1e3a8a 0%, #2563eb 32%, #7c3aed 62%, #0891b2 100%);
	color: #fff;
	padding: 48px 24px 56px;
}

.viz-hero::before,
.viz-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.viz-hero::before {
	width: 420px;
	height: 420px;
	top: -120px;
	right: -80px;
	background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, transparent 68%);
}

.viz-hero::after {
	width: 360px;
	height: 360px;
	bottom: -140px;
	left: -60px;
	background: radial-gradient(circle, rgba(52, 211, 153, 0.28) 0%, transparent 70%);
}

.viz-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
}

@media (max-width: 960px) {
	.viz-hero__inner {
		grid-template-columns: 1fr;
	}
}

.viz-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.viz-hero__lead {
	margin: 0 0 18px;
	max-width: 52ch;
	font-size: 16px;
	line-height: 1.65;
	color: #e2e8f0;
}

.viz-hero__lead strong {
	color: #fff;
}

.viz-hero__bullets {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.viz-hero__bullets li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	font-size: 14px;
	color: #f1f5f9;
}

.viz-hero__bullets i {
	color: #fde047;
}

.viz-hero__bullets li:nth-child(1) i { color: #86efac; }
.viz-hero__bullets li:nth-child(2) i { color: #7dd3fc; }
.viz-hero__bullets li:nth-child(3) i { color: #f9a8d4; }

.viz-hero__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.viz-hero__price {
	line-height: 1.2;
}

.viz-hero__price-from {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #cbd5e1;
}

.viz-hero__price-value {
	font-size: 36px;
	font-weight: 800;
	color: #fde047;
}

.viz-hero__price-unit {
	font-size: 13px;
	font-weight: 600;
	color: #e2e8f0;
}

.viz-dash {
	position: relative;
}

.viz-dash__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.7;
	pointer-events: none;
}

.viz-dash__glow--amber {
	width: 120px;
	height: 120px;
	top: -20px;
	right: 10px;
	background: #fbbf24;
}

.viz-dash__glow--cyan {
	width: 100px;
	height: 100px;
	bottom: 20px;
	left: -10px;
	background: #22d3ee;
}

.viz-dash__window {
	position: relative;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 28px 64px rgba(15, 23, 42, 0.35);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.viz-dash__titlebar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	background: linear-gradient(90deg, #f8fafc, #eef2ff);
	border-bottom: 1px solid #e2e8f0;
}

.viz-dash__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex-shrink: 0;
}

.viz-dash__dot--red { background: #f87171; }
.viz-dash__dot--yellow { background: #fbbf24; }
.viz-dash__dot--green { background: #4ade80; }

.viz-dash__title {
	margin-left: 6px;
	font-size: 11px;
	font-weight: 700;
	color: #64748b;
}

.viz-dash__body {
	padding: 14px;
	background: #f8fafc;
}

.viz-dash__kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 10px;
}

.viz-dash__kpi {
	padding: 10px 10px 8px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-top: 3px solid #94a3b8;
}

.viz-dash__kpi--blue { border-top-color: #3b82f6; }
.viz-dash__kpi--emerald { border-top-color: #10b981; }
.viz-dash__kpi--violet { border-top-color: #8b5cf6; }

.viz-dash__kpi small {
	display: block;
	font-size: 9px;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.viz-dash__kpi strong {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
}

.viz-dash__delta {
	display: inline-block;
	margin-top: 4px;
	padding: 1px 6px;
	border-radius: 999px;
	font-size: 9px;
	font-weight: 700;
}

.viz-dash__delta--up {
	background: #dcfce7;
	color: #15803d;
}

.viz-dash__delta--down {
	background: #fee2e2;
	color: #b91c1c;
}

.viz-dash__charts {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr;
	gap: 8px;
}

@media (max-width: 560px) {
	.viz-dash__charts {
		grid-template-columns: 1fr;
	}
}

.viz-dash__panel {
	padding: 10px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	min-height: 110px;
}

.viz-dash__panel--wide {
	grid-column: span 1;
}

.viz-dash__panel-label {
	display: block;
	margin-bottom: 8px;
	font-size: 9px;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.viz-bars {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 4px;
	height: 72px;
	padding-top: 4px;
}

.viz-bars__col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	justify-content: flex-end;
	gap: 4px;
}

.viz-bars__bar {
	display: block;
	width: 100%;
	max-width: 18px;
	border-radius: 4px 4px 2px 2px;
	min-height: 8px;
}

.viz-bars__bar--c1 { background: linear-gradient(180deg, #60a5fa, #2563eb); }
.viz-bars__bar--c2 { background: linear-gradient(180deg, #34d399, #059669); }
.viz-bars__bar--c3 { background: linear-gradient(180deg, #a78bfa, #7c3aed); }
.viz-bars__bar--c4 { background: linear-gradient(180deg, #fbbf24, #d97706); }
.viz-bars__bar--c5 { background: linear-gradient(180deg, #f472b6, #db2777); }
.viz-bars__bar--c6 { background: linear-gradient(180deg, #22d3ee, #0891b2); }

.viz-bars__col i {
	font-style: normal;
	font-size: 8px;
	font-weight: 600;
	color: #94a3b8;
}

.viz-line-chart {
	display: block;
	width: 100%;
	height: 72px;
}

.viz-line-chart__line {
	fill: none;
	stroke: #0ea5e9;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.viz-donut-wrap {
	position: relative;
	width: 64px;
	height: 64px;
	margin: 0 auto 6px;
}

.viz-donut {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.viz-donut__ring {
	stroke: #e2e8f0;
}

.viz-donut__seg {
	stroke-linecap: round;
}

.viz-donut__seg--1 { stroke: #3b82f6; }
.viz-donut__seg--2 { stroke: #10b981; }
.viz-donut__seg--3 { stroke: #f59e0b; }

.viz-donut__center {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 800;
	color: #334155;
}

.viz-legend {
	list-style: none;
	margin: 0;
	padding: 0;
}

.viz-legend li {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 8px;
	font-weight: 600;
	color: #64748b;
	padding: 2px 0;
}

.viz-legend__swatch {
	width: 8px;
	height: 8px;
	border-radius: 2px;
	flex-shrink: 0;
}

.viz-legend__swatch--1 { background: #3b82f6; }
.viz-legend__swatch--2 { background: #10b981; }
.viz-legend__swatch--3 { background: #f59e0b; }

.viz-trust {
	background: #fff;
	border-bottom: 1px solid var(--rep-border);
}

.viz-trust__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	text-align: center;
}

@media (max-width: 720px) {
	.viz-trust__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

.viz-trust__item {
	font-size: 13px;
	color: var(--rep-muted);
}

.viz-trust__item strong {
	display: block;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
}

.viz-trust__item:nth-child(1) strong { color: #2563eb; }
.viz-trust__item:nth-child(2) strong { color: #7c3aed; }
.viz-trust__item:nth-child(3) strong { color: #0891b2; }
.viz-trust__item:nth-child(4) strong { color: #d97706; }

.viz-section {
	padding: 56px 24px;
}

.viz-section--alt {
	background: #fff;
}

.viz-section__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.viz-section__head {
	margin-bottom: 28px;
	max-width: 720px;
}

.viz-section__head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.viz-section__head h2 {
	margin: 0 0 10px;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: var(--rep-ink);
	line-height: 1.25;
}

.viz-section__head p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: var(--rep-muted);
}

.viz-value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

@media (max-width: 960px) {
	.viz-value-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.viz-value-grid {
		grid-template-columns: 1fr;
	}
}

.viz-value-card {
	padding: 22px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--rep-border);
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.viz-value-card i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 12px;
	border-radius: 11px;
	font-size: 18px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #fff;
}

.viz-value-grid .viz-value-card:nth-child(1) i { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.viz-value-grid .viz-value-card:nth-child(2) i { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.viz-value-grid .viz-value-card:nth-child(3) i { background: linear-gradient(135deg, #14b8a6, #0891b2); }
.viz-value-grid .viz-value-card:nth-child(4) i { background: linear-gradient(135deg, #f59e0b, #d97706); }

.viz-value-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--rep-ink);
}

.viz-value-card p {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--rep-muted);
}

.viz-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.viz-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--rep-border);
	background: #fff;
	color: #475569;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

.viz-tab i {
	font-size: 12px;
	opacity: 0.85;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

.viz-tab.is-active,
.viz-tab:hover {
	background: linear-gradient(90deg, #2563eb, #7c3aed);
	border-color: transparent;
	color: #fff;
}

.viz-panels {
	position: relative;
}

.viz-panel {
	display: none;
	animation: viz-fade-in 0.25s ease;
}

.viz-panel.is-active {
	display: block;
}

@keyframes viz-fade-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.viz-panel__intro {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 8px 16px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rep-border);
}

.viz-panel__intro h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--rep-ink);
}

.viz-panel__intro p {
	margin: 0;
	flex: 1 1 100%;
	font-size: 14px;
	line-height: 1.55;
	color: var(--rep-muted);
}

.viz-panel__count {
	padding: 4px 12px;
	border-radius: 999px;
	background: #e0f2fe;
	color: #0369a1;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.viz-kpi-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

@media (max-width: 960px) {
	.viz-kpi-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.viz-kpi-grid {
		grid-template-columns: 1fr;
	}
}

.viz-kpi-card {
	padding: 16px 18px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid var(--rep-border);
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.viz-kpi-card:hover {
	border-color: #94a3b8;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.viz-kpi-card h4 {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--rep-ink);
	line-height: 1.35;
}

.viz-kpi-card p {
	margin: 0;
	font-size: 12px;
	line-height: 1.55;
	color: var(--rep-muted);
}

.viz-reports-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

@media (max-width: 960px) {
	.viz-reports-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.viz-reports-grid {
		grid-template-columns: 1fr;
	}
}

.viz-report-group {
	padding: 20px 22px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--rep-border);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.viz-report-group__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.viz-report-group__head i {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: #eff6ff;
	color: var(--rep-sys-blue);
	font-size: 15px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

.viz-report-group__head h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--rep-ink);
}

.viz-report-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.viz-report-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 6px 0;
	font-size: 12px;
	line-height: 1.45;
	color: #475569;
	border-bottom: 1px solid #f1f5f9;
}

.viz-report-list li:last-child {
	border-bottom: none;
}

.viz-report-list i {
	margin-top: 2px;
	font-size: 10px;
	color: #94a3b8;
	flex-shrink: 0;
}

.viz-pricing {
	padding: 56px 24px 64px;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.viz-pricing__inner {
	max-width: 960px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

@media (max-width: 800px) {
	.viz-pricing__inner {
		grid-template-columns: 1fr;
	}
}

.viz-pricing__card {
	padding: 32px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--rep-border);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.viz-pricing__card h2 {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 800;
	color: var(--rep-ink);
}

.viz-pricing__desc {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--rep-muted);
}

.viz-pricing__price {
	margin-bottom: 20px;
	line-height: 1.1;
}

.viz-pricing__from {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--rep-muted);
}

.viz-pricing__amount {
	font-size: 48px;
	font-weight: 800;
	color: var(--rep-ink);
	letter-spacing: -0.03em;
}

.viz-pricing__period {
	font-size: 15px;
	font-weight: 600;
	color: var(--rep-muted);
}

.viz-pricing__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.viz-pricing__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--rep-ink);
}

.viz-pricing__features i {
	color: #22c55e;
	font-size: 12px;
}

.viz-pricing__side h3 {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--rep-ink);
}

.viz-pricing__side p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--rep-muted);
}

.viz-pricing__reasons {
	margin: 0;
	padding-left: 18px;
	color: #475569;
	font-size: 14px;
	line-height: 1.7;
}

.viz-footer {
	padding: 24px;
	background: #334155;
	color: #cbd5e1;
}

.viz-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.viz-footer__brand {
	font-size: 14px;
}

.viz-footer__brand strong {
	color: #fff;
}
