/**
 * LCJ Odontologia · Design System "Estúdio do Sorriso" (Direção A).
 * Tokens VINCULANTES do Estudo de Caso: cobalto #01008A + limão #90FF36, base clara.
 *
 * Projeto Gerado pelo Prompt Mestre do Desenvolvedor e Vibe Coder Dante Testa · www.dantetesta.com.br
 */

/* ============ TOKENS ============ */
:root {
	--canvas: #f6f8fc;
	--surface: #ffffff;
	--ink: #0a0a23;
	--muted: #585a78;
	--brand: #01008a;
	--brand-700: #0605c4;
	--brand-100: #e7e7fa;
	--accent: #90ff36;
	--accent-ink: #0a0a23;
	--on-brand: #ffffff;
	--success: #18a957;
	--bd: #e5e7f2;

	--container: 1200px;
	--gap: 24px;
	--r: 8px;
	--r-lg: 16px;
	--sh-soft: 0 8px 30px -12px rgba(1, 0, 138, 0.18);
	--sh-card: 0 1px 2px rgba(10, 10, 35, 0.04), 0 12px 28px -14px rgba(1, 0, 138, 0.16);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);

	--ff-display: "Fraunces", serif;
	--ff-body: "Hanken Grotesk", system-ui, sans-serif;
	--ff-mono: ui-monospace, Menlo, monospace;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--canvas);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-700); }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 0.4em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
mark { background: transparent; color: inherit; }

/* ============ LAYOUT ============ */
.lcj-container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.lcj-section { padding: clamp(56px, 8vw, 112px) 0; }
.lcj-main { display: block; }

.lcj-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--ff-mono); font-size: 0.8125rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted);
	margin-bottom: 18px;
}
.lcj-eyebrow--accent { color: var(--brand); }
.lcj-eyebrow--accent::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--accent); }

.lcj-sechead { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.lcj-sechead__title { font-size: clamp(1.75rem, 3.2vw, 2.6rem); margin: 0 0 0.5em; }
.lcj-sechead__lead { font-size: 1.15rem; color: var(--muted); max-width: 56ch; margin: 0; }

/* grifo limão (assinatura) · desenha no carregamento */
.lcj-hl {
	background-image: linear-gradient(transparent 62%, rgba(144, 255, 54, 0.85) 62%);
	background-repeat: no-repeat; background-position: 0 0;
	background-size: 100% 100%;
	animation: lcj-draw 0.7s var(--ease) both;
	padding: 0 0.04em;
}
@keyframes lcj-draw { from { background-size: 0 100%; } to { background-size: 100% 100%; } }

/* ============ BOTÕES / LINKS / CHIPS ============ */
.lcj-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--ff-body); font-weight: 600; font-size: 0.975rem; line-height: 1;
	padding: 13px 22px; border-radius: var(--r); border: 1.5px solid transparent;
	cursor: pointer; transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
	text-align: center;
}
.lcj-btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.lcj-btn--sm { padding: 10px 16px; font-size: 0.9rem; }
.lcj-btn--block { width: 100%; }
.lcj-btn__icon { flex: 0 0 auto; }

.lcj-btn--accent { background: var(--accent); color: var(--accent-ink); }
.lcj-btn--accent:hover { color: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(144, 255, 54, 0.6); }

.lcj-btn--ghost { background: transparent; border-color: var(--brand); color: var(--brand); }
.lcj-btn--ghost:hover { background: var(--brand); color: var(--on-brand); transform: translateY(-2px); }

.lcj-btn--ghost-light { background: transparent; border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.lcj-btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.lcj-link {
	display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand);
}
.lcj-link:hover { gap: 12px; color: var(--brand-700); }

.lcj-chip {
	display: inline-flex; align-items: center; font-family: var(--ff-mono); font-size: 0.78rem;
	font-weight: 700; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 999px;
	background: var(--brand-100); color: var(--brand);
}

