/* ============================================================
   Bellaris Clinic — Folha de estilos compartilhada
   Convertido do design system React para CSS puro.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #0B0B0C;
  --graphite: #26272A;
  --stone: #6E7073;
  --mist: #B7B8B7;
  --hairline: #D6D6D3;
  --plaster: #E8E8E5;
  --paper: #F6F6F4;
  --white: #FFFFFF;
  --accent-future: #4A1F26;
  --photo-sat: .42;

  --font-display: "Instrument Serif", Georgia, serif;
  --font-text: "Newsreader", Georgia, serif;
  --font-ui: "Jost", "Helvetica Neue", Arial, sans-serif;

  --type-display-xl: clamp(3rem, 8.4vw, 8rem);
  --type-display-l: clamp(2.35rem, 5.4vw, 4.6rem);
  --type-display-m: clamp(1.6rem, 2.9vw, 2.5rem);
  --type-lead: clamp(1.125rem, 1.5vw, 1.375rem);
  --type-body: 1.125rem;
  --type-label: .6875rem;

  --ease: cubic-bezier(.16, .84, .34, 1);
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.125rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { text-transform: none !important; }
.bel-category-hero__copy h1,
.bel-category-card__copy h2,
.svc-hero h1,
.bel-unit__city,
.bel-drawer a,
.bel-index__name { text-transform: none !important; }

/* Rolagem suave e folga nas âncoras: a navbar é fixa, então sem isso
   os títulos das seções ficariam escondidos atrás dela ao navegar
   por links como #tratamos, #metodo e #agendar. */
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 6rem; }

@keyframes belHeroIn { from { transform: scale(1.05); } to { transform: none; } }

/* Responsivo geral das páginas */
@media (max-width: 860px) {
  .wrap { padding-inline: 1.75rem !important; }
  .g12 { display: block !important; }
  .g12 > * { margin-bottom: 2.5rem; }
  .g12 > *:last-child { margin-bottom: 0; }
  .cgrid { grid-template-columns: 1fr !important; }
  .cgrid > * { grid-column: 1 / -1 !important; width: 100%; }
  .hero-text { max-width: 100% !important; }
}

/* Aproxima os blocos da fundadora e das unidades sem alterar o ritmo das
   demais seções da página inicial. */
#fundadora { padding-bottom: 5rem !important; }
#unidades { padding-top: 5rem !important; }

/* ---------- Refinamentos mobile ---------- */
@media (max-width: 860px) {
  /* Ritmo vertical compacto: 11rem (~176px) entre seções é luxo de
     desktop; no celular vira rolagem vazia. */
  section[style*="padding-block:11rem"] { padding-block: 5.5rem !important; }
  section[style*="padding-block:9rem"] { padding-block: 5rem !important; }
  section[style*="padding-block:8rem"] { padding-block: 4.5rem !important; }
  section[style*="padding-block:7rem"] { padding-block: 4rem !important; }
  /* Aberturas de página internas (padding:11rem 0 …) */
  section[style*="padding:11rem 0"],
  article[style*="padding:11rem 0"] { padding-top: 8rem !important; }
  section[style*="padding:11rem 0 8rem"] { padding-bottom: 5rem !important; }
  /* Hero da home: mantém presença, reduz excesso (o rodapé de
     estatísticas absoluto precisa de ~7.5rem livres embaixo) */
  section[style*="padding:9rem 0 9.5rem"] { padding-top: 7.5rem !important; padding-bottom: 8.5rem !important; }
  section[style*="padding:10rem 0 6.5rem"] { padding-top: 7rem !important; }

  /* No layout empilhado, colunas sticky (fotos do corpo, intro das
     dúvidas) flutuariam por cima do conteúdo seguinte ao rolar. */
  [style*="position:sticky"] { position: static !important; }

  /* Títulos com margens de desktop */
  h2[style*="margin:0 0 4rem"] { margin-bottom: 2.5rem !important; }
  footer[style*="padding:5.5rem"] { padding-top: 4rem !important; }
}

/* Lista de unidades: as 4 colunas (nº · cidade · endereço · mapa)
   não cabem em telas estreitas — endereço e link descem para baixo
   da cidade, mantendo o número como guia à esquerda. */
