/* ==========================================================================
   LinearZ — componentes
   Valores portados 1:1 do site original (páginas internas) e do layout
   final da home (PNG). Todo texto/cor/imagem é editável pelos widgets.
   ========================================================================== */

:root {
	--lz-bg: #fbfaf9;
	--lz-fg: #2a2a2a;
	--lz-card: #fdfdfc;
	--lz-primary: #f25921;
	--lz-secondary: #1c7492;
	--lz-muted: #f1f0ee;
	--lz-muted-fg: #666666;
	--lz-border: #e8e6e3;
	--lz-destructive: #dc2828;

	/* home (layout final) */
	--lzh-orange: #f85827;
	--lzh-band: #ff5a1f;
	--lzh-ink: #222222;
	--lzh-cream: #f7f3ef;
	--lzh-sand: #f3efec;
}

body {
	background-color: var(--lz-bg);
}

/* --------------------------------------------------------------------------
   Base / reset dentro dos componentes (neutraliza estilos do tema)
   -------------------------------------------------------------------------- */

.lzc,
.lzc *,
.lzc *::before,
.lzc *::after {
	box-sizing: border-box;
}

.lzc {
	font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: var(--lz-fg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:where(.lzc) h1,
:where(.lzc) h2,
:where(.lzc) h3,
:where(.lzc) h4,
:where(.lzc) h5,
:where(.lzc) h6 {
	margin: 0;
	font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

:where(.lzc) p,
:where(.lzc) figure,
:where(.lzc) blockquote {
	margin: 0;
}

:where(.lzc) ul,
:where(.lzc) ol,
:where(ul.lzc),
:where(ol.lzc) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lzc a,
.lzc a:hover,
.lzc a:focus {
	color: inherit;
	text-decoration: none;
}

:where(.lzc) img,
:where(.lzc) svg {
	display: block;
	vertical-align: middle;
	max-width: 100%;
}

.lzc button,
.lzc input,
.lzc select,
.lzc textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
}

.lzc button {
	background: transparent;
	border: 0;
	padding: 0;
	border-radius: 0;
	cursor: pointer;
	text-transform: none;
	white-space: normal;
}

.lzc button:hover,
.lzc button:focus {
	background-color: transparent;
	color: inherit;
}

.lzc input,
.lzc select,
.lzc textarea {
	border-radius: 0;
	border: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.lzc input::placeholder,
.lzc textarea::placeholder {
	color: #9ca3af;
	opacity: 1;
}

.lzc strong,
.lzc b {
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   Tipografia e botões do site
   -------------------------------------------------------------------------- */

.lz-kicker {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.lz-kicker__line {
	height: 1px;
	width: 32px;
	flex: none;
	background: var(--lz-primary);
}

.lz-kicker__text {
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lz-primary);
}

.lzc .lz-title {
	color: var(--lz-fg);
	text-wrap: balance;
}

.lzc .lz-title--xl {
	font-size: 48px;
	line-height: 48px;
}

.lzc .lz-title--lg {
	font-size: 40px;
	line-height: 40px;
}

.lzc .lz-title--md {
	font-size: 36px;
	line-height: 40px;
}

.lzc .lz-title--nobalance {
	text-wrap: wrap;
}

.lz-lead {
	color: rgba(42, 42, 42, 0.7);
	font-size: 18px;
	line-height: 29.25px;
}

.lz-lead--sm {
	font-size: 14px;
	line-height: 20px;
}

.lz-lead--muted {
	color: var(--lz-muted-fg);
}

.lz-head--w768 {
	max-width: 768px;
}

.lz-head--w672 {
	max-width: 672px;
}

.lz-head__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.lz-head__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.lzc .lz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 0 28px;
	border-radius: 9999px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	min-width: 44px;
	white-space: nowrap;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	border: 0;
}

.lzc .lz-btn--primary {
	background: var(--lz-primary);
	color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.lzc .lz-btn--primary:hover {
	color: #fff;
	filter: brightness(1.1);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.lzc .lz-btn--primary-lg {
	background: var(--lz-primary);
	color: #fff;
	font-size: 18px;
	line-height: 28.8px;
}

.lzc .lz-btn--primary-lg:hover {
	color: #fff;
	filter: brightness(1.1);
}

.lzc .lz-btn--outline {
	border: 1px solid var(--lz-secondary);
	color: var(--lz-secondary);
	background: transparent;
}

.lzc .lz-btn--outline:hover {
	background: var(--lz-secondary);
	color: #fff;
}

.lzc .lz-btn--full {
	width: 100%;
}

/* --------------------------------------------------------------------------
   Card de links ("Nesta página")
   -------------------------------------------------------------------------- */

.lz-linkcard {
	border-radius: 16px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
	padding: 24px;
}

.lz-linkcard__title {
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lz-muted-fg);
	margin-bottom: 16px;
}

.lz-linkcard__list {
	font-size: 14px;
	line-height: 20px;
}

.lz-linkcard__list li + li {
	margin-top: 12px;
}

.lzc .lz-linkcard__list a {
	color: rgba(42, 42, 42, 0.8);
	transition: color 0.15s;
}

.lzc .lz-linkcard__list a:hover {
	color: var(--lz-primary);
}

/* --------------------------------------------------------------------------
   Imagem com moldura
   -------------------------------------------------------------------------- */

.lz-frame {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--lz-muted);
	border: 1px solid var(--lz-border);
}

.lz-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lz-frame--43 {
	aspect-ratio: 4 / 3;
}

.lz-frame--169 {
	aspect-ratio: 16 / 9;
	border: 0;
}

/* --------------------------------------------------------------------------
   Etapas — linha vertical ("O mecanismo de ação")
   -------------------------------------------------------------------------- */

.lz-vsteps {
	position: relative;
	border-left: 1px solid var(--lz-border);
	padding-left: 32px;
}

.lz-vsteps__item {
	position: relative;
}

.lz-vsteps__item + .lz-vsteps__item {
	margin-top: 40px;
}

.lz-vsteps__badge {
	position: absolute;
	left: -41.6px;
	top: 0;
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	background: var(--lz-primary);
	color: #fff;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 20px;
}

.lzc .lz-vsteps__title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.lz-vsteps__text {
	margin-top: 8px;
	color: rgba(42, 42, 42, 0.7);
	font-size: 18px;
	line-height: 29.25px;
}

/* --------------------------------------------------------------------------
   Etapas — linha horizontal ("Uma linha do tempo honesta")
   -------------------------------------------------------------------------- */

.lz-hsteps {
	position: relative;
}

.lz-hsteps__line {
	position: absolute;
	top: 28px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--lz-border);
}

.lz-hsteps__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.lz-hsteps__item {
	position: relative;
}

.lz-hsteps__dot {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.lz-hsteps__num {
	position: relative;
	z-index: 10;
	width: 56px;
	height: 56px;
	border-radius: 9999px;
	background: var(--lz-primary);
	color: #fff;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--lz-muted);
	font-size: 18px;
	line-height: 28.8px;
}

.lz-hsteps__period {
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lz-primary);
}

.lzc .lz-hsteps__title {
	margin-top: 4px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
}

.lz-hsteps__text {
	margin-top: 8px;
	font-size: 14px;
	line-height: 22.75px;
	color: rgba(42, 42, 42, 0.7);
}

.lz-hsteps__note {
	margin-top: 40px;
	font-size: 14px;
	line-height: 20px;
	color: var(--lz-muted-fg);
	font-style: italic;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.lz-cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(var(--lz-cols, 4), minmax(0, 1fr));
}

.lz-card {
	background: var(--lz-card);
	border: 1px solid var(--lz-border);
	border-radius: 16px;
	padding: 28px;
	display: flex;
	flex-direction: column;
}

.lz-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(242, 89, 33, 0.1);
	color: var(--lz-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex: none;
}

.lzc .lz-card__title {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	color: var(--lz-fg);
}

.lz-card__text {
	margin-top: 8px;
	font-size: 14px;
	line-height: 22.75px;
	color: rgba(42, 42, 42, 0.7);
}

.lz-card__tag {
	display: inline-block;
	margin-top: 16px;
	font-size: 11px;
	line-height: 17.6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lz-muted-fg);
	border: 1px solid var(--lz-border);
	border-radius: 9999px;
	padding: 4px 12px;
}

.lz-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	line-height: 16px;
	color: var(--lz-muted-fg);
}