.lcj-iconbtn {
	display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
	color: var(--brand); background: var(--brand-100); transition: background 0.2s, color 0.2s, transform 0.15s;
}
.lcj-iconbtn:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.lcj-iconbtn--sm { width: 36px; height: 36px; }
.lcj-iconbtn--ghost { background: rgba(255, 255, 255, 0.1); color: #fff; }
.lcj-iconbtn--ghost:hover { background: var(--accent); color: var(--accent-ink); }

.lcj-skip {
	position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--brand); color: #fff;
	padding: 10px 16px; border-radius: var(--r);
}
.lcj-skip:focus { left: 8px; color: #fff; }

/* ============ HEADER / NAV ============ */
.lcj-header {
	position: sticky; top: 0; z-index: 50; background: rgba(246, 248, 252, 0.85);
	backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid transparent;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.lcj-header.is-stuck { border-color: var(--bd); box-shadow: var(--sh-soft); }
.lcj-header__inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.lcj-header__brand { margin-right: auto; }
.custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.custom-logo { width: var(--lcj-logo-w, 150px); height: auto; max-width: 100%; display: block; }
@media (max-width: 860px) { .custom-logo { width: calc(var(--lcj-logo-w, 150px) * 0.92); } }
@media (max-width: 480px) { .custom-logo { width: calc(var(--lcj-logo-w, 150px) * 0.8); } }
.lcj-logo { display: inline-flex; flex-direction: column; line-height: 1; }
.lcj-logo__mark { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; color: var(--brand); display: inline-flex; align-items: baseline; }
.lcj-logo__mark--lg { font-size: 1.9rem; color: #fff; }
.lcj-logo__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-left: 4px; align-self: flex-end; }
.lcj-logo__sub { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.lcj-nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.lcj-nav__list a { color: var(--ink); font-weight: 500; font-size: 0.97rem; position: relative; padding: 4px 0; }
.lcj-nav__list a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width 0.25s var(--ease); }
.lcj-nav__list a:hover { color: var(--brand); }
.lcj-nav__list a:hover::after { width: 100%; }

.lcj-header__actions { display: flex; align-items: center; gap: 12px; }
.lcj-burger { display: none; background: transparent; border: 0; padding: 8px; color: var(--brand); cursor: pointer; }

/* off-canvas mobile */
.lcj-overlay { position: fixed; inset: 0; background: rgba(10, 10, 35, 0.5); z-index: 60; opacity: 0; transition: opacity 0.25s; }
.lcj-overlay.is-open { opacity: 1; }
.lcj-mobile {
	position: fixed; top: 0; right: 0; height: 100dvh; width: min(86vw, 360px); z-index: 70;
	background: var(--surface); box-shadow: -20px 0 50px -20px rgba(1, 0, 138, 0.4);
	transform: translateX(100%); transition: transform 0.3s var(--ease);
	display: flex; flex-direction: column; gap: 18px; padding: 22px;
}
.lcj-mobile.is-open { transform: translateX(0); }
.lcj-mobile__head { display: flex; align-items: center; justify-content: space-between; }
.lcj-mobile__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.lcj-mobile__list a { display: block; padding: 14px 12px; border-radius: var(--r); font-family: var(--ff-display); font-size: 1.2rem; color: var(--ink); }
.lcj-mobile__list a:hover { background: var(--brand-100); color: var(--brand); }

/* ============ HERO ============ */
.lcj-hero { padding: clamp(40px, 6vw, 88px) 0 clamp(56px, 8vw, 104px); }
.lcj-hero__grid { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.lcj-hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; margin: 0 0 0.5em; }
.lcj-hero__lead { font-size: 1.2rem; color: var(--muted); max-width: 50ch; margin: 0 0 32px; }
.lcj-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.lcj-hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; margin: 0; padding: 0; }
.lcj-hero__trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.lcj-hero__trust svg { color: var(--brand); flex: 0 0 auto; }

.lcj-hero__media { position: relative; }
.lcj-hero__figure { aspect-ratio: 4 / 5; }
.lcj-hero__badge {
	position: absolute; left: -18px; bottom: 28px; display: flex; align-items: center; gap: 12px;
	background: var(--surface); border-radius: var(--r-lg); padding: 14px 18px; box-shadow: var(--sh-card);
	border: 1px solid var(--bd);
}
.lcj-hero__badge-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--brand); color: var(--accent); flex: 0 0 auto; }
.lcj-hero__badge strong { display: block; font-family: var(--ff-display); font-size: 1.02rem; color: var(--ink); }
.lcj-hero__badge > div span { font-size: 0.82rem; color: var(--muted); }

