/* ==========================================================================
   Vereda Odontologia — demonstração de portfólio (Igor Rendon)
   Classes com prefixo vo-, variáveis --vo-*. Sem dependências externas.
   ========================================================================== */

@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-latin-var.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta da identidade */
  --vo-green: #214b43;
  --vo-green-deep: #183a34;
  --vo-ivory: #f7f4ed;
  --vo-sand: #e8dfd0;
  --vo-sage: #c6d1c4;
  --vo-ink: #24332f;
  --vo-white: #ffffff;

  /* Derivados */
  --vo-muted: #4d5c57;          /* texto secundário: 6,4:1 sobre marfim */
  --vo-line: rgba(36, 51, 47, 0.16);
  --vo-line-strong: rgba(36, 51, 47, 0.3);
  --vo-sage-soft: #dfe6dc;
  --vo-ivory-70: rgba(247, 244, 237, 0.78);
  --vo-error: #9a3324;

  --vo-serif: "Lora", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --vo-sans: "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --vo-gutter: 20px;
  --vo-max: 1200px;
  --vo-radius: 14px;
  --vo-radius-lg: 20px;
  --vo-header-h: 64px;
  --vo-section: clamp(72px, 9vw, 128px);

  --vo-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --vo-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --vo-fast: 180ms;
}

@media (min-width: 600px) { :root { --vo-gutter: 24px; } }
@media (min-width: 900px) { :root { --vo-gutter: 32px; --vo-header-h: 76px; } }

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--vo-header-h) + 16px);
}

body {
  margin: 0;
  background: var(--vo-ivory);
  color: var(--vo-ink);
  font-family: var(--vo-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 450; }
ul, ol { margin: 0; padding: 0; }
[role="list"] { list-style: none; }
figure { margin: 0; }
button { font: inherit; color: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }
main:focus { outline: none; }

::selection { background: var(--vo-sage); color: var(--vo-ink); }

:focus-visible {
  outline: 2px solid var(--vo-green);
  outline-offset: 3px;
  border-radius: 4px;
}

.vo-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.vo-skip {
  position: fixed;
  left: 16px; top: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--vo-green);
  color: var(--vo-ivory);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--vo-fast) var(--vo-ease);
}
.vo-skip:focus-visible { transform: none; outline-color: var(--vo-ink); }

.vo-container {
  width: 100%;
  max-width: calc(var(--vo-max) + var(--vo-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--vo-gutter);
}

/* ---------- Tipografia ---------- */
.vo-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vo-green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vo-eyebrow::before {
  content: "";
  flex: none;
  align-self: flex-start;
  margin-top: 0.62em;
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.vo-eyebrow--light { color: var(--vo-sage); }

.vo-h2 {
  font-family: var(--vo-serif);
  font-weight: 450;
  font-size: clamp(2rem, 1.45rem + 1.9vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--vo-green-deep);
  text-wrap: balance;
}
.vo-h3 {
  font-family: var(--vo-serif);
  font-weight: 500;
  font-size: clamp(1.375rem, 1.25rem + 0.4vw, 1.625rem);
  line-height: 1.25;
  color: var(--vo-green-deep);
}
.vo-intro {
  margin-top: 20px;
  font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem);
  line-height: 1.65;
  color: var(--vo-muted);
  max-width: 34em;
  text-wrap: pretty;
}
.vo-fine {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--vo-muted);
}

/* ---------- Botões ---------- */
.vo-btn {
  --_bg: var(--vo-green);
  --_fg: var(--vo-ivory);
  --_bd: var(--vo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--_bd);
  border-radius: 999px;
  background: var(--_bg);
  color: var(--_fg);
  font-family: var(--vo-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--vo-fast) var(--vo-ease),
    color var(--vo-fast) var(--vo-ease),
    border-color var(--vo-fast) var(--vo-ease),
    transform var(--vo-fast) var(--vo-ease);
  -webkit-tap-highlight-color: transparent;
}
.vo-btn:focus-visible { outline-offset: 3px; border-radius: 999px; }
.vo-btn:active { transform: translateY(1px); }
.vo-btn__arrow {
  width: 18px; height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--vo-fast) var(--vo-ease);
}
.vo-btn:hover .vo-btn__arrow,
.vo-btn:focus-visible .vo-btn__arrow,
.vo-link-cta:hover .vo-btn__arrow,
.vo-link-cta:focus-visible .vo-btn__arrow { transform: translateX(3px); }
.vo-btn:hover .vo-btn__arrow--down,
.vo-btn:focus-visible .vo-btn__arrow--down { transform: translateY(3px); }
.vo-btn:hover .vo-btn__arrow--back,
.vo-btn:focus-visible .vo-btn__arrow--back { transform: translateX(-3px); }

