/* AUTO-SYNCED from zion_med_front link-bio-public components */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Outfit:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700;800;900&family=Fredoka:wght@400;500;600;700&family=Fraunces:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');
*,*::before,*::after{box-sizing:border-box;}
html,body{margin:0;padding:0;}
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&display=swap');

:host {
  display: block;
}

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

.page {
  --accent: #1a6fbf;
  min-height: 100vh;
  background: #f9fafb;
  color: #111827;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  /* Isola do body.dark do app: zm-skeleton e utilitários Tailwind dark: */
  --c-border: #e5e7eb;
  --c-surface: #ffffff;
  --c-soft: #f3f4f6;
  --skeleton-base: #e2e8f0;
  --skeleton-highlight: #f8fafc;
}

.page.dark {
  background: #121212;
  color: #f9fafb;
  --c-border: rgba(255, 255, 255, 0.1);
  --c-surface: #13161c;
  --c-soft: #0d1016;
  --skeleton-base: #252b36;
  --skeleton-highlight: #3d4654;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1rem;
}

.topbar.topbar-no-cover {
  position: static;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0.75rem 1rem 0;
}

.topbar.topbar-no-cover .icon-pill {
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  color: #4b5563;
  backdrop-filter: none;
}

.page.dark .topbar.topbar-no-cover .icon-pill {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.icon-pill {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .15s ease, transform .1s ease;
}

.icon-pill:hover {
  opacity: .7;
}

.icon-pill:active {
  transform: scale(.95);
}

.icon {
  width: 14px;
  height: 14px;
}

.cover {
  position: relative;
  height: 176px;
  overflow: hidden;
  background: #0b1628;
}

.cover-img,
.cover-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 22px 22px;
}

.cover-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.55;
}

.content {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1rem 3.5rem;
  overflow: visible;
}

.avatar-wrap {
  margin-top: .75rem;
  position: relative;
  z-index: 2;
}

.avatar-wrap.avatar-over-cover {
  margin-top: -2rem;
}

.avatar-fallback,
.avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 0.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.avatar-fallback {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
}

.avatar-img {
  background: #fff;
  object-fit: cover;
  object-position: center;
  padding: 0;
  display: block;
}

.head h1 {
  font-family: 'Sora', sans-serif;
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 1rem 0 0;
}

.subtitle {
  margin: .4rem 0 0;
  color: #9ca3af;
  font-size: .875rem;
}

.page.dark .subtitle {
  color: #6b7280;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
  align-items: center;
}

.chip,
.status {
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: .3rem .75rem;
  font-size: 11px;
  font-weight: 600;
}

.chip {
  background: color-mix(in srgb, var(--accent) 14%, #ffffff);
  color: var(--accent);
}

.page.dark .chip {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: color-mix(in srgb, var(--accent) 65%, #ffffff);
}

.status {
  gap: .35rem;
  background: #ecfdf5;
  color: #047857;
}

.status.closed {
  background: #f3f4f6;
  color: #6b7280;
}

.page.dark .status {
  background: rgba(6, 95, 70, .25);
  color: #6ee7b7;
}

.page.dark .status.closed {
  background: rgba(255, 255, 255, .05);
  color: #9ca3af;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 0.5rem;
  background: #10b981;
  animation: pulse-dot 2s ease-in-out infinite;
}

.dot.closed {
  animation: none;
  background: #9ca3af;
}

.meta-year {
  font-size: 11px;
  color: #9ca3af;
}

.page.dark .meta-year {
  color: #6b7280;
}

.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 1.2rem 0;
}

.page.dark .divider {
  background: rgba(255, 255, 255, .06);
}

.btn-wa {
  width: 100%;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: .95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  transition: filter .15s ease, transform .1s ease;
}

.btn-wa:hover {
  filter: brightness(1.08);
}

.btn-wa:active {
  transform: scale(.98);
}

.wa-icon {
  width: 20px;
  height: 20px;
}

.secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: .6rem;
}

.sec-btn {
  text-decoration: none;
  border-radius: 0.5rem;
  background: #f3f4f6;
  color: #4b5563;
  padding: .75rem .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: 13px;
  font-weight: 600;
}

.page.dark .sec-btn {
  background: rgba(255, 255, 255, .05);
  color: #9ca3af;
}

.sec-icon {
  width: 16px;
  height: 16px;
}

.hours {
  margin-top: 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  padding: 1rem;
}

.page.dark .hours {
  border-color: rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .03);
}

.section-title {
  margin: 0 0 .75rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: #9ca3af;
}

.page.dark .section-title {
  color: #6b7280;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: .62rem 0;
}

.hour-row + .hour-row {
  border-top: 1px solid #f1f5f9;
}

.page.dark .hour-row + .hour-row {
  border-top-color: rgba(255, 255, 255, .05);
}

.hour-label {
  color: #6b7280;
}

.hour-label.strong {
  color: #374151;
  font-weight: 700;
}

.page.dark .hour-label.strong {
  color: #e5e7eb;
}

.hour-value {
  color: var(--accent);
  font-weight: 600;
}

.page.dark .hour-value {
  color: color-mix(in srgb, var(--accent) 65%, #ffffff);
}

.muted-row .hour-label {
  color: #4b5563;
}

.muted-value {
  color: #334155;
  font-weight: 500;
}

.page.dark .muted-row .hour-label,
.page.dark .muted-value {
  color: #475569;
}

.docs {
  margin-top: 1.4rem;
}

.docs-head {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.docs-head .section-title {
  margin: 0;
}

.line {
  height: 1px;
  flex: 1;
  background: #e5e7eb;
}

.page.dark .line {
  background: rgba(255, 255, 255, .06);
}

.docs-sub {
  font-size: 12px;
  color: #9ca3af;
  margin: .4rem 0 .9rem;
}

.page.dark .docs-sub {
  color: #6b7280;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  border-radius: 0.5rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  padding: .85rem .95rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: .6rem;
  transition: transform .15s ease, background-color .15s ease;
}

.page.dark .doc-card {
  border-color: rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .03);
}

.doc-card:hover {
  transform: translateX(4px);
}

.doc-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: #e8f3fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page.dark .doc-icon-wrap {
  background: rgba(15, 76, 130, .3);
}

.doc-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.page.dark .doc-icon {
  color: color-mix(in srgb, var(--accent) 65%, #ffffff);
}

.doc-text {
  flex: 1;
  min-width: 0;
}

.doc-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.doc-sub {
  margin: .2rem 0 0;
  font-size: 11px;
  color: #9ca3af;
}

.page.dark .doc-sub {
  color: #6b7280;
}

.arrow {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
  flex-shrink: 0;
}

.page.dark .arrow {
  color: #4b5563;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: 11px;
}

.page.dark .footer {
  border-top-color: rgba(255, 255, 255, .05);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.page.dark .footer a {
  color: color-mix(in srgb, var(--accent) 65%, #ffffff);
}

.muted {
  color: #9ca3af;
}

.page.dark .muted {
  color: #6b7280;
}

.dot-static {
  width: 5px;
  height: 5px;
  border-radius: 0.5rem;
  background: var(--accent);
  opacity: .5;
}

.empty {
  margin-top: 1rem;
  text-align: center;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: .35;
  }
}

.page.page-embed {
  min-height: 100%;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:wght@400;500;600&family=Inter:wght@300;400;500;600;700&family=Jost:wght@200;300;400;500;600&family=Manrope:wght@400;500;600;700;800&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Noto+Serif:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:host {
  display: block;
}

.lb-float-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-right: max(1rem, env(safe-area-inset-right));
}

/* —— Modelo 2: Profissional solo (referência Stitch / code.html) —— */
.lb-m2-root {
  --m2-bg: #f9fafb;
  --m2-on: #131e19;
  --m2-on-var: #414846;
  --m2-primary: #02241d;
  --m2-primary-container: #1a3a32;
  --m2-on-primary-container: #82a499;
  --m2-on-sec-container: #00714d;
  --m2-sec-container: #6cf8bb;
  --m2-outline-var: #c1c8c4;
  --m2-surface-low: #ebf7ee;
  --m2-surface-high: #dfebe3;
  --m2-surface-highest: #dae5dd;
  --m2-card: #ffffff;
  --m2-cta-bg: #10b981;
  --m2-cta-fg: #02241d;
  --m2-header-bg: rgba(250, 250, 249, 0.82);
  --m2-shadow: 0 30px 60px -12px rgba(26, 58, 50, 0.08);
  --m2-accent: #00714d;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  position: relative;
  min-height: 100vh;
  background: var(--m2-bg);
  color: var(--m2-on);
  min-height: 100vh;
}

.lb-m2-root.dark {
  --m2-bg: #121212;
  --m2-on: #e8f4eb;
  --m2-on-var: #9ca8a4;
  --m2-primary: #c7eade;
  --m2-primary-container: #1a3a32;
  --m2-accent: #34d399;
  --m2-on-primary-container: #abcec2;
  --m2-on-sec-container: #6ffbbe;
  --m2-sec-container: rgba(108, 248, 187, 0.22);
  --m2-outline-var: rgba(255, 255, 255, 0.12);
  --m2-surface-low: rgba(255, 255, 255, 0.05);
  --m2-surface-high: rgba(255, 255, 255, 0.08);
  --m2-surface-highest: rgba(255, 255, 255, 0.1);
  --m2-card: rgba(255, 255, 255, 0.06);
  --m2-header-bg: rgba(15, 22, 18, 0.88);
  --m2-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.35);
}

.lb-m2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--m2-header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--m2-outline-var) 35%, transparent);
}

.lb-m2-header-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lb-m2-header-inner {
    padding: 1.5rem 2rem;
  }
}

.lb-m2-header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.lb-m2-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--m2-on-sec-container);
}

.lb-m2-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-m2-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--m2-sec-container) 40%, var(--m2-surface-low));
  font-family: Newsreader, Georgia, serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--m2-on-sec-container);
}

.lb-m2-header-title {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1c1917;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-m2-root.dark .lb-m2-header-title {
  color: var(--m2-on);
}

.lb-m2-header-actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lb-m2-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #78716c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.15s ease;
}

.lb-m2-icon-btn:hover {
  color: #059669;
}

.lb-m2-root.dark .lb-m2-icon-btn {
  color: var(--m2-on-var);
}