.lz-card__meta strong {
	font-weight: 500;
}

/* juntos, separados por linhas de 1px */
.lz-cards--joined {
	gap: 1px;
	background: var(--lz-border);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--lz-border);
}

.lz-cards--joined .lz-card {
	display: block;
	border: 0;
	border-radius: 0;
	padding: 32px;
}

.lz-cards--joined .lz-card__glyph {
	color: var(--lz-primary);
	margin-bottom: 16px;
}

/* ícone à esquerda */
.lz-cards--left .lz-card {
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;
}

.lz-cards--left .lz-card__glyph {
	color: var(--lz-secondary);
	flex: none;
}

.lz-cards--left .lz-card__tag {
	margin-top: 12px;
}

/* estudos */
.lz-cards--study .lz-card {
	display: block;
}

.lzc.lz-cards--study .lz-card__title {
	margin-top: 12px;
	line-height: 24.75px;
}

/* --------------------------------------------------------------------------
   Lista de alertas (contraindicações)
   -------------------------------------------------------------------------- */

.lz-alerts {
	display: grid;
	grid-template-columns: repeat(var(--lz-cols, 2), minmax(0, 1fr));
	gap: 12px;
}

.lz-alert {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--lz-card);
	border: 1px solid var(--lz-border);
	border-radius: 12px;
	padding: 16px;
}

.lz-alert__icon {
	width: 20px;
	height: 20px;
	border-radius: 9999px;
	background: rgba(220, 40, 40, 0.1);
	color: var(--lz-destructive);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	margin-top: 2px;
}

.lz-alert__text {
	font-size: 14px;
	line-height: 20px;
	color: rgba(42, 42, 42, 0.8);
}

/* --------------------------------------------------------------------------
   Avisos
   -------------------------------------------------------------------------- */

.lz-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border-radius: 12px;
	padding: 20px;
	font-size: 14px;
	line-height: 20px;
}

.lz-note--info {
	border: 1px solid rgba(28, 116, 146, 0.3);
	background: rgba(28, 116, 146, 0.05);
	color: rgba(42, 42, 42, 0.8);
}

.lz-note--info strong {
	color: var(--lz-secondary);
}

.lz-note__icon {
	color: var(--lz-secondary);
	flex: none;
	margin-top: 2px;
}

.lz-note__i {
	color: var(--lz-secondary);
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	margin-top: 2px;
	flex: none;
}

.lz-note--dark {
	display: block;
	background: var(--lz-fg);
	color: var(--lz-bg);
	padding: 24px;
	line-height: 22.75px;
}

.lz-note--plain {
	display: block;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
	color: rgba(42, 42, 42, 0.7);
}

.lz-note--compact {
	padding: 16px;
}

.lz-note--block {
	display: block;
}

/* --------------------------------------------------------------------------
   Perguntas frequentes
   -------------------------------------------------------------------------- */

.lz-acc {
	border-top: 1px solid var(--lz-border);
	border-bottom: 1px solid var(--lz-border);
}

.lz-acc > .lz-acc__item {
	border-bottom: 1px solid var(--lz-border);
}

.lz-acc > .lz-acc__item ~ .lz-acc__item {
	border-top: 1px solid var(--lz-border);
	border-bottom-width: 0;
}

.lzc .lz-acc__heading {
	display: flex;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
}