.vo-btn--primary:hover { --_bg: var(--vo-green-deep); --_bd: var(--vo-green-deep); }
.vo-btn--ghost { --_bg: transparent; --_fg: var(--vo-green-deep); --_bd: var(--vo-line-strong); }
.vo-btn--ghost:hover { --_bg: var(--vo-white); --_bd: var(--vo-green); }
.vo-btn--light { --_bg: var(--vo-ivory); --_fg: var(--vo-green-deep); --_bd: var(--vo-ivory); }
.vo-btn--light:hover { --_bg: var(--vo-white); --_bd: var(--vo-white); }
.vo-btn--light:focus-visible { outline-color: var(--vo-ivory); }
.vo-btn--text { --_bg: transparent; --_fg: var(--vo-green-deep); --_bd: transparent; padding: 0 14px; }
.vo-btn--text:hover { --_bg: var(--vo-sage-soft); }
.vo-btn--sm { min-height: 44px; padding: 0 18px; font-size: 0.9375rem; }

.vo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sem JS não há botão de simulação que não faz nada */
.no-js [data-vo-agendar],
.no-js [data-vo-more],
.no-js .vo-zoom__btn { display: none !important; }
.vo-nojs { display: none; }
.no-js .vo-nojs { display: block; font-size: 0.9375rem; color: var(--vo-sage); }

/* ---------- Cabeçalho ---------- */
.vo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--vo-ivory);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--vo-ease), box-shadow 240ms var(--vo-ease);
}
.vo-header.is-scrolled {
  border-bottom-color: var(--vo-line);
  box-shadow: 0 1px 0 rgba(36, 51, 47, 0.02), 0 8px 24px -18px rgba(36, 51, 47, 0.25);
}
.vo-header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--vo-header-h);
}

.vo-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  padding-block: 11px;
  text-decoration: none;
  color: var(--vo-green-deep);
  line-height: 1;
}
.vo-brand__name {
  font-family: var(--vo-serif);
  font-weight: 500;
  font-size: 1.625rem;
  letter-spacing: -0.01em;
}
.vo-brand__kind {
  font-family: var(--vo-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vo-muted);
  transform: translateY(-2px);
}
.vo-brand:focus-visible { outline-offset: 6px; }

.vo-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--vo-sage);
  color: var(--vo-green-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.vo-menu-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--vo-line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--vo-green-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
}
.vo-menu-toggle__bars {
  position: relative;
  width: 18px; height: 10px;
}
.vo-menu-toggle__bars span {
  position: absolute;
  left: 0; right: 0;
  height: 1.6px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--vo-ease), top 220ms var(--vo-ease);
}
.vo-menu-toggle__bars span:first-child { top: 0; }
.vo-menu-toggle__bars span:last-child { top: 8.4px; }
.vo-header.is-open .vo-menu-toggle__bars span:first-child { top: 4.2px; transform: rotate(45deg); }
.vo-header.is-open .vo-menu-toggle__bars span:last-child { top: 4.2px; transform: rotate(-45deg); }

/* Menu móvel */
@media (max-width: 899.98px) {
  .vo-nav {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    padding: 8px var(--vo-gutter) 28px;
    background: var(--vo-ivory);
    border-bottom: 1px solid var(--vo-line);
    box-shadow: 0 24px 40px -28px rgba(36, 51, 47, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms var(--vo-ease), transform 220ms var(--vo-ease), visibility 0s linear 220ms;
  }
  .vo-header.is-open .vo-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 220ms var(--vo-ease), transform 220ms var(--vo-ease), visibility 0s;
  }
  .vo-nav__list { list-style: none; }
  .vo-nav__link {
    display: flex;
    align-items: center;
    min-height: 56px;
    border-bottom: 1px solid var(--vo-line);
    font-family: var(--vo-serif);
    font-size: 1.5rem;
    color: var(--vo-green-deep);
    text-decoration: none;
  }
  .vo-nav__cta { width: 100%; margin-top: 22px; min-height: 52px; }

  .no-js .vo-menu-toggle { display: none; }
  .no-js .vo-header__inner { flex-wrap: wrap; }
  .no-js .vo-nav {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 12px; width: 100%;
  }
  .no-js .vo-nav__list { display: flex; flex-wrap: wrap; gap: 4px 18px; }
  .no-js .vo-nav__link { min-height: 44px; border: 0; font-family: var(--vo-sans); font-size: 1rem; }
}