.lb-m2-root.dark .lb-m2-icon-btn:hover {
  color: var(--m2-on-sec-container);
}

.lb-m2-icon-svg {
  width: 1.125rem;
  height: 1.125rem;
}

.lb-m2-main {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .lb-m2-main {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.lb-m2-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ── Hero photo (grande, centrada) ── */
.lb-m2-hero-photo-wrap {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.lb-m2-hero-photo-glow {
  position: absolute;
  inset: -0.75rem;
  border-radius: 9999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--m2-accent, #00714d) 28%, transparent) 0%, transparent 70%);
  animation: lb-m2-glow-pulse 3s ease-in-out infinite;
}

@keyframes lb-m2-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.lb-m2-hero-photo-ring {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 9999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--m2-sec-container, #6cf8bb) 40%, var(--m2-surface-low, #ebf7ee));
  box-shadow:
    0 0 0 3px var(--m2-bg, #f0fcf4),
    0 0 0 5px color-mix(in srgb, var(--m2-accent, #00714d) 60%, transparent),
    0 8px 32px -4px color-mix(in srgb, var(--m2-accent, #00714d) 35%, transparent);
}

.lb-m2-hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-m2-hero-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Newsreader, Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--m2-on-sec-container, #00714d);
}

/* ── Chips de especialidade ── */
.lb-m2-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.lb-m2-chip {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--m2-accent, #00714d) 10%, transparent);
  color: var(--m2-on-sec-container, #00714d);
  border: 1px solid color-mix(in srgb, var(--m2-accent, #00714d) 22%, transparent);
}

.lb-m2-root.dark .lb-m2-chip {
  background: color-mix(in srgb, var(--m2-accent, #34d399) 12%, transparent);
  color: var(--m2-accent, #34d399);
  border-color: color-mix(in srgb, var(--m2-accent, #34d399) 28%, transparent);
}

.lb-m2-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.65rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lb-m2-pill--live {
  background: color-mix(in srgb, var(--m2-sec-container) 32%, transparent);
  color: var(--m2-on-sec-container);
  border: 1px solid color-mix(in srgb, var(--m2-sec-container) 50%, transparent);
}

.lb-m2-pill--muted {
  background: color-mix(in srgb, var(--m2-surface-high) 50%, transparent);
  color: var(--m2-on-var);
  border: 1px solid color-mix(in srgb, var(--m2-outline-var) 40%, transparent);
}

.lb-m2-ping-wrap {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  display: inline-flex;
}

.lb-m2-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--m2-sec-container);
  opacity: 0.75;
  animation: lb-m2-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.lb-m2-ping-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--m2-on-sec-container);
}

.lb-m2-pill-text {
  line-height: 1;
}

.lb-m2-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 28rem;
  text-align: center;
}

.lb-m2-hero-title {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--m2-primary);
}

.lb-m2-hero-sub {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--m2-on-var);
}

.lb-m2-council {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--m2-accent, #c9a84c);
  background: color-mix(in srgb, var(--m2-accent, #c9a84c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--m2-accent, #c9a84c) 30%, transparent);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  width: fit-content;
}

.dark .lb-m2-council {
  background: color-mix(in srgb, var(--m2-accent, #c9a84c) 15%, transparent);
  border-color: color-mix(in srgb, var(--m2-accent, #c9a84c) 35%, transparent);
}

.lb-m2-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  border-radius: 0.875rem;
  background: var(--m2-cta-bg);
  color: var(--m2-cta-fg);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px -4px color-mix(in srgb, var(--m2-accent, #00714d) 50%, transparent);
  transition: transform 0.3s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.lb-m2-cta:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 28px -4px color-mix(in srgb, var(--m2-accent, #00714d) 60%, transparent);
}

.lb-m2-cta:active {
  transform: scale(0.98);
}

/* Shimmer animado sobre o botão */
.lb-m2-cta-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 80%
  );
  animation: lb-m2-shimmer 3.5s ease-in-out infinite 1.5s;
  pointer-events: none;
}

@keyframes lb-m2-shimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.lb-m2-cta-icon {
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

/* ── Meta row: endereço + telefone (legado) ── */
.lb-m2-meta-row {
  display: none;
}

/* ── Contato compacto no rodapé (compartilhado entre modelos) ── */
.lb-bottom-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  margin-top: 1rem;
  padding: 0.65rem 0.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--m2-outline-var, #c1c8c4) 22%, transparent);
  text-align: center;
}

.lb-bottom-contact--m2 {
  border-top-color: color-mix(in srgb, var(--m2-outline-var, #c1c8c4) 22%, transparent);
}

.lb-bottom-contact--m5 {
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top-color: color-mix(in srgb, #9ca3af 28%, transparent);
}

.lb-m5-root.dark .lb-bottom-contact--m5 {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-bottom-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--m2-on-var, #6b7280);
  text-decoration: none;
  max-width: 100%;
}

.lb-bottom-contact__address span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 18rem;
}

.lb-bottom-contact__link {
  color: var(--m2-on-sec-container, #00714d);
  font-weight: 600;
  flex-shrink: 0;
}

.lb-bottom-contact__link:hover {
  text-decoration: underline;
}

.lb-bottom-contact__icon {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  opacity: 0.75;
}

.lb-m5-root .lb-bottom-contact__item {
  color: #6b7280;
}

.lb-m5-root.dark .lb-bottom-contact__item {
  color: #9ca3af;
}

.lb-page-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-top: 1rem;
  padding: 0.85rem 0 1.25rem;
  border-top: 1px solid color-mix(in srgb, #9ca3af 28%, transparent);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
}

.lb-page-footer--m5 {
  border-top-color: color-mix(in srgb, #9ca3af 28%, transparent);
}

.lb-m5-root.dark .lb-page-footer--m5 {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-page-footer__muted {
  color: #9ca3af;
}

.lb-m5-root.dark .lb-page-footer__muted {
  color: #6b7280;
}

.lb-page-footer__brand {
  color: #6366f1;
  font-weight: 700;
  text-decoration: none;
}

.lb-m5-root.dark .lb-page-footer__brand {
  color: #818cf8;
}

.lb-page-footer__sep {
  color: #d1d5db;
}

.lb-m5-root.dark .lb-page-footer__sep {
  color: #374151;
}

.lb-page-footer__link {
  color: #9ca3af;
  text-decoration: none;
}

.lb-page-footer__link:hover {
  color: #6b7280;
}

.lb-m5-root.dark .lb-page-footer__link:hover {
  color: #d1d5db;
}

.lb-m2-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--m2-on-var, #414846);
  text-decoration: none;
}

.lb-m2-meta-link {
  color: var(--m2-on-sec-container, #00714d);
  font-weight: 600;
}

.lb-m2-meta-link:hover {
  text-decoration: underline;
}

.lb-m2-meta-icon {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.lb-m2-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lb-m2-quick--single {
  grid-template-columns: 1fr;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.lb-m2-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  background: var(--m2-card);
  border: 1px solid color-mix(in srgb, var(--m2-outline-var) 30%, transparent);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

.lb-m2-quick-card:hover {
  border-color: color-mix(in srgb, var(--m2-on-sec-container) 40%, transparent);
}

.lb-m2-quick-ic {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--m2-on-sec-container);
  margin-bottom: 0.5rem;
  transition: transform 0.2s ease;
}

.lb-m2-quick-card:hover .lb-m2-quick-ic {
  transform: scale(1.1);
}

.lb-m2-quick-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lb-m2-hours {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: var(--m2-surface-low);
  border: 1px solid color-mix(in srgb, var(--m2-outline-var) 25%, transparent);
}

.lb-m2-hours-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.lb-m2-hours-ic {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--m2-primary-container);
  flex-shrink: 0;
}

.lb-m2-root.dark .lb-m2-hours-ic {
  color: var(--m2-on-primary-container);
}

.lb-m2-hours-title {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--m2-primary);
}

.lb-m2-root.dark .lb-m2-hours-title {
  color: var(--m2-on);
}

.lb-m2-hours-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--m2-on-var);
}

.lb-m2-hour-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--m2-outline-var) 22%, transparent);
}

.lb-m2-hour-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lb-m2-hour-label {
  font-weight: 600;
  color: var(--m2-on);
}

.lb-m2-hour-val {
  font-variant-numeric: tabular-nums;
}

.lb-m2-docs-label {
  margin: 0 0 1rem;
  padding-left: 0.15rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m2-on-var);
}

.lb-m2-docs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lb-m2-doc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--m2-card);
  border: 1px solid color-mix(in srgb, var(--m2-outline-var) 15%, transparent);
  box-shadow: var(--m2-shadow);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.lb-m2-doc-card:hover {
  background: color-mix(in srgb, var(--m2-surface-highest) 35%, var(--m2-card));
}

.lb-m2-doc-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.lb-m2-doc-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--m2-surface-high);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lb-m2-doc-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--m2-on-sec-container);
}

.lb-m2-doc-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--m2-primary);
}

.lb-m2-root.dark .lb-m2-doc-name {
  color: var(--m2-on);
}

.lb-m2-doc-chevron {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  color: var(--m2-outline-var);
  transition: color 0.2s ease;
}

.lb-m2-doc-card:hover .lb-m2-doc-chevron {
  color: var(--m2-on-sec-container);
}

.lb-m2-quote-wrap {
  position: relative;
  margin-top: 1rem;
  padding: 0.85rem 1rem 0.65rem;
  border-top: 1px solid color-mix(in srgb, var(--m2-outline-var) 22%, transparent);
  text-align: center;
}

.lb-m2-quote-wrap::before {
  content: '\201C';
  display: block;
  margin-bottom: 0.15rem;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
  color: color-mix(in srgb, var(--m2-accent, #00714d) 45%, transparent);
  pointer-events: none;
  user-select: none;
}

.lb-m2-quote {
  position: relative;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--m2-on-primary-container);
}

.lb-m2-footer {
  margin-top: 0.5rem;
  padding: 1rem 1rem 1.5rem;
  background: transparent;
  border-top: 1px solid color-mix(in srgb, var(--m2-outline-var) 22%, transparent);
}

.lb-m2-root.dark .lb-m2-footer {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-m2-footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .lb-m2-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.lb-m2-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.lb-m2-footer-name {
  font-family: Newsreader, Georgia, serif;
  font-style: italic;
  font-size: 0.875rem;
  color: #1c1917;
}

.lb-m2-root.dark .lb-m2-footer-name {
  color: var(--m2-on);
}

.lb-m2-footer-sep {
  color: #d6d3d1;
}

.lb-m2-footer-by {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8a29e;
}

.lb-m2-root.dark .lb-m2-footer-by {
  color: var(--m2-on-var);
}

.lb-m2-footer-links {
  display: flex;
  gap: 1rem;
}

.lb-m2-footer-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8a29e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lb-m2-footer-link:hover {
  color: #059669;
}

.lb-m2-root.dark .lb-m2-footer-link:hover {
  color: var(--m2-on-sec-container);
}

@keyframes lb-m2-ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.lb-link-card {
  transition: transform 0.15s, background-color 0.15s;
}

.lb-link-card:hover {
  transform: translateY(-2px);
}

.lb-wpp-btn {
  transition: filter 0.15s, transform 0.1s;
}

.lb-wpp-btn:hover {
  filter: brightness(1.07);
}

.lb-wpp-btn:active {
  transform: scale(0.98);
}

.lb-icon-pill {
  cursor: pointer;
  border: none;
  background: transparent;
  transition: opacity 0.15s;
}

.lb-icon-pill:hover {
  opacity: 0.6;
}

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

@keyframes lb-scale-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lb-shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

@keyframes lb-pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.lb-pulse-dot {
  animation: lb-pulse-dot 2s ease-in-out infinite;
}

.lb-anim-scale {
  animation: lb-scale-in 0.5s ease both;
}

.lb-anim-f1 {
  animation: lb-fade-in 0.6s ease both;
}
.lb-anim-f2 {
  animation: lb-fade-in 0.6s 0.1s ease both;
}
.lb-anim-f3 {
  animation: lb-fade-in 0.6s 0.2s ease both;
}
.lb-anim-f4 {
  animation: lb-fade-in 0.6s 0.3s ease both;
}
.lb-anim-f5 {
  animation: lb-fade-in 0.6s 0.4s ease both;
}

/* —— Modelo 3 (Estética premium — Stitch premium aesthetic) —— */
.lb-m3-root {
  --m3-navy: #0a192f;
  --m3-bg: #f9fafb;
  --m3-surface: #ffffff;
  --m3-muted: #4a4a4a;
  --m3-accent: #d4af37;
  --m3-on-accent: #0a192f;
  --m3-premium-shadow: 0 10px 40px -15px rgba(10, 25, 47, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  position: relative;
  min-height: 100vh;
  background: var(--m3-bg);
  color: var(--m3-navy);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.lb-m3-root.dark {
  --m3-navy: #e8edf5;
  --m3-bg: #121212;
  --m3-surface: #151b26;
  --m3-muted: #9ca3af;
  --m3-premium-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.45);
}

.lb-m3-root h1,
.lb-m3-root h2,
.lb-m3-root h3,
.lb-m3p-serif {
  font-family: 'Noto Serif', ui-serif, Georgia, serif;
  letter-spacing: 0.05em;
}

.lb-m3p-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--m3-bg) 82%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid color-mix(in srgb, #78716c 18%, transparent);
}

.lb-m3-root.dark .lb-m3p-topbar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lb-m3p-topbar-inner {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lb-m3p-topbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.lb-m3p-top-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--m3-accent) 35%, transparent);
  padding: 2px;
  background: var(--m3-surface);
}

.lb-m3p-top-logo img {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
}

.lb-m3p-top-logo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--m3-navy);
  background: color-mix(in srgb, var(--m3-accent) 15%, var(--m3-bg));
}

.lb-m3p-topbar-name {
  font-family: 'Noto Serif', ui-serif, Georgia, serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--m3-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-m3p-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lb-m3p-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--m3-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.15s ease;
}

.lb-m3p-icon-btn:hover {
  color: var(--m3-accent);
}

.lb-m3p-icon-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.lb-m3p-main {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-m3p-profile {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

.lb-m3p-avatar-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.lb-m3p-avatar-glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--m3-accent) 12%, transparent);
  transform: scale(1.1);
  filter: blur(24px);
  opacity: 0.5;
  pointer-events: none;
}

.lb-m3p-avatar-ring {
  position: relative;
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  padding: 5px;
  border: 1px solid color-mix(in srgb, var(--m3-accent) 22%, transparent);
  background: var(--m3-surface);
  box-shadow: var(--m3-premium-shadow);
}

.lb-m3p-avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
}

.lb-m3p-avatar-fallback-lg {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--m3-navy);
  background: color-mix(in srgb, var(--m3-accent) 12%, var(--m3-bg));
}

.lb-m3p-kicker {
  margin: 0 0 1rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--m3-accent);
}

.lb-m3p-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--m3-navy);
}