@media (max-width: 720px) {
  #fundadora li[style*="display:flex"] { flex-direction: column; gap: .35rem !important; }
  #fundadora li[style*="display:flex"] b { min-width: 0 !important; }
  .bel-unit a {
    grid-template-columns: 2.25rem 1fr;
    grid-auto-rows: auto;
    gap: .3rem 1.1rem;
    align-items: start;
    padding: 1.4rem 0;
  }
  .bel-unit__addr,
  .bel-unit__go { grid-column: 2; }
  .bel-unit__go { margin-top: .4rem; }
  .bel-unit a:hover { padding-left: 0; }
}

/* Responsivo específico da página de detalhe de serviço */
@media (max-width: 720px) {
  #top.svc-hero { min-height: 100svh !important; padding-top: 7rem !important; }
  .svc-hero-pad { padding-inline: 1.5rem !important; }
  .svc-hero-text { max-width: 100% !important; }
  .svc-hero__overlay {
    background: linear-gradient(90deg, rgba(11,11,12,.78), rgba(11,11,12,.62)),
      linear-gradient(180deg, rgba(11,11,12,.34) 0%, rgba(11,11,12,.08) 32%, rgba(11,11,12,.52) 100%) !important;
  }
  .svc-hero__eyebrow a { border-bottom: 0 !important; }
  .svc-slider-col { grid-column: 1 / -1 !important; }
  .svc-slider { width: 100vw !important; margin-left: calc(50% - 50vw) !important; }
  .svc-slider img { aspect-ratio: 4 / 3 !important; }
}

/* ---------- Categorias ---------- */
.bel-divider { height: 1px; background: var(--hairline); border: 0; margin: 0; }
.bel-category-hero { padding: 11rem 0 7rem; }
.bel-category-hero__grid {
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: 5.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem;
  align-items: center;
}
.bel-category-hero__copy { grid-column: 1 / 7; }
.bel-category-hero__copy h1 {
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 1.5rem;
  max-width: 20ch;
}
.bel-category-hero__description {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.66;
  color: var(--graphite);
  max-width: 46ch;
}
.bel-category-hero__description p { margin: 0; }
.bel-category-hero__image { grid-column: 8 / 13; aspect-ratio: 4 / 5; }
.bel-category-list { padding-block: 9rem; }
.bel-category-list > .wrap { max-width: 1560px; margin-inline: auto; padding-inline: 5.5rem; }
.bel-category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); }
.bel-category-card { background: var(--paper); display: block; }
.bel-category-card__image { aspect-ratio: 16 / 9; }
.bel-category-card__copy { padding: 2.5rem 2.5rem 3rem; }
.bel-category-card__copy h2 {
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .85rem;
}
.bel-category-card__copy p { font-weight: 300; font-size: 1.0625rem; line-height: 1.6; color: var(--graphite); margin: 0 0 1.5rem; max-width: 34ch; }
.bel-category-card__copy > span { font-family: var(--font-ui); font-weight: 500; font-size: .6875rem; letter-spacing: .22em; text-transform: uppercase; }

/* ---------- Hero das internas de serviço ---------- */
.svc-hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5.5rem;
  overflow: hidden;
  background: var(--ink);
}
.svc-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(.42) contrast(1.08) brightness(.9);
}
.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(11,11,12,.88) 0%,rgba(11,11,12,.7) 32%,rgba(11,11,12,.36) 58%,rgba(11,11,12,.18) 78%,rgba(11,11,12,.3) 100%),linear-gradient(180deg,rgba(11,11,12,.34) 0%,rgba(11,11,12,.04) 28%,rgba(11,11,12,.04) 60%,rgba(11,11,12,.48) 100%);
}
.svc-hero-pad { position: relative; width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: 5.5rem; color: var(--paper); }
.svc-hero-text { max-width: min(58%, 42rem); }
.svc-hero__eyebrow { font-family: var(--font-ui); font-weight: 500; font-size: .6875rem; letter-spacing: .24em; text-transform: uppercase; line-height: 1; color: rgba(246,246,244,.62); margin: 0; }
.svc-hero__eyebrow a { color: inherit; border-bottom: 1px solid rgba(246,246,244,.4); }
.svc-hero h1 { font-weight: 400; font-size: clamp(2.2rem, 4.6vw, 4.2rem); line-height: 1.05; letter-spacing: -.02em; margin: 1.25rem 0 0; }
.svc-hero__description { font-size: clamp(1.125rem, 1.5vw, 1.375rem); font-weight: 300; line-height: 1.58; color: rgba(246,246,244,.88); max-width: 38ch; margin: 1.5rem 0 0; }
.svc-hero__cta { margin-top: 2.5rem; }