.lzc .lz-acc__trigger {
	display: flex;
	flex: 1 1 0%;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	text-align: left;
	font-weight: 600;
	transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.lzc .lz-acc__trigger:hover {
	text-decoration: underline;
	color: var(--lz-primary);
	background: transparent;
}

.lz-acc__trigger svg {
	width: 16px;
	height: 16px;
	flex: none;
	color: var(--lz-muted-fg);
	transition: transform 0.2s;
}

.lz-acc__item.is-open .lz-acc__trigger svg {
	transform: rotate(180deg);
}

.lz-acc__panel {
	overflow: hidden;
	font-size: 14px;
	height: 0;
	transition: height 0.2s ease-out;
}

.lz-acc__item.is-open .lz-acc__panel {
	height: auto;
}

.lz-acc__body {
	padding: 0 0 24px;
	color: rgba(42, 42, 42, 0.7);
	line-height: 22.75px;
}

/* --------------------------------------------------------------------------
   Chamada laranja
   -------------------------------------------------------------------------- */

.lz-cta {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background: var(--lz-primary);
	color: #fff;
	padding: 80px 64px;
	text-align: center;
}

.lz-cta__grid {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	pointer-events: none;
	background-image: linear-gradient(to right, #fff 1px, transparent 1px);
	background-size: 10% 100%;
}

.lz-cta__inner {
	position: relative;
}

.lzc .lz-cta__title {
	font-size: 36px;
	line-height: 40px;
	color: #fff;
	text-wrap: balance;
}

.lz-cta__text {
	margin: 16px auto 0;
	max-width: 576px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	line-height: 29.25px;
}

.lzc .lz-cta__btn {
	margin-top: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 32px;
	border-radius: 9999px;
	background: #fff;
	color: var(--lz-primary);
	font-weight: 600;
	font-size: 18px;
	line-height: 28.8px;
	min-width: 44px;
	transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.lzc .lz-cta__btn:hover {
	background: var(--lz-fg);
	color: #fff;
}

/* --------------------------------------------------------------------------
   Depoimentos (grade em colunas)
   -------------------------------------------------------------------------- */

.lz-tmasonry {
	columns: var(--lz-cols, 3);
	column-gap: 24px;
	column-fill: balance;
}

.lz-tcard {
	break-inside: avoid;
	margin-bottom: 24px;
	background: var(--lz-card);
	border: 1px solid var(--lz-border);
	border-radius: 16px;
	padding: 28px;
}

.lz-stars {
	display: flex;
	align-items: center;
	gap: 2px;
}

.lz-stars .is-on {
	fill: var(--lz-primary);
	color: var(--lz-primary);
}

.lz-stars .is-off {
	color: var(--lz-border);
}

.lz-tcard__text {
	margin-top: 16px;
	color: rgba(42, 42, 42, 0.85);
	font-size: 18px;
	line-height: 29.25px;
}

.lz-tcard__author {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.lz-tcard__avatar {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: rgba(242, 89, 33, 0.1);
	color: var(--lz-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	flex: none;
	overflow: hidden;
}

.lz-tcard__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lz-tcard__name {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}

.lz-tcard__meta {
	font-size: 12px;
	line-height: 16px;
	color: var(--lz-muted-fg);
}

/* --------------------------------------------------------------------------
   Janela "Conte sua experiência"
   -------------------------------------------------------------------------- */

.lz-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
}

.lz-modal.is-open {
	display: block;
}

.lz-modal__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	animation: lzFade 0.2s ease-out;
}

.lz-modal__box {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 512px;
	max-height: 100vh;
	overflow-y: auto;
	display: grid;
	gap: 16px;
	border: 1px solid var(--lz-border);
	background: var(--lz-bg);
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	animation: lzZoom 0.2s ease-out;
}

@keyframes lzFade {
	from {
		opacity: 0;
	}
}

@keyframes lzZoom {
	from {
		opacity: 0;
		transform: translate(-50%, -48%) scale(0.95);
	}
}

.lzc .lz-modal__close {
	position: absolute;
	right: 16px;
	top: 16px;
	border-radius: 2px;
	opacity: 0.7;
	transition: opacity 0.15s;
}

.lzc .lz-modal__close:hover {
	opacity: 1;
}

.lzc .lz-modal__title {
	font-size: 24px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.025em;
}

.lzc .lz-tform > * + * {
	margin-top: 16px;
}

.lz-tform__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.lz-tform__label {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	margin-bottom: 6px;
}

.lz-tform__label--mb8 {
	margin-bottom: 8px;
}

.lzc .lz-tform input[type="text"],
.lzc .lz-tform input[type="email"] {
	width: 100%;
	height: 44px;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
}

.lzc .lz-tform textarea {
	width: 100%;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
	resize: none;
	display: inline-block;
	vertical-align: baseline;
}

.lzc .lz-tform input:focus,
.lzc .lz-tform textarea:focus,
.lzc .lz-cform input:focus,
.lzc .lz-cform select:focus,
.lzc .lz-cform textarea:focus,
.lzc .lz-search input:focus,
.lzc .lz-finder__search input:focus {
	outline: none;
	box-shadow: 0 0 0 2px var(--lz-primary);
}

.lz-rate {
	display: flex;
	align-items: center;
	gap: 4px;
}

.lzc .lz-rate button {
	padding: 4px;
}

.lz-rate .lucide {
	color: var(--lz-border);
}

.lz-rate .is-on .lucide {
	fill: var(--lz-primary);
	color: var(--lz-primary);
}

.lz-rate__value {
	margin-left: 8px;
	font-size: 14px;
	line-height: 20px;
	color: var(--lz-muted-fg);
}

.lz-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(42, 42, 42, 0.7);
	cursor: pointer;
}

.lzc .lz-check input {
	margin-top: 4px;
	width: 13px;
	height: 16px;
	flex: none;
	accent-color: #f26522;
	appearance: auto;
}

.lzc .lz-check a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.lz-tform__info {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	line-height: 16px;
	color: var(--lz-muted-fg);
}

.lz-tform__info .lucide {
	flex: none;
	margin-top: 2px;
	color: var(--lz-secondary);
}

.lzc .lz-submit {
	height: 48px;
	border-radius: 9999px;
	background: var(--lz-primary);
	color: #fff;
	font-weight: 600;
	min-width: 44px;
	transition: all 0.15s;
}

.lzc .lz-submit:hover {
	filter: brightness(1.1);
	background: var(--lz-primary);
	color: #fff;
}

.lzc .lz-submit:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	filter: none;
}

.lz-submit--full {
	width: 100%;
}

.lz-tdone {
	text-align: center;
	padding: 24px 0;
}

.lz-tdone__icon {
	width: 56px;
	height: 56px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	background: rgba(242, 89, 33, 0.1);
	color: var(--lz-primary);
}

.lzc .lz-tdone__title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}

.lz-tdone__text {
	margin: 12px auto 0;
	max-width: 448px;
	color: rgba(42, 42, 42, 0.7);
}