@media (min-width: 900px) {
  .vo-menu-toggle { display: none; }
  .vo-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .vo-nav__list {
    display: flex;
    gap: 4px;
    list-style: none;
  }
  .vo-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--vo-ink);
    text-decoration: none;
    transition: color var(--vo-fast) var(--vo-ease);
  }
  .vo-nav__link::after {
    content: "";
    position: absolute;
    left: 12px; right: 12px; bottom: 8px;
    height: 1px;
    background: var(--vo-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--vo-ease);
  }
  .vo-nav__link:hover { color: var(--vo-green); }
  .vo-nav__link:hover::after,
  .vo-nav__link[aria-current]::after { transform: scaleX(1); }
  .vo-nav__link[aria-current] { color: var(--vo-green-deep); }
}

@media (max-width: 519.98px) {
  .vo-header__inner { gap: 10px; }
  .vo-brand { gap: 7px; }
  .vo-brand__name { font-size: 1.4375rem; }
  .vo-brand__kind { font-size: 0.625rem; letter-spacing: 0.16em; }
  .vo-badge { font-size: 0.6875rem; padding: 3px 8px; }
  .vo-menu-toggle { width: 44px; padding: 0; justify-content: center; }
  .vo-menu-toggle__label {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap;
  }
}
@media (max-width: 359.98px) {
  .vo-brand__kind { display: none; }
}

/* ---------- Hero ---------- */
.vo-hero {
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: var(--vo-section);
}
.vo-hero__grid {
  display: grid;
  gap: 36px;
}
.vo-hero__text { max-width: 38rem; }
.vo-hero__title {
  font-family: var(--vo-serif);
  font-weight: 450;
  font-size: clamp(2.5rem, 1.6rem + 2.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--vo-green-deep);
  text-wrap: balance;
}
.vo-hero__lead {
  margin-top: 22px;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  color: var(--vo-muted);
  max-width: 32em;
}
.vo-hero .vo-actions { margin-top: 32px; }
.vo-demo-note {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vo-muted);
}
.vo-demo-note__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vo-sage);
  box-shadow: 0 0 0 3px rgba(198, 209, 196, 0.45);
}

.vo-hero__media {
  position: relative;
  border-radius: var(--vo-radius-lg);
  overflow: hidden;
  background: var(--vo-sand);
  aspect-ratio: 4 / 3;
}
.vo-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 40%;
}

@media (min-width: 900px) {
  .vo-hero { padding-top: clamp(24px, 3vw, 48px); }
  .vo-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 5vw, 72px);
  }
  .vo-hero__text { padding-block: 24px; }
  .vo-hero__media {
    aspect-ratio: auto;
    height: clamp(520px, calc(100svh - var(--vo-header-h) - 72px), 700px);
  }
  .vo-hero__media img { object-position: 72% 40%; }
}

/* Mobile: ação visível sem rolar; foto logo abaixo */
@media (max-width: 599.98px) {
  .vo-hero__grid { gap: 28px; }
  .vo-hero__lead { margin-top: 16px; }
  .vo-hero .vo-actions { margin-top: 24px; }
  .vo-hero .vo-actions .vo-btn { flex: 1 1 100%; }
  .vo-demo-note { margin-top: 18px; }
  .vo-hero__media { border-radius: var(--vo-radius); aspect-ratio: 5 / 4; }
}