@media (max-width: 860px) {
  .bel-category-hero { padding: 8rem 0 5rem; }
  .bel-category-hero__grid { display: flex; flex-direction: column; padding-inline: 1.75rem; gap: 3rem; align-items: stretch; }
  .bel-category-hero__image { width: 100%; }
  .bel-category-list { padding-block: 5.5rem; }
  .bel-category-list > .wrap { padding-inline: 1.75rem; }
  .bel-category-grid { grid-template-columns: 1fr; }
}

/* ---------- Componente: Button ---------- */
.bel-btn {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.15rem 2.1rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.bel-btn:hover { background: var(--ink); color: var(--paper); }
.bel-btn--solid { background: var(--ink); color: var(--paper); }
.bel-btn--solid:hover { background: transparent; color: var(--ink); }
.bel-btn--light { border-color: var(--paper); color: var(--paper); }
.bel-btn--light:hover { background: var(--paper); color: var(--ink); }

/* ---------- Componente: SectionHead ---------- */
.bel-sechead {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--hairline);
}
.bel-sechead--dark { border-bottom-color: rgba(246, 246, 244, .18); }
.bel-sechead__num {
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .05em;
  color: var(--mist);
  flex: none;
}
.bel-sechead--dark .bel-sechead__num { color: rgba(246, 246, 244, .35); }
.bel-sechead__name {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .6875rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--stone);
}
.bel-sechead--dark .bel-sechead__name { color: rgba(246, 246, 244, .6); }

/* ---------- Componente: TextLink ---------- */
.bel-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  transition: gap .45s var(--ease), border-color .45s var(--ease);
}
.bel-link:hover { gap: 1.35rem; }
.bel-link--light { color: var(--paper); border-color: rgba(246, 246, 244, .55); }

/* ---------- Componente: FaqAccordion ---------- */
.bel-faq { border-top: 1px solid var(--hairline); }
.bel-faq__item { border-bottom: 1px solid var(--hairline); }
.bel-faq__q {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 1.9vw, 1.6rem) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.4;
  transition: color .4s var(--ease);
  color: var(--ink);
}
.bel-faq__q::-webkit-details-marker { display: none; }
.bel-faq__q:hover { color: var(--stone); }
.bel-faq__mark { position: relative; width: 13px; height: 13px; flex: none; align-self: center; }
.bel-faq__mark::before,
.bel-faq__mark::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .45s var(--ease);
}
.bel-faq__mark::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.bel-faq__mark::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%) scaleY(1); }
.bel-faq__item[open] .bel-faq__mark::after { transform: translateX(-50%) scaleY(0); }
.bel-faq__a {
  padding-bottom: clamp(1.3rem, 2vw, 1.9rem);
  max-width: 64ch;
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--graphite);
}

/* ---------- Componente: FormField ---------- */
.bel-field { display: flex; flex-direction: column; gap: .6rem; font-family: var(--font-ui); }
.bel-field--full { grid-column: 1 / -1; }
.bel-field label {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
}
.bel-field input,
.bel-field select,
.bel-field textarea {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: .7rem 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .4s var(--ease);
  width: 100%;
  box-sizing: border-box;
}
.bel-field textarea { resize: vertical; min-height: 5.5rem; line-height: 1.6; }
.bel-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 12px) 1.35rem, calc(100% - 7px) 1.35rem;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.bel-field input::placeholder,
.bel-field textarea::placeholder { color: var(--mist); }
.bel-field input:focus,
.bel-field select:focus,
.bel-field textarea:focus { outline: 0; border-bottom-width: 2px; }