/* ============ FIGURE / PLACEHOLDER (moldura editorial) ============ */
.lcj-figure {
	position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden;
	background: var(--brand-100); box-shadow: 6px 6px 0 var(--brand);
}
.lcj-figure__img { width: 100%; height: 100%; object-fit: cover; }
.lcj-figure::before { /* aba limão */
	content: ""; position: absolute; top: 14px; left: 14px; z-index: 2;
	width: 38px; height: 6px; border-radius: 3px; background: var(--accent);
}
.lcj-figure--ph {
	display: grid; place-content: center; justify-items: center; gap: 12px; aspect-ratio: 4 / 5;
	background: linear-gradient(150deg, var(--brand) 0%, #06065f 100%); color: var(--accent);
}
.lcj-figure--ph .lcj-figure__tag { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.lcj-figure--ph .lcj-figure__ico { opacity: 0.95; }

/* ============ SERVIÇOS ============ */
.lcj-servicos__grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: var(--gap); align-items: stretch; }
.lcj-servicos__rest { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.lcj-servicos__rest--archive { grid-template-columns: repeat(3, 1fr); }

.lcj-svc {
	background: var(--surface); border: 1px solid var(--bd); border-radius: var(--r-lg);
	padding: 28px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--sh-card);
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.lcj-svc:hover { transform: translateY(-4px); border-color: var(--brand-100); box-shadow: 0 18px 40px -18px rgba(1, 0, 138, 0.32); }
.lcj-svc__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: var(--brand-100); color: var(--brand); }
.lcj-svc__title { font-size: 1.3rem; margin: 0; }
.lcj-svc__title a { color: inherit; text-decoration: none; }
.lcj-svc__title a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.lcj-svc--feature .lcj-svc__title a { color: #fff; }
.lcj-svc__desc { color: var(--muted); margin: 0; flex: 1; }
.lcj-svc__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: auto; }
.lcj-svc--link { text-decoration: none; color: inherit; cursor: pointer; }
.lcj-svc--link:hover { color: inherit; }
.lcj-svc__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-weight: 600; color: var(--brand); }
.lcj-svc--link:hover .lcj-svc__more { gap: 12px; color: var(--brand-700); }

.lcj-svc--feature {
	background: linear-gradient(160deg, var(--brand) 0%, #07075f 100%); color: var(--on-brand);
	border: none; position: relative; justify-content: flex-end; gap: 16px; min-height: 320px;
}
.lcj-svc--feature .lcj-svc__title { color: #fff; font-size: 1.9rem; }
.lcj-svc--feature .lcj-svc__desc { color: rgba(255, 255, 255, 0.8); }
.lcj-svc--feature .lcj-svc__icon { background: rgba(144, 255, 54, 0.16); color: var(--accent); width: 64px; height: 64px; }
.lcj-svc__badge {
	position: absolute; top: 22px; right: 22px; font-family: var(--ff-mono); font-size: 0.7rem;
	font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-ink);
	background: var(--accent); padding: 6px 12px; border-radius: 999px;
}

/* ============ SOBRE ============ */
.lcj-sobre__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.lcj-sobre__media { position: relative; }
.lcj-sobre__figure { aspect-ratio: 3 / 4; }
.lcj-sobre__stat {
	position: absolute; right: -16px; bottom: 24px; background: var(--accent); color: var(--accent-ink);
	border-radius: var(--r-lg); padding: 14px 20px; box-shadow: var(--sh-soft);
}
.lcj-sobre__stat strong { display: block; font-family: var(--ff-display); font-size: 1.3rem; }
.lcj-sobre__stat span { font-size: 0.82rem; }
.lcj-pilares { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.lcj-pilar { display: flex; gap: 16px; }
.lcj-pilar__ico { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border-radius: 12px; background: var(--brand-100); color: var(--brand); }
.lcj-pilar strong { font-family: var(--ff-display); font-size: 1.15rem; display: block; margin-bottom: 2px; }
.lcj-pilar p { margin: 0; color: var(--muted); }

/* ============ EQUIPE ============ */
.lcj-equipe__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.lcj-pro { background: var(--surface); border: 1px solid var(--bd); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-card); display: flex; flex-direction: column; }
.lcj-pro .lcj-figure { border-radius: 0; box-shadow: none; }
.lcj-pro .lcj-figure::before { display: none; }
.lcj-pro__figure { aspect-ratio: 4 / 5; }
.lcj-pro__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lcj-pro__name { font-size: 1.35rem; margin: 0; }
.lcj-pro__formacao { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.lcj-pro__formacao li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--muted); }
.lcj-pro__formacao svg { color: var(--success); flex: 0 0 auto; margin-top: 3px; }
.lcj-pro__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }

/* ============ PAINEL COBALTO / DEPOIMENTOS ============ */
.lcj-panel--cobalt { background: var(--brand); color: var(--on-brand); border-radius: 0; }
.lcj-panel--cobalt .lcj-sechead__title, .lcj-panel--cobalt h2 { color: #fff; }
.lcj-panel--cobalt .lcj-eyebrow, .lcj-panel--cobalt .lcj-eyebrow--accent { color: rgba(255, 255, 255, 0.88); }
.lcj-panel--cobalt .lcj-sechead__lead { color: rgba(255, 255, 255, 0.82); }
.lcj-depo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.lcj-depo__card { margin: 0; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.lcj-depo__stars { display: flex; gap: 3px; color: var(--accent); }
.lcj-depo__card blockquote { margin: 0; font-size: 1.08rem; color: #fff; line-height: 1.6; }
.lcj-depo__card figcaption strong { display: block; font-family: var(--ff-display); }
.lcj-depo__card figcaption span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

/* ============ FAQ ============ */
.lcj-faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.lcj-faq__intro { position: sticky; top: 100px; }
.lcj-faq__list { display: flex; flex-direction: column; gap: 12px; }
.lcj-faq__item { background: var(--surface); border: 1px solid var(--bd); border-radius: var(--r-lg); overflow: hidden; }
.lcj-faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--ff-display); font-size: 1.12rem; color: var(--ink); list-style: none; }
.lcj-faq__item summary::-webkit-details-marker { display: none; }
.lcj-faq__plus { flex: 0 0 auto; color: var(--brand); transition: transform 0.25s var(--ease); }
.lcj-faq__item[open] .lcj-faq__plus { transform: rotate(45deg); }
.lcj-faq__answer { padding: 0 24px 22px; color: var(--muted); }
.lcj-faq__answer p { margin: 0 0 0.6rem; }

/* ============ CONTATO ============ */
.lcj-contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: stretch; }
.lcj-contato__info { border-radius: var(--r-lg); padding: clamp(32px, 4vw, 52px); }
.lcj-contato__list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.lcj-contato__list li { display: flex; gap: 14px; color: rgba(255, 255, 255, 0.92); }
.lcj-contato__ico { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: rgba(144, 255, 54, 0.16); color: var(--accent); }
.lcj-contato__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.lcj-contato__map { border-radius: var(--r-lg); overflow: hidden; min-height: 360px; background: var(--brand-100); position: relative; }
.lcj-contato__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ============ WHATSAPP FLOAT ============ */
.lcj-wa-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 60px; height: 60px;
	display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
	box-shadow: 0 12px 30px -8px rgba(144, 255, 54, 0.7); transition: transform 0.2s var(--ease);
}
.lcj-wa-float:hover { transform: scale(1.08); color: var(--accent-ink); }
.lcj-wa-float__icon { width: 32px; height: 32px; }