.lb-m3p-tagline {
  margin: 0 0 2rem;
  max-width: 22rem;
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--m3-muted);
}

.lb-m3p-profile:has(.lb-m3p-council) .lb-m3p-tagline {
  margin-bottom: 0.65rem;
}

.lb-m3p-council {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m3-accent);
}

.lb-m3p-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  background: var(--m3-surface);
  border: 1px solid color-mix(in srgb, #78716c 22%, transparent);
  box-shadow: var(--m3-premium-shadow);
}

.lb-m3p-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--m3-accent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--m3-accent) 80%, transparent);
}

.lb-m3p-status-dot.lb-m3p-status-dot--muted {
  animation: none;
  background: #a8a29e;
  box-shadow: none;
}

.lb-m3p-status-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--m3-navy);
}

/* ── Chips de especialidade M3 ── */
.lb-m3p-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.lb-m3p-chip {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  color: var(--m3-accent, #d4af37);
  background: color-mix(in srgb, var(--m3-accent, #d4af37) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--m3-accent, #d4af37) 28%, transparent);
}

.lb-m3p-wa {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 28rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--m3-on-accent);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--m3-accent) 92%, #000),
    var(--m3-accent)
  );
  box-shadow:
    var(--m3-premium-shadow),
    0 4px 20px -4px color-mix(in srgb, var(--m3-accent) 45%, transparent);
  border: 1px solid color-mix(in srgb, var(--m3-accent) 40%, transparent);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
}

.lb-m3p-wa:hover {
  filter: brightness(1.06);
  box-shadow:
    var(--m3-premium-shadow),
    0 6px 28px -4px color-mix(in srgb, var(--m3-accent) 55%, transparent);
}

.lb-m3p-wa:active {
  transform: scale(0.99);
}

.lb-m3p-wa-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 80%
  );
  animation: lb-m2-shimmer 3.5s ease-in-out infinite 2s;
  pointer-events: none;
}

.lb-m3p-wa svg {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.lb-m3p-quick {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 5rem;
}

.lb-m3p-quick--single {
  grid-template-columns: 1fr;
}

.lb-m3p-quick-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 0.75rem;
  border-radius: 0.75rem;
  background: var(--m3-surface);
  border: 1px solid color-mix(in srgb, var(--m3-navy) 10%, transparent);
  box-shadow: var(--m3-premium-shadow);
  text-decoration: none;
  color: var(--m3-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.5s ease;
}

.lb-m3p-quick-card:hover {
  border-color: color-mix(in srgb, var(--m3-accent) 55%, transparent);
}

.lb-m3p-quick-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--m3-accent);
  transition: transform 0.2s ease;
}

.lb-m3p-quick-card:hover svg {
  transform: scale(1.1);
}

.lb-m3p-proc {
  width: 100%;
  margin-bottom: 5rem;
}

.lb-m3p-proc-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.lb-m3p-proc-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--m3-navy);
  white-space: nowrap;
}

.lb-m3p-proc-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e7e5e4, transparent);
}

.lb-m3p-proc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.lb-m3p-proc-card {
  background: var(--m3-surface);
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  box-shadow: var(--m3-premium-shadow);
  border: 1px solid #f5f5f4;
  display: flex;
  align-items: center;
  min-height: 0;
  transition: border-color 0.5s ease;
}

.lb-m3-root.dark .lb-m3p-proc-card {
  border-color: rgba(255, 255, 255, 0.06);
}

.lb-m3p-proc-card:hover {
  border-color: color-mix(in srgb, var(--m3-accent) 35%, transparent);
}

.lb-m3p-proc-text {
  min-width: 0;
  width: 100%;
  text-align: left;
}

.lb-m3p-proc-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--m3-navy);
  overflow-wrap: anywhere;
}

.lb-m3p-hours-wrap {
  width: 100%;
  margin-bottom: 5rem;
}

/* Painel sempre navy (referência Stitch). Não usar --m3-navy: no dark mode essa variável vira cor clara para o resto da página. */
.lb-m3p-hours-card {
  position: relative;
  overflow: hidden;
  background: #0a192f;
  color: #f5f5f4;
  padding: 2.5rem 1.75rem;
  border-radius: 2rem;
  box-shadow: var(--m3-premium-shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-m3-root:not(.dark) .lb-m3p-hours-card {
  border-color: rgba(10, 25, 47, 0.08);
}

.lb-m3p-hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--m3-accent) 8%, transparent);
  transform: translate(35%, -35%);
  filter: blur(40px);
  pointer-events: none;
}

.lb-m3p-hours-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}

.lb-m3p-hours-head svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--m3-accent);
}

.lb-m3p-hours-label {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.lb-m3p-hours-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lb-m3p-hour-li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-m3p-hour-li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.lb-m3p-hour-li.lb-m3p-hour-li--accent-border {
  border-bottom-color: color-mix(in srgb, var(--m3-accent) 22%, transparent);
}

.lb-m3p-hour-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
}

.lb-m3p-hour-day {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(203, 213, 225, 0.88);
}

.lb-m3p-hour-day.lb-m3p-hour-day--today {
  font-weight: 600;
  color: #fff;
}

.lb-m3p-hour-today-badge {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  background: var(--m3-accent);
  color: var(--m3-on-accent);
  margin-left: 0.5rem;
}

.lb-m3p-hour-time {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(248, 250, 252, 0.92);
}

.lb-m3p-hour-time.lb-m3p-hour-time--today {
  font-weight: 700;
  color: var(--m3-accent);
}

.lb-m3p-docs {
  width: 100%;
  margin-bottom: 3rem;
}