/* Entrada do hero: só CSS, termina visível mesmo sem JS. A foto (LCP) não fica oculta. */
@keyframes vo-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes vo-settle {
  from { transform: scale(1.035); }
  to { transform: none; }
}
.vo-hero__in { animation: vo-rise 560ms var(--vo-ease-out) both; }
.vo-hero__in:nth-child(2) { animation-delay: 60ms; }
.vo-hero__in:nth-child(3) { animation-delay: 120ms; }
.vo-hero__in:nth-child(4) { animation-delay: 180ms; }
.vo-hero__in:nth-child(5) { animation-delay: 220ms; }
.vo-hero__media img { animation: vo-settle 1100ms var(--vo-ease-out) both; }

/* ---------- Seções ---------- */
.vo-section { padding-block: var(--vo-section); }

.vo-split { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .vo-split {
    grid-template-columns: minmax(0, 4.2fr) minmax(0, 6.8fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: start;
  }
  .vo-split__head { position: sticky; top: calc(var(--vo-header-h) + 40px); }
}

/* ---------- Cuidados ---------- */
.vo-care { padding-top: 0; }
.vo-care .vo-container { border-top: 0; }
.vo-care__list { border-top: 1px solid var(--vo-line-strong); }
.vo-care__item {
  padding-block: 30px 28px;
  border-bottom: 1px solid var(--vo-line);
}
.vo-care__item > p {
  margin-top: 10px;
  color: var(--vo-muted);
  max-width: 34em;
}
.vo-more {
  margin-top: 14px;
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--vo-green);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background-color var(--vo-fast) var(--vo-ease);
}
.vo-more:hover { background: var(--vo-sage-soft); }
.vo-more svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 240ms var(--vo-ease);
}
.vo-more[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Painel expansível: grid 0fr→1fr anima altura sem medir */
.js .vo-care__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--vo-ease), visibility 0s linear 320ms;
  visibility: hidden;
}
.js .vo-care__detail.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 320ms var(--vo-ease), visibility 0s;
}
.vo-care__detail > .vo-care__detail-inner { min-height: 0; overflow: hidden; }
.vo-care__detail-inner > p {
  margin-top: 14px;
  padding: 16px 18px;
  border-left: 2px solid var(--vo-sage);
  background: rgba(198, 209, 196, 0.22);
  border-radius: 0 10px 10px 0;
  color: var(--vo-ink);
  max-width: 36em;
}
.vo-link-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--vo-green-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: underline;
  text-decoration-color: var(--vo-sage);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  cursor: pointer;
  transition: text-decoration-color var(--vo-fast) var(--vo-ease);
}
.vo-link-cta:hover { text-decoration-color: var(--vo-green); }
.vo-link-cta .vo-btn__arrow { width: 16px; height: 16px; }

@media (min-width: 900px) {
  .vo-care__item { padding-block: 34px 30px; }
}

.vo-care__unsure {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--vo-line);
  max-width: 26rem;
}
.vo-care__unsure p { font-size: 0.9375rem; color: var(--vo-muted); }
.vo-care__unsure .vo-link-cta { margin-top: 6px; }

/* ---------- Primeira visita ---------- */
.vo-visit { background: var(--vo-sand); }
.vo-visit__grid { display: grid; gap: 44px; }
.vo-visit__media {
  border-radius: var(--vo-radius-lg);
  overflow: hidden;
  background: var(--vo-sage-soft);
  aspect-ratio: 4 / 5;
}
.vo-visit__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }

.vo-steps {
  margin-top: 36px;
  position: relative;
  counter-reset: none;
}
/* O traço da "vereda": uma linha fina que liga as etapas */
.vo-steps::before {
  content: "";
  position: absolute;
  left: 5px; top: 34px; bottom: 44px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--vo-green) 0 3px, transparent 3px 9px);
  opacity: 0.45;
}
.vo-step {
  position: relative;
  padding: 26px 0 26px 40px;
  border-top: 1px solid var(--vo-line-strong);
}
.vo-step:last-child { border-bottom: 1px solid var(--vo-line-strong); }
.vo-step::before {
  content: "";
  position: absolute;
  left: 0; top: 33px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--vo-sand);
  border: 1.5px solid var(--vo-green);
}
.vo-step:last-child::before { background: var(--vo-green); }
.vo-step__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-green);
  margin-bottom: 6px;
}
.vo-step p { margin-top: 8px; color: var(--vo-muted); max-width: 30em; }