.lzc .lz-tdone__close {
	margin-top: 24px;
	height: 44px;
	padding: 0 24px;
	border-radius: 9999px;
	border: 1px solid var(--lz-border);
	font-weight: 500;
	transition: background 0.15s;
}

.lzc .lz-tdone__close:hover {
	background: var(--lz-muted);
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.lz-blog__bar {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.lz-search {
	position: relative;
	width: 320px;
}

.lz-search .lucide {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--lz-muted-fg);
}

.lzc .lz-search input {
	width: 100%;
	height: 44px;
	padding: 0 16px 0 40px;
	border-radius: 9999px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
}

.lz-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.lzc .lz-chip {
	height: 36px;
	padding: 0 16px;
	border-radius: 9999px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	min-width: 44px;
	border: 1px solid var(--lz-border);
	color: rgba(42, 42, 42, 0.7);
	transition: color 0.15s, background-color 0.15s, border-color 0.15s;
}

.lzc .lz-chip:hover {
	border-color: var(--lz-primary);
	color: var(--lz-primary);
}

.lzc .lz-chip.is-active,
.lzc .lz-chip.is-active:hover {
	background: var(--lz-primary);
	color: #fff;
	border-width: 0;
}

.lz-bgrid {
	display: grid;
	grid-template-columns: repeat(var(--lz-cols, 3), minmax(0, 1fr));
	gap: 32px;
}

.lz-bpost {
	display: flex;
	flex-direction: column;
}

.lz-bpost__media {
	display: block;
	aspect-ratio: 3 / 2;
	border-radius: 12px;
	overflow: hidden;
	background: var(--lz-muted);
}

.lz-bpost__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-bpost:hover .lz-bpost__media img {
	transform: scale(1.05);
}

.lz-bpost__body {
	margin-top: 20px;
	flex: 1 1 0%;
	display: flex;
	flex-direction: column;
}

.lz-bpost__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	line-height: 16px;
	color: var(--lz-muted-fg);
}

.lz-bpost__cat {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lz-primary);
}