/* ---------- Componente: SpecList ---------- */
.bel-speclist {
  list-style: none;
  margin: 2.75rem 0 2.75rem;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.bel-speclist li {
  border-bottom: 1px solid var(--hairline);
}
.bel-speclist li > a {
  padding: 1.15rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  width: 100%;
  transition: padding-left .45s var(--ease), color .45s var(--ease);
}
.bel-speclist li > a:hover { padding-left: .75rem; color: var(--stone); }
.bel-speclist b {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 1.1875rem;
  letter-spacing: 0;
  flex: none;
}
.bel-speclist span {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--stone);
  margin-left: auto;
  text-align: right;
}

/* ---------- Componente: UnitsList ---------- */
.bel-units {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-ui);
}
.bel-unit { border-bottom: 1px solid var(--hairline); }
.bel-unit a {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1.1fr) minmax(0, 1.6fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding: clamp(1.5rem, 2.6vw, 2.25rem) 0;
  transition: padding-left .55s var(--ease);
  text-decoration: none;
  color: inherit;
}
.bel-unit a:hover { padding-left: 1.25rem; }
.bel-unit__i { font-family: var(--font-display); font-size: .8125rem; color: var(--mist); }
.bel-unit__city {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
}
.bel-unit__addr {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--stone);
}
.bel-unit__go {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
.bel-unit a:hover .bel-unit__go { color: var(--ink); }

/* ---------- Componente: Frame ---------- */
.bel-frame { position: relative; overflow: hidden; background: var(--plaster); }
.bel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.bel-frame:hover img { transform: scale(1.035); }
.bel-frame--mono img { filter: grayscale(1) contrast(1.07) brightness(1.02); }
.bel-frame--tone img { filter: saturate(var(--photo-sat)) contrast(1.06) brightness(1.02); }

/* ---------- Componente: NavBar ---------- */
.bel-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 5.5rem);
  transition: background .6s var(--ease), padding .6s var(--ease), border-color .6s var(--ease), color .6s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--paper);
  font-family: var(--font-ui);
}
.bel-nav--pinned {
  background: rgba(246, 246, 244, .94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--hairline);
  color: var(--ink);
  padding-block: 1.05rem;
}
.bel-nav__logo {
  flex: none;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: inherit;
  text-decoration: none;
}
.bel-nav__logo img {
  flex: none;
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: height .6s var(--ease);
}
.bel-nav--pinned .bel-nav__logo img { height: 40px; }
/* Troca de logo claro/escuro conforme estado da navbar */
.bel-nav__logo .logo-dark { display: none; }
.bel-nav__logo .logo-light { display: block; }
.bel-nav--pinned .bel-nav__logo .logo-dark { display: block; }
.bel-nav--pinned .bel-nav__logo .logo-light { display: none; }
.bel-nav__menu { display: flex; align-items: center; gap: 2.75rem; justify-self: center; }
.bel-nav__link {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-block: .35rem;
}
.bel-nav__trigger {
  border: 0;
  background: none;
  font-family: inherit;
  padding-inline: 0;
  cursor: pointer;
}
.bel-nav__item { position: relative; }
.bel-nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: .5rem;
  min-width: 260px;
  display: none;
}
.bel-nav__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  margin-top: .5rem;
}
.bel-nav__item:hover .bel-nav__panel,
.bel-nav__item:focus-within .bel-nav__panel { display: block; }
.bel-nav__panel--locations .bel-nav__catlink + .bel-nav__catlink { border-top: 1px solid var(--hairline); }
.bel-nav__cat { position: static; border-bottom: 1px solid var(--hairline); }
.bel-nav__cat:last-child { border-bottom: 0; }
.bel-nav__catlink {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.05rem 1.75rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: padding-left .45s var(--ease), color .45s var(--ease);
}
.bel-nav__cat:hover > .bel-nav__catlink { padding-left: 2.15rem; color: var(--stone); }
.bel-nav__subpanel {
  position: absolute;
  top: 1rem;
  left: 100%;
  margin-left: 1px;
  min-width: 280px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: .5rem 0;
  display: none;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
  z-index: 2;
}
.bel-nav__cat:hover .bel-nav__subpanel { display: block; }
.bel-nav__subpanel a {
  display: block;
  padding: .85rem 1.75rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: padding-left .45s var(--ease), color .45s var(--ease);
}
.bel-nav__subpanel a:hover { padding-left: 2.15rem; color: var(--stone); }
.bel-nav__cta {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: .85rem 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: background .5s var(--ease), color .5s var(--ease);
}
.bel-nav__cta:hover { background: var(--paper); color: var(--ink); }
.bel-nav--pinned .bel-nav__cta:hover { background: var(--ink); color: var(--paper); }
.bel-nav__burger {
  display: none;
  width: 34px;
  height: 34px;
  position: relative;
  flex: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  z-index: 2;
}
.bel-nav__burger i {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1px;
  background: currentColor;
  transition: transform .5s var(--ease);
}
.bel-nav__burger i:nth-child(1) { top: 13px; }
.bel-nav__burger i:nth-child(2) { top: 20px; }
.bel-nav__burger--open i:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.bel-nav__burger--open i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.bel-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--paper);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  padding: clamp(1.25rem, 5vw, 5.5rem);
  opacity: 1;
  overflow-y: auto;
}
.bel-drawer--open { display: flex; }
.bel-drawer a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.25rem);
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
}
.bel-drawer__services { display: flex; flex-direction: column; }
.bel-drawer__primary {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.25rem);
  line-height: 1.3;
}
.bel-drawer__categories {
  display: grid;
  gap: .65rem;
  margin: .45rem 0 .85rem;
  padding-left: .2rem;
}
.bel-drawer .bel-drawer__categories a {
  font-family: var(--font-ui);
  font-size: .6875rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246, 246, 244, .68);
}
@media (max-width: 1200px) { .bel-nav__menu { gap: 1.75rem; min-width: 0; } }
@media (max-width: 1080px) {
  .bel-nav { display: flex; justify-content: space-between; }
  .bel-nav__menu { display: none; }
  .bel-nav__cta { display: none; }
  .bel-nav__burger { display: block; }
}
@media (max-width: 1080px) and (max-height: 720px) {
  .bel-drawer { justify-content: flex-start; padding-top: 6rem; padding-bottom: 2rem; }
}