.lb-m3p-docs-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lb-m3p-docs-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--m3-accent);
}

.lb-m3p-docs-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--m3-navy);
  padding: 0 0.5rem;
}

.lb-m3p-doc-link {
  display: block;
  background: var(--m3-surface);
  padding: 1.5rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: var(--m3-premium-shadow);
  border: 1px solid #f5f5f4;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.lb-m3-root.dark .lb-m3p-doc-link {
  border-color: rgba(255, 255, 255, 0.06);
}

.lb-m3p-doc-link:hover {
  border-color: color-mix(in srgb, var(--m3-accent) 35%, transparent);
}

.lb-m3p-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lb-m3p-doc-label {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--m3-navy);
}

.lb-m3p-doc-arrow {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: #d6d3d1;
  transition: color 0.2s ease;
}

.lb-m3p-doc-link:hover .lb-m3p-doc-arrow {
  color: var(--m3-navy);
}

.lb-m3p-footer {
  margin-top: 1.25rem;
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid color-mix(in srgb, #78716c 18%, transparent);
  text-align: center;
}

.lb-m3p-footer-inner {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lb-m3p-footer-brand {
  margin: 0;
  font-family: 'Noto Serif', serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--m3-navy);
}

.lb-m3p-footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.lb-m3p-footer-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a29e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lb-m3p-footer-link:hover {
  color: var(--m3-accent);
}

.lb-m3p-footer-by {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a29e;
}

.lb-m3p-footer-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.lb-m3p-footer-icons svg {
  width: 1.35rem;
  height: 1.35rem;
  color: #d6d3d1;
}
/* —— Modelo 4: Odontologia (referência Stitch dental bio) —— */
.lb-d4-root {
  --d4-bg: #f9fafb;
  --d4-on: #0b1c30;
  --d4-on-var: #42474f;
  --d4-outline: #727780;
  --d4-surface: #ffffff;
  --d4-surface-high: #dce9ff;
  --d4-surface-low: #eff4ff;
  --d4-container: #0f4c81;
  --d4-primary: #00355f;
  --d4-on-primary: #ffffff;
  --d4-tertiary-fixed: #71f8e4;
  --d4-on-tertiary-fixed: #00201c;
  --d4-secondary: #585f64;
  --d4-footer-bg: #f8fafc;
  --d4-footer-muted: #64748b;
  --d4-container-rgb: 15,76,129;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  position: relative;
  background: var(--d4-bg);
  color: var(--d4-on);
  min-height: 100vh;
}

.lb-d4-root.dark {
  --d4-bg: #121212;
  --d4-on: #eaf1ff;
  --d4-on-var: #94a3b8;
  --d4-outline: #64748b;
  --d4-surface: rgba(255, 255, 255, 0.04);
  --d4-surface-high: rgba(30, 58, 95, 0.45);
  --d4-surface-low: rgba(255, 255, 255, 0.06);
  --d4-footer-bg: #020617;
  --d4-footer-muted: #94a3b8;
}

.lb-d4-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--d4-surface) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--d4-container) 12%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lb-d4-root.dark .lb-d4-header {
  background: rgba(15, 23, 42, 0.88);
  border-bottom-color: rgba(51, 65, 85, 0.6);
}

.lb-d4-header-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 0;
}

.lb-d4-header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.lb-d4-header-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid var(--d4-surface-high);
  flex-shrink: 0;
  background: var(--d4-surface-low);
}

.lb-d4-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-d4-header-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: Manrope, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--d4-container);
}

.lb-d4-header-name {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 3.2vw, 1.125rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--d4-container);
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.lb-d4-root.dark .lb-d4-header-name {
  color: #93c5fd;
}

.lb-d4-header-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lb-d4-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: none;
  background: color-mix(in srgb, var(--d4-container) 8%, transparent);
  color: var(--d4-container);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.lb-d4-root.dark .lb-d4-icon-btn {
  color: #93c5fd;
  background: rgba(255, 255, 255, 0.08);
}

.lb-d4-icon-btn:hover {
  opacity: 0.75;
}

.lb-d4-icon-btn svg {
  width: 15px;
  height: 15px;
}

.lb-d4-main {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lb-d4-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lb-d4-hero-photo-wrap {
  position: relative;
  width: 8rem;
  height: 8rem;
}

/* Glow pulsante atrás do avatar */
.lb-d4-hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -0.75rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(var(--d4-container-rgb, 15,76,129), 0.22) 0%, transparent 70%);
  animation: lb-m2-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.lb-d4-hero-photo-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  overflow: hidden;
  border: 4px solid var(--d4-surface);
  box-shadow:
    0 20px 40px -12px rgba(var(--d4-container-rgb, 15,76,129), 0.3),
    0 0 0 2px color-mix(in srgb, var(--d4-container) 22%, transparent);
}

.lb-d4-hero-photo,
.lb-d4-hero-photo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--d4-surface-low);
  color: var(--d4-container);
}

.lb-d4-hero-dot {
  position: absolute;
  bottom: 0.25rem;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--d4-tertiary-fixed);
  border: 4px solid var(--d4-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.lb-d4-hero-title {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--d4-on);
}

.lb-d4-hero-sub {
  margin: 0;
  max-width: 20rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--d4-on-var);
}

.lb-d4-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: var(--d4-surface-high);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--d4-primary) 85%, var(--d4-on));
}

.lb-d4-verified-ic {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--d4-container);
}

.lb-d4-cta-wrap {
  margin-top: -0.5rem;
}

.lb-d4-cta-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--d4-on-cta);
  background: linear-gradient(135deg, var(--d4-primary) 0%, var(--d4-container) 100%);
  box-shadow: 0 12px 32px rgba(var(--d4-container-rgb), 0.28);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.2s;
}

.lb-d4-cta-primary:hover {
  transform: scale(0.99);
  box-shadow: 0 8px 28px rgba(var(--d4-container-rgb), 0.38);
}

.lb-d4-cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.lb-d4-cta-primary:hover .lb-d4-cta-shine {
  opacity: 1;
}

.lb-d4-cta-cal {
  width: 1.35rem;
  height: 1.35rem;
  position: relative;
  z-index: 1;
}

.lb-d4-cta-label {
  position: relative;
  z-index: 1;
}

.lb-d4-cta-chev {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-left: 0.25rem;
  opacity: 0.9;
}

.lb-d4-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lb-d4-section-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d4-outline);
  padding-left: 0.15rem;
}

.lb-d4-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lb-d4-bento-sm {
  background: var(--d4-surface);
  border: 1px solid color-mix(in srgb, var(--d4-primary) 6%, transparent);
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 3.75rem;
}

.lb-d4-root.dark .lb-d4-bento-sm {
  border-color: rgba(148, 163, 184, 0.12);
}

.lb-d4-bento-wide {
  grid-column: 1 / -1;
  background: var(--d4-surface);
  border: 1px solid color-mix(in srgb, var(--d4-primary) 6%, transparent);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lb-d4-root.dark .lb-d4-bento-wide {
  border-color: rgba(148, 163, 184, 0.12);
}

.lb-d4-bento-title {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--d4-on);
}

.lb-d4-doc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lb-d4-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  background: var(--d4-surface);
  border: 1px solid color-mix(in srgb, var(--d4-primary) 6%, transparent);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.lb-d4-doc-row:hover {
  border-color: color-mix(in srgb, var(--d4-container) 22%, transparent);
  background: var(--d4-surface-low);
}

.lb-d4-doc-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--d4-on);
  min-width: 0;
}

.lb-d4-doc-chev {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--d4-outline);
  opacity: 0.75;
  transition:
    color 0.15s,
    opacity 0.15s;
}

.lb-d4-doc-row:hover .lb-d4-doc-chev {
  color: var(--d4-container);
  opacity: 1;
}

.lb-d4-triptych {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lb-d4-conv-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--d4-surface-high) 50%, var(--d4-bg));
}

.lb-d4-card-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--d4-primary) 70%, var(--d4-on));
}

.lb-d4-conv-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--d4-container);
}

.lb-d4-mod-card {
  background: var(--d4-surface);
  border: 1px solid color-mix(in srgb, var(--d4-primary) 6%, transparent);
  border-radius: 0.75rem;
  padding: 0.25rem 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lb-d4-mod-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--d4-primary) 5%, transparent);
}

.lb-d4-mod-row:last-child {
  border-bottom: none;
}

.lb-d4-mod-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.lb-d4-mod-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--d4-container) 10%, var(--d4-surface));
  color: var(--d4-container);
}

.lb-d4-mod-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.lb-d4-mod-copy {
  min-width: 0;
}

.lb-d4-mod-title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--d4-on);
}

.lb-d4-mod-sub {
  margin: 0.1rem 0 0;
  font-size: 0.6875rem;
  color: color-mix(in srgb, var(--d4-on) 55%, transparent);
}

.lb-d4-mod-badge {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: var(--d4-container);
  background: color-mix(in srgb, var(--d4-container) 12%, var(--d4-surface));
}

.lb-d4-mod-badge--off {
  color: color-mix(in srgb, var(--d4-on) 45%, transparent);
  background: color-mix(in srgb, var(--d4-on) 8%, var(--d4-surface));
}

.lb-d4-hours-card {
  background: var(--d4-surface);
  border: 1px solid color-mix(in srgb, var(--d4-primary) 6%, transparent);
  border-radius: 0.75rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lb-d4-hours-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--d4-container);
}

.lb-d4-hours-ic {
  width: 1.25rem;
  height: 1.25rem;
}

.lb-d4-hours-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lb-d4-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.lb-d4-hours-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--d4-outline);
  margin-bottom: 0.15rem;
}

.lb-d4-hours-val {
  font-weight: 600;
  color: var(--d4-on);
}

.lb-d4-map-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 8rem;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--d4-on-cta);
  background: var(--d4-container);
  border: 1px solid color-mix(in srgb, var(--d4-container) 65%, var(--d4-primary) 35%);
  box-shadow: 0 1px 3px rgba(var(--d4-container-rgb), 0.2);
  transition:
    filter 0.15s,
    box-shadow 0.15s;
}

.lb-d4-map-card:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 14px rgba(var(--d4-container-rgb), 0.28);
}