@media (max-width: 599.98px) {
  .vo-visit__media { aspect-ratio: 4 / 4.4; border-radius: var(--vo-radius); }
}
@media (min-width: 900px) {
  .vo-visit__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: center;
  }
  .vo-visit__media { aspect-ratio: 2 / 3; max-height: 760px; }
}

/* ---------- Equipe ---------- */
.vo-team__head { display: grid; gap: 4px; }
.vo-team__head .vo-intro { margin-top: 16px; }
@media (min-width: 900px) {
  .vo-team__head {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: end;
  }
  .vo-team__head .vo-intro { margin-top: 0; padding-bottom: 6px; }
}
.vo-team__media {
  margin-top: clamp(36px, 5vw, 56px);
  border-radius: var(--vo-radius-lg);
  overflow: hidden;
  background: var(--vo-sand);
  aspect-ratio: 3 / 2;
}
.vo-team__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
@media (min-width: 720px) {
  .vo-team__media { aspect-ratio: 16 / 8.2; }
}

.vo-team__list { margin-top: 8px; }
.vo-person {
  padding-block: 24px;
  border-bottom: 1px solid var(--vo-line);
}
.vo-person__name {
  font-family: var(--vo-serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--vo-green-deep);
}
.vo-person__role {
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--vo-green);
}
.vo-person p:last-child { margin-top: 10px; color: var(--vo-muted); }
.vo-team__note { margin-top: 24px; }

@media (min-width: 720px) {
  .vo-team__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 48px);
    margin-top: 0;
  }
  .vo-person {
    padding-block: 28px 0;
    border-bottom: 0;
    border-top: 1px solid var(--vo-line-strong);
    margin-top: 28px;
  }
  .vo-team__note { margin-top: 40px; }
}

/* ---------- A clínica ---------- */
.vo-space {
  background: var(--vo-green);
  color: var(--vo-ivory);
}
.vo-space .vo-h2 { color: var(--vo-ivory); }
.vo-space .vo-intro { color: var(--vo-ivory-70); }
.vo-space :focus-visible { outline-color: var(--vo-ivory); }
.vo-space__grid { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .vo-space__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: end;
  }
  .vo-space__text { padding-bottom: 44px; }
}
.vo-zoom {
  position: relative;
  border-radius: var(--vo-radius-lg);
  overflow: hidden;
  background: var(--vo-green-deep);
  aspect-ratio: 3 / 2;
}
.vo-zoom img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--vo-ease-out);
}
.js .vo-zoom img { cursor: zoom-in; }
.vo-zoom:hover img { transform: scale(1.02); }
.vo-zoom__btn {
  position: absolute;
  right: 14px; bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--vo-ivory);
  color: var(--vo-green-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(24, 58, 52, 0.5);
  transition: background-color var(--vo-fast) var(--vo-ease), transform var(--vo-fast) var(--vo-ease);
}
.vo-zoom__btn:hover { background: var(--vo-white); transform: translateY(-1px); }
.vo-zoom__btn:focus-visible { outline: 2px solid var(--vo-ivory); outline-offset: 3px; }
.vo-zoom__btn svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round;
}
.vo-space figcaption {
  margin-top: 12px;
  color: var(--vo-ivory-70);
}

/* ---------- FAQ ---------- */
.vo-faq__list { border-top: 1px solid var(--vo-line-strong); }
.vo-faq__item { border-bottom: 1px solid var(--vo-line); }
.vo-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding-block: 18px;
  font-family: var(--vo-serif);
  font-weight: 450;
  font-size: clamp(1.1875rem, 1.1rem + 0.35vw, 1.4375rem);
  line-height: 1.35;
  color: var(--vo-green-deep);
  cursor: pointer;
  list-style: none;
  transition: color var(--vo-fast) var(--vo-ease);
}
.vo-faq__item summary::-webkit-details-marker { display: none; }
.vo-faq__item summary:hover { color: var(--vo-green); }
.vo-faq__item summary:focus-visible { outline-offset: 2px; }
.vo-faq__icon {
  position: relative;
  flex: none;
  width: 36px; height: 36px;
  border: 1px solid var(--vo-line-strong);
  border-radius: 50%;
  transition: background-color var(--vo-fast) var(--vo-ease), border-color var(--vo-fast) var(--vo-ease);
}
.vo-faq__icon::before,
.vo-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1.6px;
  margin: -0.8px 0 0 -6px;
  background: var(--vo-green);
  border-radius: 2px;
  transition: transform 260ms var(--vo-ease);
}
.vo-faq__icon::after { transform: rotate(90deg); }
.vo-faq__item[open] .vo-faq__icon { background: var(--vo-green); border-color: var(--vo-green); }
.vo-faq__item[open] .vo-faq__icon::before,
.vo-faq__item[open] .vo-faq__icon::after { background: var(--vo-ivory); }
.vo-faq__item[open] .vo-faq__icon::after { transform: rotate(0deg); }
.vo-faq__answer { overflow: hidden; }
.vo-faq__answer p {
  padding: 0 56px 26px 0;
  color: var(--vo-muted);
  max-width: 38em;
}