/* Páginas institucionais por unidade */
.bel-location__map {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border: 0;
  background: var(--plaster);
}
.bel-location__reviews { margin-top: 4rem; }
.bel-location__reviews .divia-gr { margin-top: 1.75rem; }
@media (max-width: 860px) {
  .bel-location__map { min-height: 260px; }
  .bel-location__reviews { margin-top: 3rem; }
}

/* ---------- Agendamento via WhatsApp ---------- */
.bel-modal-open { overflow: hidden !important; }
.bel-schedule-modal[hidden] { display: none; }
.bel-schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 11, 12, .7);
}
.bel-schedule-modal__panel {
  position: relative;
  width: min(100%, 31rem);
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(2rem, 6vw, 3.75rem) clamp(2.25rem, 5vw, 3.5rem);
  border-radius: .7rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .25);
}
.bel-schedule-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  border: 0;
  background: transparent;
  color: #9b9b9b;
  font-family: var(--font-ui);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.bel-schedule-modal__eyebrow {
  margin: 0 0 .85rem;
  color: #9b9b9b;
  font-family: var(--font-ui);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.bel-schedule-modal__title {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.7rem);
  font-weight: 400;
  line-height: 1.05;
}
.bel-schedule-modal__title em { font-weight: 400; }
.bel-schedule-modal__form { display: grid; gap: 1.25rem; }
.bel-schedule-modal__field { display: grid; }
.bel-schedule-modal__field label {
  color: var(--stone);
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 300;
}
.bel-schedule-modal__field input,
.bel-schedule-modal__field select {
  width: 100%;
  min-height: 2.45rem;
  padding: .35rem 1.5rem .7rem 0;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 300;
}
.bel-schedule-modal__field input:focus,
.bel-schedule-modal__field select:focus { border-bottom-color: var(--ink); }
.bel-schedule-modal__submit {
  min-height: 3rem;
  margin-top: .6rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.bel-schedule-modal__submit:hover { background: var(--white); color: var(--ink); }
.bel-schedule-modal__submit:disabled { cursor: wait; opacity: .65; }
.bel-schedule-fixed { display: none; }

/* ---------- Retorno dos formulários ---------- */
.bel-result-modal[hidden] { display: none; }
.bel-result-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 11, 12, .72);
}
.bel-result-modal__panel {
  width: min(100%, 32rem);
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  padding: 2.5rem 2rem 2rem;
  border-radius: .7rem;
  background: #fff;
  color: #5d5d5f;
  text-align: center;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .25);
}
.bel-result-modal__icon {
  display: none;
  width: 5.25rem;
  margin: 0 auto 1.5rem;
}
.bel-result-modal__icon svg { display: block; width: 100%; height: auto; fill: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.bel-result-modal__icon--success svg { stroke: #9fdb86; }
.bel-result-modal__icon--error svg { stroke: #f17073; }
.bel-result-modal__icon--whatsapp svg { stroke: #25d366; }
.bel-result-modal[data-state="success"] .bel-result-modal__icon--success,
.bel-result-modal[data-state="error"] .bel-result-modal__icon--error,
.bel-result-modal[data-state="whatsapp"] .bel-result-modal__icon--whatsapp { display: block; }
.bel-result-modal__title {
  max-width: 17ch;
  margin: 0 auto 1.25rem;
  color: #5b5b5d;
  font-family: var(--font-ui);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}
.bel-result-modal__message {
  margin: 0 auto;
  color: #7f7f80;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
}
.bel-result-modal__message p { max-width: 31ch; margin: 0 auto; }
.bel-result-modal__message strong { color: #25d366; font-weight: 500; }
.bel-result-modal__message ul { max-width: 34ch; margin: 0 auto; padding: 0; list-style: none; }
.bel-result-modal__message li + li { margin-top: .15rem; }
.bel-result-modal[data-state="whatsapp"] .bel-result-modal__title {
  max-width: 19ch;
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.08;
}
.bel-result-modal__thanks {
  margin: 1.5rem 0 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 500;
}
.bel-result-modal__whatsapp-link {
  display: inline-block;
  margin-top: 1rem;
  color: #25d366;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: .16em;
}
.bel-result-modal__whatsapp-link[hidden] { display: none; }
.bel-result-modal__ok {
  min-width: 7.5rem;
  min-height: 3.25rem;
  margin-top: 1.75rem;
  border: 0;
  border-radius: .35rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.bel-result-modal__ok:hover { opacity: .82; }
.bel-result-modal__ok:focus-visible { outline: 3px solid #80ceee; outline-offset: 4px; }
.bel-result-modal__ok:active { transform: translateY(1px); }

@media (max-width: 640px) {
  .bel-result-modal { padding: .75rem; }
  .bel-result-modal__panel { padding: 2rem 1.25rem 1.5rem; }
  .bel-result-modal__icon { width: 4.5rem; margin-bottom: 1.25rem; }
  .bel-result-modal__title { margin-bottom: 1rem; font-size: 1.6rem; }
  .bel-result-modal[data-state="whatsapp"] .bel-result-modal__title { font-size: 1.75rem; }
  .bel-result-modal__message { font-size: .925rem; line-height: 1.4; }
  .bel-result-modal__thanks { margin-top: 1.25rem; font-size: 1.1rem; }
  .bel-result-modal__whatsapp-link { margin-top: .8rem; font-size: .925rem; }
  .bel-result-modal__ok { min-width: 7rem; min-height: 3rem; margin-top: 1.5rem; font-size: .925rem; }
}

@media (max-width: 1080px) {
  body { padding-bottom: 4.75rem; }
  .bel-schedule-fixed {
    position: fixed;
    z-index: 80;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    display: block;
    min-height: 3.55rem;
    border: 1px solid var(--paper);
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 .7rem 2rem rgba(0, 0, 0, .25);
    font-family: var(--font-ui);
    font-size: .6875rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
  }
  .bel-drawer--open ~ .bel-schedule-fixed,
  .bel-modal-open .bel-schedule-fixed { display: none; }
}

/* ---------- Componente: ConditionIndex ---------- */
.bel-index { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2rem, 4vw, 4.5rem); }
.bel-index__stage { grid-column: 1 / 6; align-self: start; }
.bel-index__stage-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 760px;
  background: var(--graphite);
  overflow: hidden;
}
.bel-index__stage-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(var(--photo-sat)) contrast(1.08) brightness(.94);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s var(--ease), transform 1.6s var(--ease);
}
.bel-index__stage-inner img.on { opacity: 1; transform: scale(1); }
.bel-index__caption {
  font-family: var(--font-text);
  font-weight: 300;
  margin-top: 1.35rem;
  font-size: 1rem;
  color: rgba(246, 246, 244, .62);
  min-height: 4.9em;
  line-height: 1.62;
  max-width: 44ch;
}
.bel-index__list {
  grid-column: 7 / 13;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(246, 246, 244, .18);
  display: flex;
  flex-direction: column;
}
.bel-index__item { border-bottom: 1px solid rgba(246, 246, 244, .18); display: flex; flex: 1 1 auto; }
.bel-index__btn {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: clamp(.85rem, 1.4vw, 1.15rem);
  text-align: left;
  font: inherit;
  color: rgba(246, 246, 244, .5);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color .5s var(--ease), padding-left .5s var(--ease);
}
.bel-index__btn:hover,
.bel-index__item.on .bel-index__btn { color: var(--paper); padding-left: 1.25rem; }
.bel-index__idx {
  font-family: var(--font-display);
  font-size: .8125rem;
  color: rgba(246, 246, 244, .35);
  flex: none;
}
.bel-index__name {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -.015em;
}
@media (max-width: 1080px) {
  .bel-index { display: block; }
  .bel-index__stage { grid-column: 1 / -1; align-self: auto; margin-bottom: 2.5rem; }
  .bel-index__stage-inner { aspect-ratio: 16 / 10; max-height: none; }
  .bel-index__caption { min-height: 0; }
  .bel-index__list { grid-column: 1 / -1; }
  .bel-index__btn { padding-block: clamp(1rem, 2vw, 1.4rem); }
}

/* ---------- Acordeão corporal (página inicial) ---------- */
.body-acc__item { border-bottom: 1px solid var(--hairline); }
.body-acc__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.3rem 0;
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
}
.body-acc__head > span:first-child { display: block; }
.body-acc__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: .25rem;
  margin: -.25rem;
}
.body-acc__title {
  display: block;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 1.1875rem;
  color: var(--ink);
}
.body-acc__detail {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: .875rem;
  color: var(--stone);
  margin-top: .35rem;
}
.body-acc__mark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  flex: none;
  line-height: 1;
}
.body-acc__body {
  padding: 0 0 1.6rem;
  max-width: 58ch;
  margin: 0;
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--graphite);
  display: none;
}
.body-acc__item.open .body-acc__body { display: block; }