.lb-d4-map-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lb-d4-map-kicker {
  margin: 0 0 0.15rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.lb-d4-map-addr {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.lb-d4-map-dir {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  opacity: 0.95;
}

.lb-d4-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.lb-d4-soc-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--d4-primary) 6%, transparent);
  color: var(--d4-container);
  transition: background 0.15s;
  overflow: visible;
}

.lb-d4-soc-btn:hover {
  background: color-mix(in srgb, var(--d4-primary) 12%, transparent);
}

.lb-d4-soc-svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: block;
  fill: currentColor;
  overflow: visible;
}

.lb-d4-footer {
  background: transparent;
  border-top: 1px solid color-mix(in srgb, var(--d4-container) 10%, transparent);
  padding: 1rem 1.25rem 1.5rem;
  margin-top: 0.5rem;
}

.lb-d4-root.dark .lb-d4-footer {
  border-top-color: rgba(51, 65, 85, 0.5);
}

.lb-d4-footer-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
}

.lb-d4-footer-copy {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 0.75rem;
  color: var(--d4-footer-muted);
  line-height: 1.5;
}

.lb-d4-footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.lb-d4-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: Manrope, sans-serif;
  font-size: 0.75rem;
  color: var(--d4-footer-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.lb-d4-footer-chev {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.lb-d4-footer-link:hover {
  color: var(--d4-container);
}

/* —— Modelo 5 —— */
.lb-m5-root {
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  min-height: 100vh;
  background: #f9fafb;
}

.lb-m5-root.dark {
  background: #121212;
}

.lb-m5-cover {
  background: var(--m5-cover-bg, #1e1b4b);
  position: relative;
  overflow: hidden;
}

.lb-m5-cover::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 2rem;
  background: rgba(var(--m5-cover-glow, 99,102,241), 0.2);
  animation: lb-m5-float-a 8s ease-in-out infinite;
}

.lb-m5-cover::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 40%;
  width: 160px;
  height: 160px;
  border-radius: 2rem;
  background: rgba(var(--m5-cover-glow, 99,102,241), 0.12);
  animation: lb-m5-float-b 10s ease-in-out infinite 1s;
}

@keyframes lb-m5-float-a {
  0%, 100% { transform: rotate(-15deg) translate(0, 0) scale(1); }
  50% { transform: rotate(-8deg) translate(-12px, 12px) scale(1.06); }
}

@keyframes lb-m5-float-b {
  0%, 100% { transform: rotate(12deg) translate(0, 0) scale(1); }
  50% { transform: rotate(6deg) translate(10px, -8px) scale(1.04); }
}

.lb-pro-avatar {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.lb-pro-card {
  transition:
    transform 0.15s,
    border-color 0.15s;
}

.lb-pro-card:hover {
  transform: translateY(-2px);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&display=swap');

:host {
  display: block;
}

@keyframes lb-m2-shimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.lb-m6-root {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  /* Fallbacks = tema veterinário padrão antes do ngStyle */
  --m6-accent: #0f4d35;
  --m6-on-accent: #fafafa;
  --m6-accent-mid: #1f6b4a;
  --m6-on-accent-mid: #fafafa;
  --m6-accent-soft: #cfe4d8;
  --m6-accent-faint: #f4f7f4;
  --m6-text-body: #1a2b22;
  --m6-text-muted: #5b6b62;
  --m6-border-light: #e3ece6;
  --m6-paw-dark: #0a2a1c;
  --m6-page-bg: #f9fafb;
  --m6-page-dark: #121212;
  --m6-text-on-dark: #5fd29a;
  --m6-root-text-dark: #d8e8de;
  --m6-chip-dark-bg: #0d2e1a;
  --m6-chip-dark-border: #1e7d47;
  --m6-wa-hover: #155d30;
  --m6-accent-rgb: 15, 77, 53;
  /* Acento dourado fixo (detalhe premium discreto) */
  --m6-gold: #b48a4a;
  --m6-gold-soft: rgba(180, 138, 74, 0.55);

  background: var(--m6-page-bg);
  color: var(--m6-text-body);
  min-height: 100vh;
  letter-spacing: -0.005em;
}

/* Tipografia premium para títulos do hero */
.lb-m6-title {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
}

/* Divisor dourado fino sob o nome — selo silencioso de identidade */
.lb-m6-divider-gold {
  width: 32px;
  height: 1px;
  background: var(--m6-gold);
  opacity: 0.85;
}

.lb-m6-kicker {
  font-feature-settings: 'cpsp';
}

.lb-m6-tagline {
  font-style: italic;
  font-weight: 400;
}

.lb-m6-root.dark {
  background: var(--m6-page-dark);
  color: var(--m6-root-text-dark);
}

.lb-m6-paw-bg {
  background-color: var(--m6-accent);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cellipse cx='14' cy='8' rx='3' ry='4'/%3E%3Cellipse cx='26' cy='8' rx='3' ry='4'/%3E%3Cellipse cx='8' cy='16' rx='4' ry='3'/%3E%3Cellipse cx='32' cy='16' rx='4' ry='3'/%3E%3Cellipse cx='20' cy='24' rx='8' ry='9'/%3E%3C/g%3E%3C/svg%3E");
}

.lb-m6-root.dark .lb-m6-paw-bg {
  background-color: var(--m6-paw-dark);
}

.lb-m6-pet-ring {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 9999px;
  overflow: hidden;
  background: var(--m6-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  /* Anel duplo + glow pulsante */
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.92),
    0 0 0 5px rgba(var(--m6-accent-rgb), 0.22),
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 0 22px rgba(var(--m6-accent-rgb), 0.22);
  animation: lb-m6-ring-pulse 3s ease-in-out infinite;
}

@keyframes lb-m6-ring-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255,255,255,0.92), 0 0 0 5px rgba(var(--m6-accent-rgb),0.22), 0 8px 32px rgba(0,0,0,0.14), 0 0 22px rgba(var(--m6-accent-rgb),0.22); }
  50% { box-shadow: 0 0 0 2px rgba(255,255,255,0.95), 0 0 0 8px rgba(var(--m6-accent-rgb),0.14), 0 8px 32px rgba(0,0,0,0.14), 0 0 38px rgba(var(--m6-accent-rgb),0.32); }
}

.lb-m6-root.dark .lb-m6-pet-ring {
  background: rgba(var(--m6-accent-rgb), 0.45);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.18),
    0 0 0 5px rgba(var(--m6-accent-rgb), 0.3),
    0 8px 22px rgba(0, 0, 0, 0.45);
}

.lb-m6-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid transparent;
  letter-spacing: 0.005em;
}

.lb-m6-chip-active {
  background: var(--m6-accent-faint);
  color: var(--m6-accent);
  border-color: var(--m6-accent-soft);
}

.lb-m6-chip-inactive {
  background: transparent;
  color: var(--m6-text-muted);
  border-color: var(--m6-border-light);
  opacity: 0.85;
}

.lb-m6-root.dark .lb-m6-chip-active {
  background: rgba(var(--m6-accent-rgb), 0.18);
  color: var(--m6-text-on-dark);
  border-color: rgba(var(--m6-accent-rgb), 0.35);
}

.lb-m6-root.dark .lb-m6-chip-inactive {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}

.lb-m6-svc {
  border-radius: 12px;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--m6-border-light);
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.lb-m6-svc:hover {
  border-color: var(--m6-accent);
  background: var(--m6-accent-faint);
}

.lb-m6-root.dark .lb-m6-svc {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(var(--m6-accent-rgb), 0.12);
}

.lb-m6-doc {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lb-m6-doc:hover {
  border-color: var(--m6-accent);
}

.lb-m6-root.dark .lb-m6-doc:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lb-m6-wpp {
  position: relative;
  overflow: hidden;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(var(--m6-accent-rgb), 0.28);
}

.lb-m6-wpp:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 32px rgba(var(--m6-accent-rgb), 0.4);
}

.lb-m6-wpp::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 80%
  );
  animation: lb-m2-shimmer 3.5s ease-in-out infinite 2.5s;
  pointer-events: none;
}

.lb-m6-sec {
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lb-m6-section-label {
  color: var(--m6-accent);
}

.lb-m6-root.dark .lb-m6-section-label {
  color: var(--m6-text-on-dark);
}

.lb-m6-section-rule {
  background: var(--m6-border-light);
}

.lb-m6-root.dark .lb-m6-section-rule {
  background: rgba(255, 255, 255, 0.06);
}

.lb-m6-outline-cta {
  border-color: var(--m6-border-light);
  color: var(--m6-accent);
}

.lb-m6-root.dark .lb-m6-outline-cta {
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--m6-text-on-dark);
}

.lb-m6-outline-cta:hover {
  background: var(--m6-accent-faint);
}

.lb-m6-root.dark .lb-m6-outline-cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lb-m6-card-border {
  border-color: var(--m6-border-light);
}

.lb-m6-root.dark .lb-m6-card-border {
  border-color: rgba(255, 255, 255, 0.05);
}

.lb-m6-hour-row-border {
  border-color: var(--m6-accent-faint);
}

.lb-m6-root.dark .lb-m6-hour-row-border {
  border-color: rgba(255, 255, 255, 0.04);
}

.lb-m6-hours-value {
  color: var(--m6-accent-mid);
}

.lb-m6-root.dark .lb-m6-hours-value {
  color: var(--m6-text-on-dark);
}

.lb-m6-svc-title {
  color: var(--m6-text-body);
}

.lb-m6-root.dark .lb-m6-svc-title {
  color: var(--m6-accent-soft);
}

.lb-m6-doc-icon-wrap {
  background: var(--m6-accent-faint);
}

.lb-m6-root.dark .lb-m6-doc-icon-wrap {
  background: rgba(var(--m6-accent-rgb), 0.2);
}

.lb-m6-doc:hover .lb-m6-doc-chevron {
  color: var(--m6-text-on-dark);
}

.lb-m6-doc-file-icon {
  color: var(--m6-accent-mid);
}

.lb-m6-icon-accent {
  color: var(--m6-accent-mid);
}

.lb-m6-root.dark .lb-m6-icon-accent {
  color: var(--m6-text-on-dark);
}

.lb-m6-footer-border {
  border-color: var(--m6-border-light);
}

.lb-m6-root.dark .lb-m6-footer-border {
  border-color: rgba(255, 255, 255, 0.05);
}