/* ---------- Localização ---------- */
.vo-place { background: var(--vo-sand); }
.vo-place__grid { display: grid; gap: 40px; align-items: center; }
.vo-place__label {
  margin-top: 36px;
  font-family: var(--vo-serif);
  font-weight: 450;
  font-size: clamp(1.75rem, 1.4rem + 1.3vw, 2.5rem);
  line-height: 1.1;
  color: var(--vo-green-deep);
}
.vo-place__sep { color: var(--vo-green); opacity: 0.55; padding-inline: 4px; }
.vo-place__tag {
  margin-top: 10px;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-green);
}
.vo-place__aux {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--vo-line-strong);
  max-width: 30em;
}
.vo-place__real {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.vo-place__real dt { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vo-green); }
.vo-place__real dd { margin: 4px 0 0; }

.vo-place__art {
  border-radius: var(--vo-radius-lg);
  background: var(--vo-ivory);
  padding: clamp(12px, 3vw, 28px);
}
.vo-place__art svg { width: 100%; height: auto; }
.vo-place__contours { stroke: var(--vo-sage); }
.vo-place__contours path:nth-child(odd) { stroke: #b5c2b2; }
.vo-place__trail { stroke: var(--vo-green); }
.vo-place__node { fill: var(--vo-ivory); stroke: var(--vo-green); stroke-width: 2; }
.vo-place__node--end { fill: var(--vo-green); }

@media (min-width: 900px) {
  .vo-place__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(48px, 7vw, 112px);
  }
}

/* ---------- Fechamento ---------- */
.vo-closing { padding-block: var(--vo-section); }
.vo-closing__panel {
  display: grid;
  gap: 28px;
  padding: clamp(32px, 6vw, 72px);
  border-radius: var(--vo-radius-lg);
  background: var(--vo-green);
  color: var(--vo-ivory);
  position: relative;
  overflow: hidden;
}
.vo-closing .vo-h2 { color: var(--vo-ivory); }
.vo-closing .vo-intro { color: var(--vo-ivory-70); margin-top: 14px; }
.vo-closing__panel > * { position: relative; z-index: 1; }
.vo-closing__panel .vo-btn { justify-self: start; }
@media (max-width: 599.98px) {
  .vo-closing__panel .vo-btn { justify-self: stretch; white-space: normal; text-align: center; padding-inline: 18px; }
}
@media (min-width: 900px) {
  .vo-closing__panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
  }
}

/* ---------- Rodapé ---------- */
.vo-footer {
  background: var(--vo-green-deep);
  color: var(--vo-ivory-70);
  padding-block: 56px 96px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.vo-footer a {
  color: var(--vo-ivory);
  text-decoration: none;
  transition: color var(--vo-fast) var(--vo-ease);
}
.vo-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.vo-footer :focus-visible { outline-color: var(--vo-ivory); }
.vo-footer .vo-brand { color: var(--vo-ivory); }
.vo-footer .vo-brand__kind { color: var(--vo-ivory-70); }
.vo-brand--small .vo-brand__name { font-size: 1.375rem; }
.vo-footer__grid { display: grid; gap: 32px; }
.vo-footer__notice { margin-top: 14px; max-width: 30em; }
.vo-footer__nav ul { display: flex; flex-wrap: wrap; gap: 4px 20px; list-style: none; }
.vo-footer__nav a,
.vo-footer__credit a { display: inline-flex; align-items: center; min-height: 32px; }
.vo-footer__credit p + p { margin-top: 2px; }
@media (min-width: 900px) {
  .vo-footer { padding-block: 64px 72px; }
  .vo-footer__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
    gap: 48px;
    align-items: start;
  }
  .vo-footer__nav ul { flex-direction: column; gap: 0; }
  .vo-footer__credit { text-align: right; }
}