.lz-bpost__date {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.lzc .lz-bpost__title {
	margin-top: 12px;
	font-size: 20px;
	line-height: 27.5px;
	font-weight: 600;
}

.lzc .lz-bpost__title a {
	transition: color 0.15s;
}

.lzc .lz-bpost__title a:hover {
	color: var(--lz-primary);
}

.lz-bpost__excerpt {
	margin-top: 8px;
	color: rgba(42, 42, 42, 0.7);
	font-size: 14px;
	line-height: 22.75px;
	flex: 1 1 0%;
}

.lz-bpost__author {
	margin-top: 16px;
	font-size: 12px;
	line-height: 16px;
	color: var(--lz-muted-fg);
}

.lz-bempty {
	color: var(--lz-muted-fg);
	padding: 48px 0;
	text-align: center;
}

/* --------------------------------------------------------------------------
   Formulário de contato
   -------------------------------------------------------------------------- */

.lzc .lz-cform > * + * {
	margin-top: 20px;
}

.lz-cform__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.lz-cform__label {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	margin-bottom: 8px;
}

.lzc .lz-cform input[type="text"],
.lzc .lz-cform input[type="email"],
.lzc .lz-cform input[type="tel"],
.lzc .lz-cform select {
	width: 100%;
	height: 48px;
	padding: 0 16px;
	border-radius: 12px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
}

.lzc .lz-cform select {
	padding: 0 12px;
	appearance: auto;
}

.lzc .lz-cform textarea {
	line-height: 28.8px;
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
	resize: none;
	display: inline-block;
	vertical-align: baseline;
}

.lzc .lz-cform .lz-submit {
	padding: 0 32px;
	font-size: 18px;
	line-height: 28.8px;
}

.lz-cdone {
	border-radius: 16px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
	padding: 40px;
	text-align: center;
}

.lz-cdone__icon {
	width: 56px;
	height: 56px;
	border-radius: 9999px;
	background: var(--lz-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.lzc .lz-cdone__title {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
}

.lz-cdone__text {
	margin-top: 12px;
	color: rgba(42, 42, 42, 0.7);
}

.lz-ccard {
	border-radius: 16px;
	border: 1px solid var(--lz-border);
	background: rgba(241, 240, 238, 0.4);
	padding: 28px;
}

.lzc .lz-ccard__title {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
}

.lz-ccard__list {
	margin-top: 20px;
	font-size: 14px;
	line-height: 20px;
	color: rgba(42, 42, 42, 0.8);
}

.lz-ccard__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.lz-ccard__list li + li {
	margin-top: 16px;
}

.lz-ccard__list .lucide {
	color: var(--lz-secondary);
	flex: none;
	margin-top: 2px;
}

.lz-ccard__foot {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--lz-border);
}

/* --------------------------------------------------------------------------
   Textos legais
   -------------------------------------------------------------------------- */

.lz-legal {
	color: rgba(42, 42, 42, 0.8);
	line-height: 29.25px;
}

.lz-legal__section + .lz-legal__section {
	margin-top: 32px;
}

.lzc .lz-legal__title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: var(--lz-fg);
	margin-bottom: 8px;
}

.lzc.lz-legal a {
	color: var(--lz-secondary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Encontre uma clínica (lista + mapa)
   -------------------------------------------------------------------------- */

.lz-finder {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 32px;
}

.lz-finder__side {
	grid-column: span 5 / span 5;
}

.lz-finder__mapcol {
	grid-column: span 7 / span 7;
}

.lz-finder__search {
	position: relative;
	margin-bottom: 24px;
}

.lz-finder__search .lucide {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--lz-muted-fg);
}

.lzc .lz-finder__search input {
	width: 100%;
	height: 48px;
	padding: 0 16px 0 40px;
	border-radius: 9999px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
}

.lz-finder__count {
	font-size: 14px;
	line-height: 20px;
	color: var(--lz-muted-fg);
	margin-bottom: 16px;
}

.lz-finder__items {
	max-height: 560px;
	overflow-y: auto;
	padding-right: 4px;
}

.lz-finder__items > * + * {
	margin-top: 16px;
}

.lz-fclinic {
	background: var(--lz-card);
	border: 1px solid var(--lz-border);
	border-radius: 16px;
	padding: 20px;
	cursor: pointer;
	transition: color 0.15s, background-color 0.15s, border-color 0.15s;
}

.lz-fclinic:hover {
	border-color: rgba(242, 89, 33, 0.5);
}

.lz-fclinic.is-active,
.lz-fclinic.is-active:hover {
	border-color: var(--lz-primary);
}

.lz-fclinic__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.lzc .lz-fclinic__name {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.375;
}

.lz-fclinic__loc {
	margin-top: 4px;
	font-size: 14px;
	line-height: 20px;
	color: var(--lz-muted-fg);
	display: flex;
	align-items: center;
	gap: 4px;
}

.lz-fclinic__badge {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 600;
	color: var(--lz-secondary);
	background: rgba(28, 116, 146, 0.1);
	padding: 4px 10px;
	border-radius: 9999px;
}

.lz-fclinic__actions {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.lzc .lz-fclinic__action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 36px;
	padding: 0 12px;
	border-radius: 9999px;
	border: 1px solid var(--lz-border);
	font-size: 14px;
	line-height: 20px;
	min-width: 44px;
	transition: color 0.15s, background-color 0.15s, border-color 0.15s;
}

.lzc .lz-fclinic__action:hover {
	border-color: var(--lz-primary);
	color: var(--lz-primary);
}

.lzc .lz-fclinic__action--dark {
	border: 0;
	background: var(--lz-fg);
	color: var(--lz-bg);
}

.lzc .lz-fclinic__action--dark:hover {
	background: var(--lz-primary);
	color: #fff;
}

.lz-finder__empty {
	color: var(--lz-muted-fg);
	font-size: 14px;
	line-height: 20px;
	padding: 32px 0;
	text-align: center;
}

.lz-map {
	position: sticky;
	top: 96px;
	height: 640px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--lz-border);
	background: radial-gradient(120% 90% at 30% 10%, #eef4f6 0%, #e2ecee 45%, #d7e6ea 100%);
}

.lz-map__grid {
	position: absolute;
	inset: 0;
	opacity: 0.08;
	pointer-events: none;
}

.lz-map__grid div {
	height: 100%;
	width: 100%;
	background-image: linear-gradient(to right, #1c7293 1px, transparent 1px), linear-gradient(to bottom, #1c7293 1px, transparent 1px);
	background-size: 11% 11%;
}

.lz-map__shape {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.07;
	pointer-events: none;
}

.lzc .lz-map__pin {
	position: absolute;
	transform: translate(-50%, -100%);
}

.lz-map__dot {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 9999px;
	border: 2px solid #fff;
	background: var(--lz-secondary);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-map__pin:hover .lz-map__dot,
.lz-map__pin.is-active .lz-map__dot {
	transform: scale(1.25);
}

.lz-map__pin.is-active .lz-map__dot {
	background: var(--lz-primary);
}

.lz-map__tip {
	display: none;
	position: absolute;
	left: 50%;
	top: -8px;
	transform: translate(-50%, -100%);
	width: 176px;
	border-radius: 12px;
	background: var(--lz-fg);
	color: var(--lz-bg);
	font-size: 12px;
	line-height: 16px;
	padding: 8px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	z-index: 10;
	text-align: left;
}

.lz-map__pin.is-active .lz-map__tip {
	display: block;
}

.lz-map__tip strong {
	font-weight: 600;
	display: block;
	line-height: 1.25;
}

.lz-map__tip span {
	color: rgba(251, 250, 249, 0.7);
}

.lz-map__caption {
	position: absolute;
	bottom: 12px;
	left: 12px;
	font-size: 11px;
	line-height: 17.6px;
	color: rgba(28, 116, 146, 0.7);
	background: rgba(251, 250, 249, 0.7);
	padding: 4px 8px;
	border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Artigo (post individual)
   -------------------------------------------------------------------------- */

.lz-article {
	background: var(--lz-bg);
}

.lz-wrap {
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	padding: 0 64px;
}

.lz-article__top {
	padding-top: 56px;
}

.lzc .lz-article__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 20px;
	color: var(--lz-secondary);
	margin-bottom: 24px;
}

.lzc .lz-article__back:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
	color: var(--lz-secondary);
}

.lz-article__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	line-height: 16px;
	color: var(--lz-muted-fg);
}

.lzc .lz-article__title {
	margin-top: 16px;
	font-size: 48px;
	line-height: 48px;
	text-wrap: balance;
}

.lz-article__lead {
	margin-top: 20px;
	font-size: 18px;
	line-height: 29.25px;
	color: rgba(42, 42, 42, 0.7);
}

.lz-article__media {
	margin-top: 40px;
}

.lz-article__body {
	margin-top: 40px;
}

.lz-article__author {
	display: flex;
	align-items: center;
	gap: 16px;
	border-radius: 12px;
	border: 1px solid var(--lz-border);
	background: rgba(241, 240, 238, 0.4);
	padding: 20px;
	margin-bottom: 40px;
}

.lz-article__avatar {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	background: rgba(242, 89, 33, 0.1);
	color: var(--lz-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	flex: none;
}

.lz-article__name {
	font-weight: 600;
}

.lz-article__role {
	font-size: 14px;
	line-height: 20px;
	color: var(--lz-muted-fg);
}

.lz-article__content {
	color: rgba(42, 42, 42, 0.85);
	font-size: 18px;
	line-height: 29.25px;
}

.lz-article__content > * {
	margin: 0;
}

.lz-article__content > * + * {
	margin-top: 24px;
}

.lz-mt40 {
	margin-top: 40px;
}

.lz-related {
	margin-top: 40px;
	border-top: 1px solid var(--lz-border);
	padding: 96px 0;
}

.lzc .lz-related__title {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	margin-bottom: 32px;
}

.lz-related__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.lz-related__item {
	display: flex;
	gap: 16px;
}

.lz-related__thumb {
	width: 96px;
	height: 80px;
	flex: none;
	border-radius: 12px;
	overflow: hidden;
	background: var(--lz-muted);
}

.lz-related__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.lz-related__item:hover .lz-related__thumb img {
	transform: scale(1.05);
}

.lz-related__cat {
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lz-primary);
}

.lzc .lz-related__name {
	margin-top: 4px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.375;
	transition: color 0.15s;
}

.lz-related__item:hover .lz-related__name {
	color: var(--lz-primary);
}

.lz-section-cta {
	padding: 96px 0;
}

/* ==========================================================================
   HOME — layout final (Montserrat + Syne)
   ========================================================================== */

.lzc.lzh,
.lzh {
	font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
	color: var(--lzh-ink);
}

.lzc.lzh h1,
.lzc.lzh h2,
.lzc.lzh h3,
.lzc.lzh h4 {
	font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
	letter-spacing: 0;
}

.lzh-head {
	text-align: center;
}

.lzc .lzh-eyebrow {
	display: inline-block;
	font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 32px;
	color: var(--lzh-orange);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
	letter-spacing: 0;
}

.lzc.lzh .lzh-title {
	margin-top: 14.5px;
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
	color: var(--lzh-ink);
}

.lzh-lead {
	margin-top: 16px;
	font-size: 16px;
	line-height: 24px;
	color: #6a6a6e;
}

.lzh-lead strong {
	color: var(--lzh-ink);
	font-weight: 700;
}

.lzc .lzh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 28px;
	border-radius: 8px;
	font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	white-space: nowrap;
	transition: all 0.2s;
}

.lzc .lzh-btn--orange {
	background: var(--lzh-orange);
	color: #fff;
}

.lzc .lzh-btn--orange:hover {
	background: #e24a1b;
	color: #fff;
}

.lzc .lzh-btn--outline {
	border: 1.5px solid #212121;
	color: #212121;
}

.lzc .lzh-btn--outline:hover {
	background: #212121;
	color: #fff;
}

.lzc .lzh-btn--white {
	background: #fff;
	color: var(--lzh-orange);
}

.lzc .lzh-btn--white:hover {
	background: var(--lzh-orange);
	color: #fff;
}

.lzc .lzh-btn--dark {
	background: #212121;
	color: #fff;
}

.lzc .lzh-btn--dark:hover {
	background: var(--lzh-orange);
	color: #fff;
}

.lzh-actions {
	display: flex;
	justify-content: center;
}

/* intro */
.lzh-intro {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.lzh-intro__text {
	flex: 0 1 510px;
}

.lzc.lzh .lzh-intro__title {
	font-size: 38.3px;
	line-height: 54px;
	font-weight: 400;
	color: #262626;
}

.lzc.lzh .lzh-intro__title strong {
	font-weight: 700;
	color: #fe5a1e;
}

.lzh-intro__buttons {
	margin-top: 45px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.lzc .lzh-intro__buttons .lzh-btn {
	height: 44px;
	padding: 0 30px;
	font-size: 16.3px;
}

.lzh-intro__media {
	flex: 0 0 686px;
	max-width: 686px;
}

.lzh-intro__media img {
	width: 100%;
	height: 484px;
	object-fit: cover;
	border-radius: 16px;
}

/* recursos (imagem + 3 cards) */
.lzh-features {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 24px;
	max-width: 1040px;
	margin: 0 auto;
}

.lzh-features__media {
	position: relative;
	min-height: 240px;
}

.lzh-features__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.lzh-features__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lzh-feature {
	border: 1px solid var(--lzh-band);
	border-radius: 16px;
	background: #fff;
	padding: 32px;
	flex: 1 1 0%;
}

.lzh-feature__head {
	display: flex;
	align-items: center;
	gap: 18px;
}

.lzh-feature__icon {
	width: 40px;
	height: 40px;
	flex: none;
	color: var(--lzh-orange);
}

.lzh-feature__icon svg,
.lzh-feature__icon img {
	width: 100%;
	height: 100%;
}

.lzc.lzh .lzh-feature__title {
	font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 28px;
	color: var(--lzh-ink);
}

.lzh-feature__text {
	margin-top: 32px;
	font-size: 14px;
	line-height: 20px;
	color: #6a6a6e;
}

/* cronologia (cards + imagem) */
.lzh-timeline {
	display: flex;
	gap: 48px;
	align-items: stretch;
}

.lzh-timeline__list {
	flex: 0 0 658px;
	max-width: 658px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lzh-step {
	background: #fefdfd;
	border-radius: 12px;
	padding: 16px;
}

.lzh-step__badge {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: var(--lzh-band);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
}

.lzh-step__period {
	margin-top: 7px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--lzh-band);
}

.lzc.lzh .lzh-step__title {
	margin-top: 6px;
	font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	color: var(--lzh-ink);
}

.lzh-step__text {
	margin-top: 11px;
	font-size: 14px;
	line-height: 21px;
	color: #3e3e3e;
}

.lzh-timeline__media {
	flex: 1 1 0%;
}

.lzh-timeline__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

/* depoimentos (carrossel) */
.lzh-carousel {
	max-width: 720px;
	margin: 0 auto;
}

.lzh-carousel__viewport {
	overflow: hidden;
	transition: height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lzh-carousel__track {
	display: flex;
	align-items: flex-start;
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lzh-quote {
	flex: 0 0 100%;
	min-width: 100%;
	border: 1px solid var(--lzh-band);
	border-radius: 16px;
	background: #fff;
	padding: 30px 31px 32px;
}

.lzh-quote .lz-stars {
	gap: 4px;
}

.lzh-quote .lz-stars .lucide {
	fill: none;
	color: var(--lzh-band);
}

.lzh-quote__text {
	margin-top: 24px;
	font-style: italic;
	font-size: 18.25px;
	line-height: 27px;
	color: #707070;
}

.lzh-quote__author {
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.lzh-quote__avatar {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: #d6ccc0;
	color: #2a2622;
	font-weight: 700;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	overflow: hidden;
}

.lzh-quote__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lzh-quote__name {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #121212;
}

.lzh-quote__meta {
	font-size: 12px;
	line-height: 15px;
	color: #8a8a8a;
}

.lzh-carousel__nav {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	gap: 12px;
}

.lzc .lzh-carousel__arrow {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	border: 1px solid #e6e8ec;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #555558;
	transition: all 0.2s;
}

.lzc .lzh-carousel__arrow--next {
	border-color: var(--lzh-band);
	color: var(--lzh-band);
}

.lzc .lzh-carousel__arrow:hover {
	background: var(--lzh-band);
	border-color: var(--lzh-band);
	color: #fff;
}

.lzh-carousel__dots {
	margin-top: 24px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.lzc .lzh-carousel__dot {
	width: 8px;
	height: 4px;
	border-radius: 2px;
	background: #e6e8ec;
	transition: all 0.2s;
}

.lzc .lzh-carousel__dot.is-active {
	width: 24px;
	background: var(--lzh-band);
}

/* instagram */
.lzh-insta {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.lzh-insta a {
	display: block;
	aspect-ratio: 314 / 391;
	overflow: hidden;
}

.lzh-insta img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.lzh-insta a:hover img {
	transform: scale(1.03);
}

.lzc .lzh-btn--insta {
	font-weight: 600;
	font-size: 20px;
}

/* artigos da home */
.lzh-posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
}

.lzh-post {
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.lzh-post__media {
	display: block;
	height: 200px;
	overflow: hidden;
}

.lzh-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.lzh-post:hover .lzh-post__media img {
	transform: scale(1.04);
}

.lzh-post__body {
	padding: 23px 24px 36px;
}

.lzc.lzh .lzh-post__title {
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	color: #121212;
}

.lzc .lzh-post__title a:hover {
	color: var(--lzh-orange);
}

.lzh-post__excerpt {
	margin-top: 12px;
	font-size: 14px;
	line-height: 20px;
	color: #6a6a6e;
}

/* newsletter */
.lzh-news {
	text-align: center;
	color: #fff;
}

.lzc.lzh .lzh-news__title {
	font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	font-size: 38px;
	line-height: 46px;
	color: #fff;
}

.lzh-news__text {
	margin-top: 18px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #fff;
}

.lzh-news__form {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 13px;
}

.lzc .lzh-news__input {
	width: 320px;
	height: 45px;
	border-radius: 9999px;
	background: #fff;
	padding: 0 20px;
	font-size: 14px;
	line-height: 20px;
	color: #222;
}

.lzc .lzh-news__input::placeholder {
	color: #626266;
}

.lzc .lzh-news__button {
	height: 43px;
	margin-top: 1px;
	padding: 0 28px;
	border-radius: 9999px;
	background: #212121;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	transition: opacity 0.2s;
}

.lzc .lzh-news__button:hover {
	background: #212121;
	color: #fff;
	opacity: 0.85;
}

.lzh-news__feedback {
	margin-top: 8px;
	font-size: 13px;
	line-height: 18px;
}

.lzh-news__feedback:empty {
	display: none;
}

.lzh-news__legal {
	margin-top: 40px;
	font-size: 12.15px;
	line-height: 16px;
	color: rgba(255, 255, 255, 0.87);
}

/* ==========================================================================
   Cabeçalho e rodapé (layout final)
   ========================================================================== */

.lzh-header {
	background: var(--lzh-cream);
	border-bottom: 1px solid #e5e7eb;
}

.lzh-header__bar {
	height: 87px;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.lzh-header__logo {
	display: block;
	flex: none;
	margin-left: 2px;
	margin-top: -3px;
}

.lzh-header__logo img {
	width: 132px;
	height: auto;
}

.lzh-nav ul {
	display: flex;
	align-items: center;
	gap: 29.6px;
}

.lzc .lzh-nav a {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #121212;
	transition: color 0.15s;
	white-space: nowrap;
}

.lzc .lzh-nav a:hover {
	color: var(--lzh-orange);
}

.lzc .lzh-header__cta {
	height: 42px;
	padding: 0 29.5px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 1px;
}

.lzc .lzh-header__toggle {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	color: #121212;
}

.lzh-header__panel {
	display: none;
}

.lzh-footer {
	background: var(--lzh-sand);
}

.lzh-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 0 39px;
}

.lzh-footer__top {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.lzh-footer__brand img {
	width: 132px;
	height: auto;
	margin-left: 2px;
	margin-top: 2px;
}

.lzh-footer__desc {
	margin-top: 23px;
	max-width: 350px;
	font-size: 14px;
	line-height: 20px;
	color: #3c3c3c;
}

.lzh-footer__cols {
	display: flex;
	gap: 64px;
	margin-right: 1px;
}

.lzh-footer__col {
	min-width: 164px;
}

.lzh-footer__col:last-child {
	min-width: 149px;
}

.lzh-footer__title {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #262626;
}

.lzh-footer__links {
	margin-top: 8px;
}

.lzh-footer__links li {
	font-size: 14px;
	line-height: 20px;
}

.lzh-footer__links li + li {
	margin-top: 9px;
}

.lzc .lzh-footer__links a {
	font-size: 14px;
	line-height: 20px;
	color: #3c3c3c;
	transition: color 0.15s;
}

.lzc .lzh-footer__links a:hover {
	color: var(--lzh-orange);
}

.lzh-footer__rule {
	margin-top: 45px;
	height: 1px;
	background: #ddd6ce;
}

.lzh-footer__legal {
	margin-top: 49px;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
	color: #3c3c3c;
}

.lzh-footer__legal p + p {
	margin-top: 17px;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 1023px) {
	.lzc .lz-title--lg {
		font-size: 36px;
		line-height: 40px;
	}

	.lz-cards,
	.lz-cards--study,
	.lz-cards--left,
	.lz-bgrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lz-tmasonry {
		columns: 2;
	}

	.lz-finder__side,
	.lz-finder__mapcol {
		grid-column: span 12 / span 12;
	}

	.lz-map {
		position: relative;
		top: auto;
		height: 420px;
	}

	.lz-wrap {
		padding: 0 40px;
	}

	.lzh-header__bar,
	.lzh-footer__inner {
		padding-left: 24px;
		padding-right: 24px;
	}

	.lzh-nav,
	.lzc .lzh-header__cta {
		display: none;
	}

	.lzc .lzh-header__toggle {
		display: inline-flex;
	}

	.lzh-header__panel.is-open {
		display: block;
		padding: 0 24px 24px;
	}

	.lzh-header__panel li + li {
		margin-top: 14px;
	}

	.lzc .lzh-header__panel a {
		font-size: 16px;
		font-weight: 500;
		color: #121212;
	}

	.lzh-intro,
	.lzh-timeline {
		flex-direction: column;
		align-items: stretch;
	}

	.lzh-intro__text,
	.lzh-intro__media,
	.lzh-timeline__list {
		flex: none;
		max-width: 100%;
	}

	.lzh-intro__media img {
		height: auto;
		aspect-ratio: 686 / 484;
	}

	.lzh-features {
		grid-template-columns: 1fr;
	}

	.lzh-posts,
	.lzh-insta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lzh-footer__top {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.lzc .lz-title--xl {
		font-size: 36px;
		line-height: 40px;
	}

	.lzc .lz-title--lg,
	.lzc .lz-title--md,
	.lzc .lz-cta__title {
		font-size: 30px;
		line-height: 36px;
	}

	.lz-head__row,
	.lz-blog__bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.lz-search {
		width: 100%;
	}

	.lz-cards,
	.lz-cards--study,
	.lz-cards--left,
	.lz-alerts,
	.lz-bgrid,
	.lz-cform__row,
	.lz-tform__row,
	.lz-related__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lz-hsteps__line,
	.lz-hsteps__dot {
		display: none;
	}

	.lz-hsteps__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lz-tmasonry {
		columns: 1;
	}

	.lz-cta {
		padding: 64px 32px;
	}

	.lz-wrap {
		padding: 0 24px;
	}

	.lzc .lz-article__title {
		font-size: 30px;
		line-height: 36px;
	}

	.lzc.lzh .lzh-title {
		font-size: 26px;
		line-height: 34px;
	}

	.lzc.lzh .lzh-intro__title {
		font-size: 28px;
		line-height: 40px;
	}

	.lzh-posts,
	.lzh-insta {
		grid-template-columns: minmax(0, 1fr);
	}

	.lzh-news__form {
		flex-direction: column;
		align-items: center;
	}

	.lzc.lzh .lzh-news__title {
		font-size: 28px;
		line-height: 36px;
	}

	.lzh-footer__cols {
		flex-direction: column;
		gap: 32px;
	}
}

/* Elementos ocultos pelos filtros */
.lzc[hidden],
.lzc [hidden] {
	display: none !important;
}

/* Coluna fixa ao rolar (usada em "O mecanismo de ação") */
@media (min-width: 1024px) {
	.lz-sticky {
		position: sticky;
		top: 112px;
	}
}

/* --------------------------------------------------------------------------
   Aviso de cookies
   -------------------------------------------------------------------------- */

.lz-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	padding: 0 16px 16px;
	font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.lz-cookie__box {
	margin: 0 auto;
	max-width: 1280px;
	border-radius: 16px;
	border: 1px solid var(--lz-border);
	background: var(--lz-card);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.lz-cookie__text {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex: 1 1 0%;
}

.lz-cookie__icon {
	margin-top: 2px;
	color: var(--lz-primary);
	flex: none;
}

.lz-cookie__text p {
	font-size: 14px;
	line-height: 22.75px;
	color: rgba(42, 42, 42, 0.8);
}

.lzc .lz-cookie__text a {
	color: var(--lz-secondary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.lz-cookie__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: none;
}

.lzc .lz-cookie__reject {
	height: 40px;
	padding: 0 16px;
	border-radius: 9999px;
	border: 1px solid var(--lz-border);
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	min-width: 44px;
	color: var(--lz-fg);
	transition: background-color 0.15s;
}

.lzc .lz-cookie__reject:hover {
	background: var(--lz-muted);
	color: var(--lz-fg);
}

.lzc .lz-cookie__accept {
	height: 40px;
	padding: 0 20px;
	border-radius: 9999px;
	background: var(--lz-primary);
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	min-width: 44px;
	transition: all 0.15s;
}

.lzc .lz-cookie__accept:hover {
	background: var(--lz-primary);
	color: #fff;
	filter: brightness(1.1);
}

@media (max-width: 767px) {
	.lz-cookie__box {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
	}
}

/* --------------------------------------------------------------------------
   Mapa real (Leaflet + OpenStreetMap)
   -------------------------------------------------------------------------- */

.lz-map {
	position: sticky;
	top: 96px;
	height: 640px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--lz-border);
	background: #e2ecee;
	isolation: isolate;
}

.lz-map__canvas {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #e2ecee;
	font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

/* estilo "Claro": tons neutros azulados, próximos da identidade do site */
.lz-map--light .leaflet-tile-pane {
	filter: grayscale(1) sepia(0.18) hue-rotate(160deg) saturate(1.35) brightness(1.04) contrast(0.92);
}

.lz-map .lz-map__caption {
	z-index: 500;
}

.lz-map .leaflet-control-attribution {
	font-size: 10px;
	background: rgba(251, 250, 249, 0.8);
	color: #666;
}

.lzc .lz-map .leaflet-control-attribution a {
	color: var(--lz-secondary);
}

.lz-map .leaflet-bar {
	border: 1px solid var(--lz-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.lzc .lz-map .leaflet-bar a {
	width: 32px;
	height: 32px;
	line-height: 30px;
	color: var(--lz-fg);
	background: var(--lz-card);
	border-bottom-color: var(--lz-border);
	font: 500 18px/30px "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.lzc .lz-map .leaflet-bar a:hover {
	color: var(--lz-primary);
	background: #fff;
}

/* ponto */
.lz-pin-wrap {
	background: transparent;
	border: 0;
}

.lz-pin {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 9999px;
	border: 2px solid #fff;
	background: var(--lz-secondary);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s;
	cursor: pointer;
}

.lz-pin:hover {
	transform: scale(1.25);
}

.lz-pin.is-active {
	background: var(--lz-primary);
	transform: scale(1.25);
}

/* balão */
.leaflet-tooltip.lz-map-tip {
	width: 176px;
	white-space: normal;
	border: 0;
	border-radius: 12px;
	background: var(--lz-fg);
	color: var(--lz-bg);
	font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
	font-size: 12px;
	line-height: 16px;
	padding: 8px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.leaflet-tooltip.lz-map-tip::before {
	display: none;
}

.lz-map-tip strong {
	display: block;
	font-weight: 600;
	line-height: 1.25;
}

.lz-map-tip span {
	color: rgba(251, 250, 249, 0.7);
}

@media (max-width: 1023px) {
	.lz-map {
		position: relative;
		top: auto;
		height: 420px;
	}
}

/* Mapa do cadastro de clínicas (admin) */