.lb-m6-footer-dot {
  background: var(--m6-accent-mid);
}

.lb-m6-footer-brand {
  color: var(--m6-accent-mid);
}

.lb-m6-open-dot {
  background: var(--m6-accent-soft);
}

.lb-m6-wa-btn {
  background: var(--m6-accent-mid);
  color: var(--m6-on-accent-mid);
}

.lb-m6-wa-btn:hover {
  background: var(--m6-wa-hover);
}

.lb-m6-icon-pill {
  cursor: pointer;
  border: none;
  background: transparent;
  transition: opacity 0.15s;
}

.lb-m6-icon-pill:hover {
  opacity: 0.6;
}

@keyframes lb-m6-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.lb-m6-pulse-dot {
  animation: lb-m6-pulse 2s ease-in-out infinite;
}

@keyframes lb-m6-bounce2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.lb-m6-bounce {
  animation: lb-m6-bounce2 2.6s ease-in-out infinite;
}

@keyframes lb-m6-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lb-m6-a1 {
  animation: lb-m6-fade-up 0.4s ease both;
}
.lb-m6-a2 {
  animation: lb-m6-fade-up 0.4s 0.08s ease both;
}
.lb-m6-a3 {
  animation: lb-m6-fade-up 0.4s 0.16s ease both;
}
.lb-m6-a4 {
  animation: lb-m6-fade-up 0.4s 0.24s ease both;
}
.lb-m6-a5 {
  animation: lb-m6-fade-up 0.4s 0.32s ease both;
}

/* ----------- Seção "Resultados de exames" (mesmo ritmo que Espécies / Serviços) ----------- */
.lb-m6-exam-intro {
  color: var(--m6-text-muted);
}

.lb-m6-root.dark .lb-m6-exam-intro {
  color: rgba(216, 232, 222, 0.72);
}

/* CTA principal da seção — leitura de “chip ativo” ampliado */
.lb-m6-exam-cta {
  background: #fff;
  border: 1px solid var(--m6-accent-soft);
  box-shadow: 0 0 0 1px rgba(var(--m6-accent-rgb), 0.08);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lb-m6-exam-cta:hover {
  border-color: var(--m6-accent);
  background: var(--m6-accent-faint);
  box-shadow: 0 0 0 1px rgba(var(--m6-accent-rgb), 0.12);
}

.lb-m6-exam-cta-icon {
  background: var(--m6-accent-faint);
  color: var(--m6-accent);
  border: 1px solid var(--m6-border-light);
}

.lb-m6-exam-cta-title {
  color: var(--m6-text-body);
  letter-spacing: -0.01em;
}

.lb-m6-exam-cta-hint {
  color: var(--m6-text-muted);
}

.lb-m6-exam-cta-chevron {
  color: var(--m6-text-muted);
}

.lb-m6-root.dark .lb-m6-exam-cta {
  background: rgba(var(--m6-accent-rgb), 0.14);
  border-color: rgba(var(--m6-accent-rgb), 0.35);
  box-shadow: none;
}

.lb-m6-root.dark .lb-m6-exam-cta:hover {
  background: rgba(var(--m6-accent-rgb), 0.22);
  border-color: rgba(var(--m6-text-on-dark), 0.45);
}

.lb-m6-root.dark .lb-m6-exam-cta-icon {
  background: rgba(var(--m6-accent-rgb), 0.28);
  color: var(--m6-text-on-dark);
  border-color: rgba(var(--m6-accent-rgb), 0.4);
}

.lb-m6-root.dark .lb-m6-exam-cta-title {
  color: #eef6f1;
}

.lb-m6-root.dark .lb-m6-exam-cta-hint {
  color: rgba(216, 232, 222, 0.55);
}

.lb-m6-root.dark .lb-m6-exam-cta-chevron {
  color: rgba(216, 232, 222, 0.45);
}

/* ----------- Foco acessível ----------- */
.lb-m6-root a:focus-visible,
.lb-m6-root button:focus-visible {
  outline: 2px solid var(--m6-gold);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ----------- Reduced motion ----------- */
@media (prefers-reduced-motion: reduce) {
  .lb-m6-a1,
  .lb-m6-a2,
  .lb-m6-a3,
  .lb-m6-a4,
  .lb-m6-a5,
  .lb-m6-bounce,
  .lb-m6-pulse-dot {
    animation: none !important;
  }

  .lb-m6-svc,
  .lb-m6-doc,
  .lb-m6-exam-cta,
  .lb-m6-wpp,
  .lb-m6-sec,
  .lb-m6-outline-cta {
    transition: none !important;
  }
}

/* Rodapé compacto */
.lb-bottom-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  margin-top: 0.85rem;
  padding: 0.65rem 0.25rem 0;
  border-top: 1px solid var(--m6-border-light);
  text-align: center;
}

.lb-m6-root.dark .lb-bottom-contact--m6 {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-bottom-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--m6-text-muted);
  text-decoration: none;
  max-width: 100%;
}

.lb-bottom-contact__address span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 18rem;
}

.lb-bottom-contact__icon {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  opacity: 0.75;
  color: var(--m6-accent-mid);
}

.lb-page-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-top: 1rem;
  padding: 0.85rem 0 1.25rem;
  border-top: 1px solid var(--m6-border-light);
  font-size: 0.6875rem;
}

.lb-m6-root.dark .lb-page-footer--m6 {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-page-footer__muted {
  color: var(--m6-text-muted);
}

.lb-page-footer__brand {
  font-weight: 700;
  text-decoration: none;
}

.lb-page-footer__brand.lb-m6-footer-brand {
  color: var(--m6-accent-mid);
}

.lb-m6-root.dark .lb-page-footer__brand.lb-m6-footer-brand {
  color: var(--m6-text-on-dark);
}

.lb-page-footer__sep {
  color: color-mix(in srgb, var(--m6-text-muted) 50%, transparent);
}

.lb-page-footer__link {
  color: var(--m6-text-muted);
  text-decoration: none;
}

.lb-page-footer__link:hover {
  color: var(--m6-accent-mid);
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:host {
  display: block;
}

.lb-p7-root {
  /* Base da marca (sobrescritos por [ngStyle]="themeVarsP7()") */
  --p7-accent: #007bb9;
  --p7-on-accent: #ffffff;
  --p7-accent-soft: #53c4ff;
  --p7-accent-deep: #005a8a;
  --p7-header-bg-dark: #0c2a3d;
  --p7-on-header-dark: #f0f9ff;
  --p7-accent-rgb: 0, 123, 185;

  --p7-bg: #f9fafb;
  --p7-surface: #ffffff;
  --p7-on-surface: #0b1c30;
  --p7-muted: #4a6a8a;
  --p7-primary: var(--p7-accent-deep);
  --p7-primary-container: var(--p7-accent);
  --p7-on-primary: var(--p7-on-accent);
  --p7-secondary-container: var(--p7-accent-soft);
  --p7-outline: #d0e4f0;
  --p7-tertiary-fixed: #ffdbca;
  --p7-on-tertiary-fixed: #5c1a00;
  --p7-footer-bg: #f1f5f9;
  --p7-footer-text: #64748b;
  --p7-footer-name: var(--p7-accent-deep);
  --p7-shadow: 0 10px 40px -10px rgba(var(--p7-accent-rgb), 0.14);
  --p7-radius: 1rem;
  --p7-radius-lg: 1.25rem;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  position: relative;
  background: var(--p7-bg);
  color: var(--p7-on-surface);
  min-height: 100vh;
}

.lb-p7-root.dark {
  --p7-bg: #121212;
  --p7-surface: rgba(255, 255, 255, 0.04);
  --p7-on-surface: #e2e8f0;
  --p7-muted: #94a3b8;
  --p7-primary: var(--p7-accent-soft);
  --p7-primary-container: var(--p7-accent);
  --p7-on-primary: var(--p7-on-accent);
  --p7-secondary-container: var(--p7-accent-soft);
  --p7-outline: rgba(148, 163, 184, 0.2);
  --p7-tertiary-fixed: rgba(251, 146, 60, 0.15);
  --p7-on-tertiary-fixed: #fed7aa;
  --p7-footer-bg: #020617;
  --p7-footer-text: #64748b;
  --p7-footer-name: var(--p7-accent-soft);
  --p7-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.45);
}

.lb-p7-root h1,
.lb-p7-root h2,
.lb-p7-root h3,
.lb-p7-lexend {
  font-family: 'Lexend', ui-sans-serif, system-ui, sans-serif;
}

/* Toolbar flutuante (tema + compartilhar) */
.lb-p7-float-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.lb-p7-float-toolbar .lb-p7-icon-btn {
  background: color-mix(in srgb, var(--p7-on-surface) 6%, transparent);
  color: var(--p7-on-surface);
  border: 1px solid color-mix(in srgb, var(--p7-on-surface) 10%, transparent);
}

.lb-p7-float-toolbar .lb-p7-icon-btn:hover {
  background: color-mix(in srgb, var(--p7-on-surface) 12%, transparent);
}

.lb-p7-root.dark .lb-p7-float-toolbar .lb-p7-icon-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--p7-on-header-dark);
  border-color: rgba(255, 255, 255, 0.14);
}

.lb-p7-root.dark .lb-p7-float-toolbar .lb-p7-icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Header (legado — removido do template) */
.lb-p7-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--p7-primary-container);
  color: var(--p7-on-primary);
  box-shadow: 0 4px 20px rgba(var(--p7-accent-rgb), 0.22);
}

.lb-p7-root.dark .lb-p7-header {
  background: var(--p7-header-bg-dark);
  color: var(--p7-on-header-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.lb-p7-header-inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.lb-p7-header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.lb-p7-header-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--p7-on-primary) 18%, transparent);
  border: 2px solid color-mix(in srgb, var(--p7-on-primary) 32%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  overflow: hidden;
}