/* ---------- Botão flutuante (contratar um site) ---------- */
.vo-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: var(--vo-ink);
  color: var(--vo-ivory);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px -12px rgba(24, 40, 36, 0.55);
  transition: opacity 220ms var(--vo-ease), transform 220ms var(--vo-ease), visibility 0s, background-color 240ms var(--vo-ease), color 240ms var(--vo-ease);
}
.vo-float:hover { background: var(--vo-green-deep); }
.vo-float:focus-visible { outline: 2px solid var(--vo-green); outline-offset: 3px; }
.vo-float svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--vo-sage); stroke-width: 1.7; stroke-linejoin: round;
}
/* Sobre fundos verdes, o botão inverte para continuar visível */
.vo-float.is-on-dark { background: var(--vo-ivory); color: var(--vo-green-deep); }
.vo-float.is-on-dark svg { stroke: var(--vo-green); }
.vo-float.is-on-dark:hover { background: var(--vo-white); }
.vo-float.is-on-dark:focus-visible { outline-color: var(--vo-ivory); }
.vo-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms var(--vo-ease), transform 180ms var(--vo-ease), visibility 0s linear 180ms;
}
@media (max-width: 599.98px) {
  .vo-float { min-height: 44px; padding: 0 14px 0 12px; font-size: 0.8125rem; }
}

/* ---------- Diálogos ---------- */
.vo-dialog {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--vo-ink);
  max-width: none;
  max-height: none;
  overflow: visible;
}
.vo-dialog::backdrop {
  background: rgba(24, 40, 36, 0.52);
  opacity: 0;
  transition: opacity 220ms var(--vo-ease);
}
.vo-dialog.is-open::backdrop { opacity: 1; }

.vo-close {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--vo-line-strong);
  border-radius: 50%;
  background: var(--vo-white);
  color: var(--vo-green-deep);
  cursor: pointer;
  transition: background-color var(--vo-fast) var(--vo-ease);
}
.vo-close:hover { background: var(--vo-sage-soft); }
.vo-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

/* Agendamento */
.vo-booking {
  width: min(560px, calc(100vw - 24px));
  margin: auto;
}
.vo-dialog__panel {
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 26px clamp(20px, 5vw, 36px) 22px;
  border-radius: var(--vo-radius-lg);
  background: var(--vo-ivory);
  box-shadow: 0 30px 80px -30px rgba(24, 40, 36, 0.55);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 220ms var(--vo-ease), transform 240ms var(--vo-ease-out);
}
.vo-booking.is-open .vo-dialog__panel { opacity: 1; transform: none; }
.vo-booking__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.vo-booking__title {
  font-family: var(--vo-serif);
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.2;
  color: var(--vo-green-deep);
}
.vo-booking__note {
  margin-top: 8px;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--vo-sage);
  color: var(--vo-green-deep);
  font-size: 0.8125rem;
  font-weight: 600;
}
.vo-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 22px;
}
.vo-progress span {
  height: 3px;
  border-radius: 3px;
  background: var(--vo-line);
  position: relative;
  overflow: hidden;
}
.vo-progress span::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--vo-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--vo-ease);
}
.vo-progress span.is-active::after { transform: scaleX(1); }

.vo-booking__step { margin-top: 22px; }
.vo-booking.is-stepping .vo-booking__step:not([hidden]) { animation: vo-step-in 260ms var(--vo-ease-out) both; }
@keyframes vo-step-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}
.vo-booking__count {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vo-green);
}
.vo-booking__q {
  margin-top: 6px;
  font-family: var(--vo-serif);
  font-weight: 450;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--vo-green-deep);
}
.vo-booking__q:focus { outline: none; }
.vo-booking__q:focus-visible { outline: 2px solid var(--vo-green); outline-offset: 4px; }
.vo-booking__hint { margin-top: 8px; font-size: 0.875rem; color: var(--vo-muted); }