/* Ritmo tipográfico dos artigos importados. O HTML já contém a
   hierarquia correta; estas regras devolvem margens removidas pelo reset. */
.bellaris-prose { color: var(--graphite); }
.bellaris-prose p { margin: 0 0 1.5em; line-height: 1.8; }
.bellaris-prose h2 { margin: 2.75rem 0 1.15rem; font-size: clamp(1.75rem, 3vw, 2.4rem); line-height: 1.15; }
.bellaris-prose h3 { margin: 2rem 0 1rem; font-size: clamp(1.35rem, 2.3vw, 1.75rem); line-height: 1.2; }
.bellaris-prose ul,
.bellaris-prose ol { margin: 0 0 1.5em; padding-left: 1.5rem; line-height: 1.8; }
.bellaris-prose ul { list-style: disc; }
.bellaris-prose ol { list-style: decimal; }
.bellaris-prose li + li { margin-top: .4rem; }
.bellaris-prose blockquote { margin: 2.5rem 0; padding-left: 1.75rem; border-left: 2px solid var(--ink); }

/* Compatibilidade com as views Laravel dinâmicas. */
.font-heading, .font-display { font-family: var(--font-display); }
.font-body, .font-serif-body { font-family: var(--font-text); }
.font-label, .font-ui { font-family: var(--font-ui); }