.lb-p7-header-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-p7-header-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-p7-header-actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lb-p7-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: none;
  background: color-mix(in srgb, var(--p7-on-primary) 12%, transparent);
  color: var(--p7-on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.lb-p7-icon-btn:hover {
  background: color-mix(in srgb, var(--p7-on-primary) 22%, transparent);
}

.lb-p7-root.dark .lb-p7-icon-btn {
  color: var(--p7-on-header-dark);
  background: color-mix(in srgb, var(--p7-on-header-dark) 12%, transparent);
}

.lb-p7-root.dark .lb-p7-icon-btn:hover {
  background: color-mix(in srgb, var(--p7-on-header-dark) 22%, transparent);
}

.lb-p7-root.dark .lb-p7-header-avatar {
  background: color-mix(in srgb, var(--p7-on-header-dark) 16%, transparent);
  border-color: color-mix(in srgb, var(--p7-on-header-dark) 30%, transparent);
}

.lb-p7-icon-btn svg {
  width: 15px;
  height: 15px;
}

/* Main */
.lb-p7-main {
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
}

.lb-p7-hero {
  text-align: center;
  padding-bottom: 0.5rem;
}

.lb-p7-hero-photo-wrap {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1rem;
}

.lb-p7-hero-photo-ring {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  padding: 4px;
  background: linear-gradient(135deg, var(--p7-secondary-container), var(--p7-primary-container));
  box-shadow:
    var(--p7-shadow),
    0 0 0 4px color-mix(in srgb, var(--p7-primary-container) 30%, transparent),
    0 0 32px rgba(var(--p7-accent-rgb, 37,99,235), 0.25);
  animation: lb-p7-ring-glow 3.5s ease-in-out infinite;
}

@keyframes lb-p7-ring-glow {
  0%, 100% { box-shadow: var(--p7-shadow), 0 0 0 4px color-mix(in srgb, var(--p7-primary-container) 30%, transparent), 0 0 32px rgba(var(--p7-accent-rgb, 37,99,235), 0.25); }
  50% { box-shadow: var(--p7-shadow), 0 0 0 7px color-mix(in srgb, var(--p7-primary-container) 20%, transparent), 0 0 48px rgba(var(--p7-accent-rgb, 37,99,235), 0.38); }
}

.lb-p7-hero-photo,
.lb-p7-hero-photo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  object-fit: cover;
  background: var(--p7-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--p7-primary);
}

.lb-p7-root.dark .lb-p7-hero-photo,
.lb-p7-root.dark .lb-p7-hero-photo-fallback {
  background: rgba(15, 23, 42, 0.9);
  color: var(--p7-accent-soft);
}

.lb-p7-verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--p7-secondary-container);
  border: 3px solid var(--p7-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p7-on-primary);
}

.lb-p7-verified-ic {
  width: 12px;
  height: 12px;
}

.lb-p7-hero-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p7-primary);
}

.lb-p7-hero-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--p7-on-surface);
}

.lb-p7-hero-sub {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--p7-muted);
  font-weight: 500;
}

.lb-p7-status {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lb-p7-status-open {
  color: #059669;
}

.lb-p7-root.dark .lb-p7-status-open {
  color: #34d399;
}

.lb-p7-status-closed {
  color: var(--p7-muted);
}

.lb-p7-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #22c55e;
  animation: lb-p7-pulse 2s ease-in-out infinite;
}

@keyframes lb-p7-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.lb-p7-council {
  margin: 0;
  font-size: 0.7rem;
  color: var(--p7-muted);
  font-weight: 600;
}

/* CTAs */
.lb-p7-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.lb-p7-cta-primary,
.lb-p7-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--p7-radius-lg);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: transform 0.12s, filter 0.12s, box-shadow 0.12s;
}

.lb-p7-cta-primary {
  position: relative;
  overflow: hidden;
  background: var(--p7-primary-container);
  color: var(--p7-on-primary);
  box-shadow: 0 8px 28px rgba(var(--p7-accent-rgb, 37,99,235), 0.38);
}

.lb-p7-cta-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(var(--p7-accent-rgb, 37,99,235), 0.48);
}

/* Shimmer no CTA principal do P7 */
.lb-p7-cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 80%
  );
  animation: lb-p7-shimmer 4s ease-in-out infinite 2s;
  pointer-events: none;
}

@keyframes lb-p7-shimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.lb-p7-cta-secondary {
  background: var(--p7-surface);
  color: var(--p7-primary);
  border: 1px solid var(--p7-outline);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lb-p7-root.dark .lb-p7-cta-secondary {
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: none;
}

.lb-p7-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lb-p7-cta-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.lb-p7-cta-ic {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.lb-p7-cta-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-p7-cta-chevron {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Alert */
.lb-p7-alert {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--p7-radius);
  background: var(--p7-tertiary-fixed);
  color: var(--p7-on-tertiary-fixed);
  border: 1px solid rgba(220, 120, 80, 0.25);
}

.lb-p7-alert-ic {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.lb-p7-alert-title {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lb-p7-alert-body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 600;
  opacity: 0.95;
}

/* Bento especialidades */
.lb-p7-spec {
  margin-top: 1.75rem;
}

.lb-p7-spec-heading {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lb-p7-bento {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lb-p7-bento-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-radius: var(--p7-radius-lg);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--p7-accent) 11%, white) 0%,
    color-mix(in srgb, var(--p7-accent-soft) 24%, white) 100%
  );
  border: 1px solid color-mix(in srgb, var(--p7-accent-soft) 42%, white);
  min-height: 5.5rem;
}

.lb-p7-root.dark .lb-p7-bento-wide[data-theme='sky'] {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--p7-accent) 22%, transparent),
    color-mix(in srgb, var(--p7-accent-soft) 12%, transparent)
  );
  border-color: color-mix(in srgb, var(--p7-accent-soft) 38%, transparent);
}

.lb-p7-bento-wide[data-theme='lemon'] {
  background: linear-gradient(135deg, #fef9c3, #fef08a);
  border-color: #eab308;
}

.lb-p7-root.dark .lb-p7-bento-wide[data-theme='lemon'] {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(202, 138, 4, 0.12));
  border-color: rgba(250, 204, 21, 0.35);
}

.lb-p7-bento-wide[data-theme='coral'] {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
  border-color: #fb7185;
}

.lb-p7-root.dark .lb-p7-bento-wide[data-theme='coral'] {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(225, 29, 72, 0.12));
  border-color: rgba(251, 113, 133, 0.4);
}

.lb-p7-bento-wide-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--p7-accent-deep);
}

.lb-p7-root.dark .lb-p7-bento-wide-title {
  color: color-mix(in srgb, var(--p7-accent-soft) 88%, white);
}

.lb-p7-bento-wide-sub {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--p7-primary-container) 78%, var(--p7-on-surface) 22%);
}

.lb-p7-root.dark .lb-p7-bento-wide-sub {
  color: color-mix(in srgb, var(--p7-accent-soft) 75%, var(--p7-on-surface) 25%);
}

.lb-p7-bento-emoji-lg {
  font-size: 2.5rem;
  line-height: 1;
}

.lb-p7-bento-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lb-p7-bento-cell {
  border-radius: var(--p7-radius-lg);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--p7-outline);
  background: var(--p7-surface);
}

.lb-p7-root.dark .lb-p7-bento-cell {
  background: rgba(255, 255, 255, 0.04);
}

.lb-p7-bento-cell[data-theme='sky'] {
  background: color-mix(in srgb, var(--p7-accent) 7%, white);
  border-color: color-mix(in srgb, var(--p7-accent-soft) 35%, white);
}

.lb-p7-root.dark .lb-p7-bento-cell[data-theme='sky'] {
  background: color-mix(in srgb, var(--p7-accent) 16%, transparent);
  border-color: color-mix(in srgb, var(--p7-accent-soft) 32%, transparent);
}

.lb-p7-bento-cell[data-theme='lemon'] {
  background: #fffbeb;
  border-color: #fde68a;
}

.lb-p7-root.dark .lb-p7-bento-cell[data-theme='lemon'] {
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(250, 204, 21, 0.25);
}

.lb-p7-bento-cell[data-theme='coral'] {
  background: #fff1f2;
  border-color: #fecdd3;
}

.lb-p7-root.dark .lb-p7-bento-cell[data-theme='coral'] {
  background: rgba(244, 63, 94, 0.1);
  border-color: rgba(251, 113, 133, 0.25);
}

.lb-p7-bento-emoji {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.35rem;
}

.lb-p7-bento-cell-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 800;
}

.lb-p7-bento-cell-range {
  margin: 0.2rem 0 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--p7-muted);
}

/* Steps */
.lb-p7-steps {
  margin-top: 1.75rem;
  background: var(--p7-surface);
  border-radius: var(--p7-radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--p7-outline);
  box-shadow: var(--p7-shadow);
}

.lb-p7-steps-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lb-p7-steps-rocket {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--p7-primary-container);
}

.lb-p7-root.dark .lb-p7-steps-rocket {
  color: var(--p7-accent-soft);
}

.lb-p7-steps-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
}

.lb-p7-steps-track {
  position: relative;
  padding-left: 0.25rem;
}

.lb-p7-steps-line {
  position: absolute;
  left: 0.875rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--p7-outline);
  border-radius: 1px;
}

.lb-p7-root.dark .lb-p7-steps-line {
  background: rgba(148, 163, 184, 0.2);
}

.lb-p7-step-row {
  display: flex;
  gap: 0.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.lb-p7-step-row:last-child {
  padding-bottom: 0;
}

.lb-p7-step-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--p7-primary-container);
  color: var(--p7-on-primary);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.lb-p7-step-copy {
  flex: 1;
  min-width: 0;
  padding-top: 0.1rem;
}

.lb-p7-step-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
}

.lb-p7-step-sub {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--p7-muted);
  line-height: 1.4;
}

/* Docs */
.lb-p7-docs {
  margin-top: 1.75rem;
}

.lb-p7-docs-heading {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.lb-p7-docs-intro {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--p7-muted);
  font-weight: 500;
}

.lb-p7-docs-list {
  background: var(--p7-surface);
  border-radius: var(--p7-radius-lg);
  border: 1px solid var(--p7-outline);
  overflow: hidden;
}

.lb-p7-doc-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--p7-outline);
  transition: background 0.12s;
}

.lb-p7-doc-row:last-child {
  border-bottom: none;
}

.lb-p7-doc-row:hover {
  background: color-mix(in srgb, var(--p7-accent) 7%, white);
}

.lb-p7-root.dark .lb-p7-doc-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lb-p7-doc-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--p7-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lb-p7-doc-icon[data-variant='0'] {
  background: color-mix(in srgb, var(--p7-accent) 12%, white);
  color: var(--p7-primary-container);
}