.vo-choices { margin: 16px 0 0; padding: 0; border: 0; min-width: 0; }
.vo-choices > div { display: grid; gap: 8px; }
.vo-choices--row > div { grid-template-columns: 1fr 1fr; }
.vo-choice { position: relative; display: block; }
.vo-choice input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.vo-choice span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--vo-line-strong);
  border-radius: 12px;
  background: var(--vo-white);
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--vo-fast) var(--vo-ease), background-color var(--vo-fast) var(--vo-ease), box-shadow var(--vo-fast) var(--vo-ease);
}
.vo-choice span::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--vo-line-strong);
  background: var(--vo-white);
  transition: border-color var(--vo-fast) var(--vo-ease), box-shadow var(--vo-fast) var(--vo-ease);
}
.vo-choice span:hover { border-color: var(--vo-green); }
.vo-choice input:checked + span {
  border-color: var(--vo-green);
  background: #eef2ec;
  box-shadow: inset 0 0 0 1px var(--vo-green);
}
.vo-choice input:checked + span::before {
  border-color: var(--vo-green);
  box-shadow: inset 0 0 0 4px var(--vo-white);
  background: var(--vo-green);
}
.vo-choice input:focus-visible + span { outline: 2px solid var(--vo-green); outline-offset: 2px; }
.vo-choices[aria-invalid="true"] .vo-choice span { border-color: rgba(154, 51, 36, 0.55); }

.vo-error {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vo-error);
}
.vo-error::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--vo-error);
  color: var(--vo-white);
  font-size: 0.75rem;
}

.vo-summary { margin: 16px 0 0; border-top: 1px solid var(--vo-line-strong); }
.vo-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid var(--vo-line);
}
.vo-summary dt { color: var(--vo-muted); font-size: 0.9375rem; }
.vo-summary dd { margin: 0; font-weight: 600; text-align: right; color: var(--vo-green-deep); }

.vo-booking__done { text-align: left; }
.vo-booking__mark {
  width: 48px; height: 48px;
  fill: none; stroke: var(--vo-green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 14px;
}
.vo-booking__mark circle { fill: var(--vo-sage); stroke: none; }
.vo-booking__done > p { margin-top: 8px; color: var(--vo-ink); }
.vo-booking__dev {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--vo-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vo-booking__dev-label { font-size: 0.875rem; color: var(--vo-muted); }

.vo-booking__actions {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--vo-line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vo-booking__actions [data-vo-next] { margin-left: auto; }
.vo-booking__actions .vo-btn { min-height: 48px; }

@media (max-width: 599.98px) {
  .vo-booking {
    width: 100vw;
    margin: auto 0 0;
  }
  .vo-booking .vo-dialog__panel {
    max-height: 92dvh;
    border-radius: 20px 20px 0 0;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    transform: translateY(24px);
  }
  .vo-booking__title { font-size: 1.4375rem; }
  .vo-booking__actions .vo-btn--text { padding: 0 10px; }
  .vo-booking__actions [data-vo-next] { padding: 0 18px; }
}

/* Lightbox */
.vo-lightbox {
  width: min(1200px, calc(100vw - 32px));
  margin: auto;
}
.vo-lightbox__panel {
  position: relative;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 220ms var(--vo-ease), transform 260ms var(--vo-ease-out);
}
.vo-lightbox.is-open .vo-lightbox__panel { opacity: 1; transform: none; }
.vo-lightbox figure {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
.vo-lightbox img {
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 110px);
  border-radius: var(--vo-radius);
  background: var(--vo-green-deep);
}
.vo-lightbox figcaption {
  margin-top: 12px;
  color: var(--vo-ivory);
  font-size: 0.875rem;
  text-align: center;
}
.vo-lightbox .vo-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  background: var(--vo-ivory);
  border-color: transparent;
}
.vo-lightbox::backdrop { background: rgba(18, 30, 27, 0.86); }

body.vo-locked { overflow: hidden; }

/* ---------- Revelação ao rolar (só quando o JS confirma que pode) ---------- */
.vo-motion [data-vo-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 440ms var(--vo-ease-out), transform 440ms var(--vo-ease-out);
  transition-delay: var(--vo-delay, 0ms);
}
.vo-motion [data-vo-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
  .vo-motion [data-vo-reveal] { opacity: 1; transform: none; }
  .vo-zoom:hover img { transform: none; }
}