/* ============ SINGLE / PAGE / PROSE / 404 ============ */
.lcj-single__head { background: linear-gradient(160deg, var(--brand) 0%, #07075f 100%); color: #fff; padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px); }
.lcj-single__head-inner { max-width: 760px; }
.lcj-single__icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: rgba(144, 255, 54, 0.16); color: var(--accent); margin-bottom: 18px; }
.lcj-single__title { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.lcj-single__lead { font-size: 1.2rem; color: rgba(255, 255, 255, 0.85); }
.lcj-single__body { max-width: 820px; padding-top: clamp(32px, 5vw, 56px); padding-bottom: clamp(32px, 5vw, 56px); }
.lcj-single__thumb { border-radius: var(--r-lg); margin-bottom: 28px; }
.lcj-single__figure, .lcj-single__figure.lcj-figure--ph { aspect-ratio: 16 / 9; margin-bottom: 32px; }
.lcj-single__cta { margin-top: 36px; padding: 28px; background: var(--brand-100); border-radius: var(--r-lg); display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between; }
.lcj-single__cta p { margin: 0; font-family: var(--ff-display); font-size: 1.2rem; }

.lcj-prose { font-size: 1.08rem; }
.lcj-prose h2 { font-size: 1.8rem; margin-top: 1.6em; }
.lcj-prose h3 { font-size: 1.4rem; margin-top: 1.4em; }
.lcj-prose img { border-radius: var(--r-lg); }
.lcj-prose ul, .lcj-prose ol { padding-left: 1.3em; }

.lcj-page__head { max-width: 820px; margin-bottom: 32px; }
.lcj-page__title { font-size: clamp(2rem, 4vw, 3rem); }
.lcj-page__thumb { border-radius: var(--r-lg); margin-bottom: 32px; }

.lcj-prosingle__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.lcj-prosingle__foot { display: flex; align-items: center; gap: 12px; margin-top: 16px; }

.lcj-404__inner { max-width: 620px; text-align: center; margin-inline: auto; }
.lcj-404__title { font-size: clamp(2rem, 5vw, 3.4rem); }
.lcj-404 .lcj-hero__actions { justify-content: center; }

/* ============ FOOTER ============ */
.lcj-footer { background: #05053a; color: rgba(255, 255, 255, 0.82); }
.lcj-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(48px, 6vw, 80px) 0; }
.lcj-footer__slogan { max-width: 32ch; margin: 14px 0 18px; color: rgba(255, 255, 255, 0.62); }
.lcj-footer__title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; font-family: var(--ff-mono); margin: 0 0 16px; }
.lcj-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lcj-footer__list li { display: flex; gap: 10px; color: rgba(255, 255, 255, 0.72); }
.lcj-footer__list a { color: rgba(255, 255, 255, 0.72); }
.lcj-footer__list a:hover { color: var(--accent); }
.lcj-footer__list svg { color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.lcj-footer__note { color: rgba(255, 255, 255, 0.62); margin-bottom: 18px; }
.lcj-footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.lcj-footer__bar-inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; padding: 22px 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }
.lcj-footer__credit a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ============ MOTION / REVEAL ============ */
/* O JS adiciona .lcj-reveal (sem JS, nada some). Failsafe revela tudo após 1.4s. */
.lcj-section.lcj-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.lcj-section.lcj-reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
	.lcj-hero__grid { grid-template-columns: 1fr; }
	.lcj-hero__media { order: -1; max-width: 460px; }
	.lcj-servicos__grid { grid-template-columns: 1fr; }
	.lcj-sobre__grid, .lcj-faq__grid, .lcj-contato__grid, .lcj-prosingle__grid { grid-template-columns: 1fr; }
	.lcj-equipe__grid, .lcj-depo__grid, .lcj-servicos__rest--archive { grid-template-columns: repeat(2, 1fr); }
	.lcj-faq__intro { position: static; }
}
@media (max-width: 860px) {
	.lcj-nav, .lcj-header__cta { display: none; }
	.lcj-burger { display: inline-flex; }
	.lcj-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.lcj-servicos__rest, .lcj-equipe__grid, .lcj-depo__grid, .lcj-servicos__rest--archive { grid-template-columns: 1fr; }
	.lcj-footer__grid { grid-template-columns: 1fr; }
	.lcj-hero__badge { left: 0; }
	.lcj-sobre__stat { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
	.lcj-section.lcj-reveal { opacity: 1; transform: none; }
	.lcj-hl { background-size: 100% 100%; }
}

/* ============ CARROSSEL + STICKY DO DESTAQUE ============ */
.lcj-carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: none;
	-webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
	padding-bottom: 10px;
	scrollbar-width: thin;
	scrollbar-color: var(--brand-100) transparent;
}
.lcj-carousel > .lcj-svc { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.lcj-carousel::-webkit-scrollbar { height: 8px; }
.lcj-carousel::-webkit-scrollbar-thumb { background: var(--brand-100); border-radius: 999px; }
.lcj-carousel:focus-visible,
.lcj-servicos__rest:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; border-radius: var(--r-lg); }

/* Sticky do card destaque — só no desktop (>=1025px) */
@media (min-width: 1025px) {
	.lcj-svc--feature { position: sticky; top: 92px; align-self: start; }
}

/* Mobile: serviços da home + Veja também viram carrossel estilo Netflix (peek) */
@media (max-width: 768px) {
	.lcj-servicos__rest,
	.lcj-carousel {
		display: flex;
		grid-template-columns: none;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: none;
		-webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		padding: 4px 20px 16px;
		scroll-padding-left: 20px;
		scrollbar-width: none;
	}
	.lcj-servicos__rest::-webkit-scrollbar,
	.lcj-carousel::-webkit-scrollbar { display: none; }
	.lcj-servicos__rest > .lcj-svc,
	.lcj-carousel > .lcj-svc { flex: 0 0 80%; scroll-snap-align: start; }
}