.lb-p7-doc-icon[data-variant='1'] {
  background: #fef3c7;
  color: #ca8a04;
}

.lb-p7-doc-icon[data-variant='2'] {
  background: #fce7f3;
  color: #db2777;
}

.lb-p7-root.dark .lb-p7-doc-icon[data-variant='0'] {
  background: color-mix(in srgb, var(--p7-accent) 22%, transparent);
  color: var(--p7-accent-soft);
}

.lb-p7-root.dark .lb-p7-doc-icon[data-variant='1'] {
  background: rgba(234, 179, 8, 0.15);
  color: #fcd34d;
}

.lb-p7-root.dark .lb-p7-doc-icon[data-variant='2'] {
  background: rgba(244, 114, 182, 0.15);
  color: #f9a8d4;
}

.lb-p7-doc-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.lb-p7-doc-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 700;
  min-width: 0;
}

.lb-p7-doc-chevron {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--p7-muted);
  opacity: 0.6;
}

/* Info grid */
.lb-p7-info-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 380px) {
  .lb-p7-info-grid {
    grid-template-columns: 1fr;
  }
}

.lb-p7-info-card {
  background: var(--p7-surface);
  border-radius: var(--p7-radius-lg);
  padding: 1rem;
  border: 1px solid var(--p7-outline);
  position: relative;
  overflow: hidden;
  min-height: 7rem;
}

.lb-p7-info-label {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--p7-muted);
}

.lb-p7-info-text {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--p7-on-surface);
}

.lb-p7-info-deco {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--p7-outline);
  opacity: 0.5;
}

.lb-p7-address {
  margin: 0.85rem 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--p7-muted);
  font-weight: 500;
  text-align: center;
}

.lb-p7-address span,
.lb-p7-address-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 16rem;
}

.lb-p7-address-link {
  color: inherit;
  text-decoration: none;
}

.lb-p7-address-link:hover {
  color: var(--p7-accent);
  text-decoration: underline;
}

.lb-p7-address svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--p7-secondary-container);
}

/* Footer */
.lb-p7-footer {
  margin-top: 1rem;
  background: transparent;
  padding: 0.85rem 1rem 1.5rem;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--p7-outline) 55%, transparent);
}

.lb-p7-root.dark .lb-p7-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-p7-footer-name {
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--p7-footer-name);
  margin: 0 0 0.25rem;
}

.lb-p7-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.lb-p7-footer-link {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--p7-footer-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lb-p7-footer-link:hover {
  color: var(--p7-primary);
}

.lb-p7-root.dark .lb-p7-footer-link:hover {
  color: var(--p7-accent-soft);
}

.lb-p7-footer-copy {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p7-footer-text);
  line-height: 1.4;
}

/* Entrance */
@keyframes lb-p7-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lb-p7-a1 {
  animation: lb-p7-fade-up 0.45s ease both;
}
.lb-p7-a2 {
  animation: lb-p7-fade-up 0.45s 0.06s ease both;
}
.lb-p7-a3 {
  animation: lb-p7-fade-up 0.45s 0.12s ease both;
}
.lb-p7-a4 {
  animation: lb-p7-fade-up 0.45s 0.18s ease both;
}
.lb-p7-a5 {
  animation: lb-p7-fade-up 0.45s 0.24s ease both;
}

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:host {
  display: block;
}

.lb-m8-root {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--m8-page-bg, #f9fafb);
  color: #2f4a25;
  min-height: 100vh;
}

.lb-m8-root.dark {
  background-color: var(--m8-page-bg-dark, #121212);
  color: #d8e7d0;
}

.lb-m8-root *,
.lb-m8-root *::before,
.lb-m8-root *::after {
  box-sizing: border-box;
}

.lb-m8-display {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
}

.lb-m8-cover {
  background: var(--m8-cover-bg, #2f4a25);
  position: relative;
  overflow: hidden;
}

.lb-m8-root.dark .lb-m8-cover {
  background: var(--m8-cover-bg-dark, #1a2616);
}

.lb-m8-cover::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -5%;
  right: -5%;
  height: 80px;
  background: var(--m8-page-bg, #f9fafb);
  border-radius: 0.5rem;
}

.lb-m8-root.dark .lb-m8-cover::before {
  background: var(--m8-page-bg-dark, #121212);
}

.lb-m8-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.lb-m8-avatar-ring {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(135deg, #9dbd8e, #d0a87a);
  padding: 3px;
  flex-shrink: 0;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    0 0 0 5px rgba(var(--m8-accent-rgb, 82,122,66), 0.18),
    0 0 28px rgba(var(--m8-accent-rgb, 82,122,66), 0.22);
  animation: lb-m8-avatar-glow 3s ease-in-out infinite;
}

@keyframes lb-m8-avatar-glow {
  0%, 100% { box-shadow: 0 12px 32px rgba(0,0,0,0.22), 0 0 0 5px rgba(var(--m8-accent-rgb,82,122,66),0.18), 0 0 28px rgba(var(--m8-accent-rgb,82,122,66),0.22); }
  50% { box-shadow: 0 12px 32px rgba(0,0,0,0.22), 0 0 0 8px rgba(var(--m8-accent-rgb,82,122,66),0.12), 0 0 44px rgba(var(--m8-accent-rgb,82,122,66),0.34); }
}

.lb-m8-root.dark .lb-m8-avatar-ring {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 0 5px rgba(var(--m8-accent-rgb, 82,122,66), 0.25);
}

.lb-m8-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #6e9458;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}

.lb-m8-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--m8-accent-rgb, 82,122,66), 0.1);
  border-radius: 0.5rem;
  font-size: 11px;
  font-weight: 600;
  color: var(--m8-accent, #3e6031);
  padding: 4px 11px;
}

.lb-m8-root.dark .lb-m8-status {
  background: rgba(var(--m8-accent-rgb, 82,122,66), 0.15);
  color: var(--m8-accent, #9dbd8e);
}

.lb-m8-status-closed {
  background: #f5f5f5;
  color: #888;
}

.lb-m8-root.dark .lb-m8-status-closed {
  background: rgba(255, 255, 255, 0.05);
  color: #7d7d7d;
}

.lb-m8-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 0.5rem;
  background: var(--m8-accent, #527a42);
  display: inline-block;
  animation: lb-m8-pulse 2s ease-in-out infinite;
}

.lb-m8-status-dot-closed {
  background: #9ca3af;
  animation: none;
}

.lb-m8-wpp {
  position: relative;
  overflow: hidden;
  background: var(--m8-accent, #527a42);
  color: var(--m8-on-accent, #fff);
  width: 100%;
  padding: 14px;
  border-radius: 0.75rem;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(var(--m8-accent-rgb, 82,122,66), 0.35);
  transition: filter 0.15s, transform 0.1s, box-shadow 0.15s;
}

.lb-m8-wpp:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 32px rgba(var(--m8-accent-rgb, 82,122,66), 0.48);
}

.lb-m8-wpp:active {
  transform: scale(0.98);
}

.lb-m8-wpp::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 80%
  );
  animation: lb-m8-shimmer 4s ease-in-out infinite 3s;
  pointer-events: none;
}

@keyframes lb-m8-shimmer {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.lb-m8-secondary {
  border: none;
  border-radius: 0.5rem;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, transform 0.1s;
}

.lb-m8-secondary:active {
  transform: scale(0.97);
}

.lb-m8-doc {
  transition: transform 0.15s, background 0.15s;
}

.lb-m8-doc:hover {
  transform: translateX(4px);
}

.lb-m8-approach {
  border-radius: 0.5rem;
  padding: 16px;
  transition: border-color 0.15s, transform 0.15s;
}

.lb-m8-approach:hover {
  transform: translateY(-2px);
}

.lb-m8-icon-pill {
  cursor: pointer;
  border: none;
  background: transparent;
  transition: opacity 0.15s;
}

.lb-m8-icon-pill:hover {
  opacity: 0.6;
}

@keyframes lb-m8-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes lb-m8-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lb-m8-a1 {
  animation: lb-m8-fade-up 0.55s ease both;
}

.lb-m8-a2 {
  animation: lb-m8-fade-up 0.55s 0.08s ease both;
}

.lb-m8-a3 {
  animation: lb-m8-fade-up 0.55s 0.16s ease both;
}

.lb-m8-a4 {
  animation: lb-m8-fade-up 0.55s 0.24s ease both;
}

.lb-m8-a5 {
  animation: lb-m8-fade-up 0.55s 0.32s ease both;
}

.lb-m8-a6 {
  animation: lb-m8-fade-up 0.55s 0.4s ease both;
}

.lb-bottom-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  margin-top: 0.85rem;
  padding: 0.65rem 0.25rem 0;
  border-top: 1px solid color-mix(in srgb, var(--m8-accent, #527a42) 18%, transparent);
  text-align: center;
}

.lb-m8-root.dark .lb-bottom-contact--m8 {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-bottom-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #6b7280;
  text-decoration: none;
  max-width: 100%;
}

.lb-m8-root.dark .lb-bottom-contact__item {
  color: #9ca3af;
}

.lb-bottom-contact__address span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 18rem;
}

.lb-bottom-contact__icon {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  opacity: 0.8;
  color: var(--m8-accent, #527a42);
}

.lb-page-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-top: 1rem;
  padding: 0.85rem 0 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--m8-accent, #527a42) 18%, transparent);
  font-size: 0.6875rem;
}

.lb-m8-root.dark .lb-page-footer--m8 {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.lb-page-footer__muted {
  color: #9ca3af;
}

.lb-m8-root.dark .lb-page-footer__muted {
  color: #6b7280;
}

.lb-page-footer__brand {
  color: var(--m8-accent, #527a42);
  font-weight: 700;
  text-decoration: none;
}

.lb-m8-root.dark .lb-page-footer__brand {
  color: color-mix(in srgb, var(--m8-accent, #527a42) 75%, #ffffff);
}

.lb-page-footer__sep {
  color: #d1d5db;
}

.lb-m8-root.dark .lb-page-footer__sep {
  color: #374151;
}

.lb-page-footer__link {
  color: #9ca3af;
  text-decoration: none;
}

.lb-page-footer__link:hover {
  color: #6b7280;
}

.lb-m8-root.dark .lb-page-footer__link:hover {
  color: #d1d5db;
}
