/* ==========================================================
   DRA. CAMILA ANDRADE
   Source Sans 3 — sólida, profissional, zero decoração
   ========================================================== */

:root {
  --black: #111110;
  --black-soft: #1A1918;
  --white: #F7F5F1;
  --white-soft: #EDEAE4;
  --gray: #6B6762;
  --gray-light: #9C9892;
  --gold: #B8945A;
  --gold-light: #D4B078;
  --gold-glow: rgba(184, 148, 90, 0.35);
  --cyan: #3EE8D4;
  --cyan-dim: rgba(62, 232, 212, 0.15);
  --cyan-glow: rgba(62, 232, 212, 0.45);

  --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-dur: 0.72s;
  --motion-dur-fast: 0.48s;
  --motion-shift: 52px;
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.35, 0.64, 1);
  --shell: min(1140px, 90vw);
  --shell-pad: max(1rem, env(safe-area-inset-left, 0px));
  --safe-top: env(safe-area-inset-top, 0px);
  --header-bar: 72px;
  --header-h: calc(var(--header-bar) + var(--safe-top));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray);
  background: var(--white);
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior: none;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

body.menu-open { overflow: hidden; }

.site-main {
  overflow-x: clip;
  max-width: 100%;
}

/* Scroll hints — nunca exibir em nenhum dispositivo */
.hero__scroll,
.hero__scroll-bar {
  display: none !important;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* ---- Sections ---- */

.panel {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 clamp(3rem, 8vh, 5rem);
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100%;
}

.panel[id] {
  scroll-margin-top: var(--header-h);
}

.hero.panel {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: var(--header-h);
  padding-bottom: clamp(0.75rem, 2vh, 1.5rem);
  box-sizing: border-box;
}

.hero.panel > .shell {
  width: var(--shell);
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.contato.panel {
  min-height: min(100svh, 920px);
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--black);
}

.contato.panel > .panel__stage {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.panel--dark {
  background: var(--black);
  color: var(--white);
}

.panel__stage {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.panel__stage.is-in .motion {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

/* ---- Motion items ---- */

.motion {
  opacity: 0;
  max-width: 100%;
  transition:
    opacity var(--motion-dur) var(--ease-reveal),
    transform var(--motion-dur) var(--ease-reveal),
    filter var(--motion-dur) var(--ease-reveal),
    clip-path var(--motion-dur) var(--ease-reveal);
  will-change: opacity, transform;
}

.motion[data-motion="left"]  { transform: translate3d(calc(var(--motion-shift) * -0.5), 0, 0); }
.motion[data-motion="right"] { transform: translate3d(calc(var(--motion-shift) * 0.5), 0, 0); }
.motion[data-motion="up"]    { transform: translate3d(0, 32px, 0); }
.motion[data-motion="scale"] { transform: scale(0.9); }

.motion[data-motion="blur"] {
  filter: blur(10px);
  transform: translate3d(0, 14px, 0);
}

.motion[data-motion="clip"] {
  clip-path: inset(100% 0 0 0);
  transform: translate3d(0, 12px, 0);
}

.motion[data-motion="reveal"] {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translate3d(0, 18px, 0);
}

.motion.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

.motion[data-motion="reveal"].is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ---- Cursor glow (desktop) ---- */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: soft-light;
  will-change: transform;
}

body:hover .cursor-glow { opacity: 0.35; }

@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* ---- Scroll progress ---- */

.scroll-progress {
  position: fixed;
  top: calc(var(--header-h) - 2px);
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 201;
  pointer-events: none;
}

/* ---- Typography ---- */

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.label--gold { color: var(--gold-light); }

.h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.h2--light { color: var(--white); }

.text p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 46ch;
}

.text p:last-child { margin-bottom: 0; }

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(247, 245, 241, 0.25);
  padding: calc(0.9rem - 1.5px) calc(1.85rem - 1.5px);
}

.btn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(17, 17, 16, 0.18);
  padding: calc(0.9rem - 1.5px) calc(1.85rem - 1.5px);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---- Header ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--header-h);
  padding: var(--safe-top) max(var(--shell-pad), 5vw) 0 max(var(--shell-pad), 5vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
  min-width: 0;
}

.header.scrolled {
  background: rgba(17, 17, 16, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header--on-light .header__name { color: var(--black); }
.header--on-light .header__nav a { color: var(--gray); }
.header--on-light .header__nav a:hover { color: var(--black); }
.header--on-light .header__nav a.is-active { color: var(--gold); }
.header--on-light .header__menu span { background: var(--black); }

.header--on-light.scrolled {
  background: rgba(247, 245, 241, 0.92);
  box-shadow: 0 1px 0 rgba(17, 17, 16, 0.08);
}

.header--on-light.scrolled .header__name { color: var(--black); }
.header--on-light.scrolled .header__nav a { color: var(--gray); }
.header--on-light.scrolled .header__nav a:hover { color: var(--black); }

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex-shrink: 1;
}

.header__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--black);
  background: var(--gold);
}

.header.scrolled .header__mark {
  color: var(--black);
}

.header__name {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.header__name-prefix {
  color: var(--gold-light);
}

.header--on-light .header__name-prefix {
  color: var(--gold);
}

.header__nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2.25rem);
  flex-shrink: 0;
}

.header__nav a {
  font-size: clamp(11px, 1vw, 13px);
  white-space: nowrap;
  font-weight: 600;
  color: rgba(247, 245, 241, 0.55);
  transition: color 0.25s;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.header__nav a:hover { color: var(--white); }
.header__nav a:hover::after { width: 100%; }

.header__nav a.is-active {
  color: var(--gold-light);
}

.header__nav a.is-active::after {
  width: 100%;
}

.header__btn {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  padding: 0.6rem clamp(0.85rem, 1.5vw, 1.25rem);
  background: var(--gold);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.3s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.header__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

.header__menu.active span:first-child { transform: translateY(4.5px) rotate(45deg); }
.header__menu.active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---- Mobile nav ---- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 290;
  padding-top: var(--header-h);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav a {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold-light); }

.mobile-nav__btn {
  margin-top: 1rem;
  font-size: 14px !important;
  padding: 0.9rem 1.85rem;
  background: var(--gold);
  color: var(--black) !important;
}

/* ---- Hero ---- */

.hero {
  background: var(--black);
  color: var(--white);
}

.hero__inner {
  width: 100%;
  margin-inline: auto;
  min-height: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.5vh, 1rem);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(280px, 48vh, 420px);
  background: transparent;
  overflow: hidden;
  min-width: 0;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero__visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(to top, var(--black) 8%, rgba(17, 17, 16, 0.85) 45%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__image {
  display: block;
  width: auto;
  height: 106%;
  max-width: 108%;
  object-fit: contain;
  object-position: bottom center;
  opacity: 1;
  transition: transform 0.15s linear;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(212, 176, 120, 0.3);
  margin-bottom: 2rem;
  width: fit-content;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero__title {
  font-size: clamp(1.85rem, 7vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: var(--white);
  text-wrap: balance;
}

.hero__title--typewriter {
  position: relative;
  overflow: visible;
}

.hero__title-ghost {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  display: block;
}

.hero__title-ghost--desktop {
  display: none;
}

.hero__highlight {
  color: var(--gold-light);
}

.hero__typewriter {
  position: absolute;
  inset: 0;
  text-align: inherit;
  overflow: visible;
  white-space: normal;
}

.hero__typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 1px;
  vertical-align: -0.06em;
  background: var(--gold-light);
  animation: heroCursorBlink 0.9s step-end infinite;
}

.hero__typewriter-cursor.is-done {
  opacity: 0;
  animation: none;
}

@keyframes heroCursorBlink {
  50% { opacity: 0; }
}

.hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(247, 245, 241, 0.65);
  max-width: 38ch;
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  padding-top: 0.85rem;
  margin-top: 0;
  border-top: 1px solid rgba(212, 176, 120, 0.15);
  flex-shrink: 0;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__proof-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__proof-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(247, 245, 241, 0.52);
}

.hero__proof-sep {
  width: 1px;
  height: 2.25rem;
  background: rgba(212, 176, 120, 0.22);
  flex-shrink: 0;
}

.hero__proof-stars {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1;
}

/* ---- Sobre ---- */

.sobre__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "visual head"
    "visual content";
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.sobre__head {
  grid-area: head;
  align-self: end;
  margin-bottom: 0;
}

.sobre__head .h2 {
  margin-bottom: 0;
}

.sobre__visual {
  grid-area: visual;
}

.sobre__content {
  grid-area: content;
  align-self: start;
}

.sobre__frame {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(280px, 45vh, 520px);
  background: linear-gradient(160deg, var(--black-soft) 0%, var(--black) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.sobre__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(184, 148, 90, 0.06) 50%,
    transparent 60%
  );
  animation: shineMove 6s ease-in-out infinite;
}

@keyframes shineMove {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.sobre__frame img {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 380px;
  object-fit: contain;
  object-position: bottom;
  transition: transform 0.5s var(--ease);
}

.sobre__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.sobre__chips span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.5rem 1rem;
  background: rgba(17, 17, 16, 0.04);
  border: 1px solid rgba(17, 17, 16, 0.1);
}

.sobre {
  background: var(--white);
}

.sobre .text p {
  color: var(--gray);
}

/* ---- Pacientes / Carrossel ---- */

.block-head--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.block-head--center .h2 {
  margin-bottom: 0.85rem;
}

.pacientes {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.pacientes__lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: rgba(247, 245, 241, 0.62);
  max-width: 52ch;
  margin-inline: auto;
}

.carousel {
  position: relative;
  width: 100%;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-inline: max(1rem, env(safe-area-inset-left, 0px));
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.carousel__viewport.is-dragging {
  cursor: grabbing;
}

.carousel__track {
  display: flex;
  gap: var(--carousel-gap, 0.75rem);
  will-change: transform;
  transition: transform 0.65s var(--ease);
}

.carousel__track.is-dragging,
.carousel__track.no-transition {
  transition: none;
}

.carousel__slide {
  flex: 0 0 var(--carousel-slide, 78%);
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
}

.carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px));
}

.carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(212, 176, 120, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.carousel__btn svg {
  width: 18px;
  height: 18px;
}

.carousel__btn:hover {
  background: rgba(184, 148, 90, 0.14);
  border-color: rgba(212, 176, 120, 0.55);
  transform: scale(1.05);
}

.carousel__btn:active {
  transform: scale(0.96);
}

.carousel__count {
  min-width: 4.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: rgba(247, 245, 241, 0.55);
  user-select: none;
}

@media (min-width: 769px) {
  .carousel {
    --carousel-slide: calc((100% - 1.5rem) / 3);
    --carousel-gap: 0.75rem;
    padding-inline: max(calc((100% - var(--shell)) / 2 + var(--shell-pad)), var(--shell-pad));
  }

  .carousel__slide {
    aspect-ratio: 3 / 4;
  }
}

@media (min-width: 1100px) {
  .carousel {
    --carousel-slide: calc((min(1140px, 90vw) - 1.5rem) / 3);
  }
}

/* ---- Resultados ---- */

.resultados {
  background: var(--white);
  color: var(--black);
}

.resultados .block-head {
  margin-bottom: 1rem;
}

.resultados .block-head .h2 {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  margin-bottom: 0;
}

.block-head { margin-bottom: 2rem; }

.bento {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0.75rem;
  width: 100%;
  max-width: min(720px, 100%);
  margin-inline: auto;
  height: auto;
}

.bento__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--ease);
}

.bento__item--hero {
  grid-row: span 3;
  min-height: 280px;
}

.bento__item:not(.bento__item--hero) {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.bento__item:hover {
  transform: translateY(-2px);
}

.bento__item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: filter 0.4s;
}

.bento__item:hover img {
  filter: brightness(0.92);
}

.bento__cap {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(17,17,16,0.92) 0%, transparent 100%);
  pointer-events: none;
  transition: background 0.35s;
}

.bento__item:hover .bento__cap {
  background: linear-gradient(to top, rgba(17,17,16,0.95) 0%, rgba(17,17,16,0.15) 100%);
}

.bento__cap span {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.bento__cap h3 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.resultados__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 16, 0.08);
}

.resultados__foot p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
}

/* ---- Procedimentos ---- */

.procedimentos__lead {
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  color: rgba(247, 245, 241, 0.62);
  max-width: 46ch;
  margin-top: -0.5rem;
}

.procedimentos .proc-grid {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.procedimentos .proc-card {
  background: var(--black-soft);
}

.procedimentos .proc-card:hover {
  background: rgba(26, 25, 24, 0.92);
}

.procedimentos .proc-card h3 {
  color: var(--white);
}

.procedimentos .proc-card p {
  color: rgba(247, 245, 241, 0.62);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1px;
  background: rgba(17, 17, 16, 0.08);
  border: 1px solid rgba(17, 17, 16, 0.08);
}

.proc-card {
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem);
  transition: background 0.35s, transform 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.proc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.proc-card:hover {
  background: var(--white-soft);
  transform: translateX(6px);
}

.proc-card:hover::before { width: 100%; }

.proc-card__n {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.proc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.proc-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* ---- Localização ---- */

.localizacao {
  background: var(--white-soft);
}

.localizacao.panel {
  padding: clamp(2.5rem, 6vh, 4rem) 0;
}

.localizacao__lead {
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  color: var(--gray);
  max-width: 48ch;
  margin-inline: auto;
}

.localizacao__body {
  max-width: min(920px, 100%);
  margin-inline: auto;
}

.localizacao__map {
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(17, 17, 16, 0.08);
  background: var(--white);
  aspect-ratio: 21 / 9;
  max-height: min(42vw, 320px);
}

.localizacao__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.localizacao__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 16, 0.08);
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.localizacao__city {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

.localizacao__address {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gray);
}

.localizacao__route {
  flex-shrink: 0;
}

/* ---- Contato ---- */

.contato {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contato__stage {
  position: relative;
  width: 100%;
  min-height: inherit;
  padding:
    calc(var(--header-h) + clamp(1.5rem, 4vh, 2.5rem))
    max(1.25rem, var(--shell-pad))
    max(clamp(2rem, 5vh, 3rem), env(safe-area-inset-bottom, 0px));
}

.contato__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 85% at 50% -15%, rgba(184, 148, 90, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 90% 55% at 50% 8%, rgba(184, 148, 90, 0.1) 0%, transparent 52%),
    radial-gradient(circle at 15% 85%, rgba(184, 148, 90, 0.07) 0%, transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(184, 148, 90, 0.06) 0%, transparent 38%),
    linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}

.contato__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 0;
  text-align: center;
}

.contato__headline {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.contato__lead {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.75;
  color: rgba(247, 245, 241, 0.55);
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-inline: auto;
}

.contato__cta-wrap {
  margin-bottom: 2rem;
}

.contato__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  padding: 1.15rem 1.35rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  border-radius: 4px;
  text-align: left;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 16px 48px rgba(184, 148, 90, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.3);
  animation: ctaPulse 3s ease-in-out infinite;
}

.contato__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 24px 64px rgba(184, 148, 90, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.contato__cta-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(17, 17, 16, 0.12);
  border-radius: 50%;
}

.contato__cta-icon svg {
  width: 26px;
  height: 26px;
}

.contato__cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contato__cta-text strong {
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contato__cta-text small {
  font-size: clamp(11px, 2.5vw, 12px);
  font-weight: 600;
  opacity: 0.75;
  line-height: 1.4;
}

.contato__cta-arrow {
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 700;
  opacity: 0.7;
  transition: transform 0.3s var(--ease-reveal);
}

.contato__cta:hover .contato__cta-arrow {
  transform: translateX(4px);
}

.contato__cta-note {
  margin-top: 0.85rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.35);
}

.contato__cta-note a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}

.contato__cta-note a:hover {
  color: var(--white);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset, 0 16px 48px rgba(184,148,90,0.35), 0 4px 16px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset, 0 20px 56px rgba(184,148,90,0.45), 0 6px 20px rgba(0,0,0,0.35); }
}

.contato__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.contato__ig {
  font-size: 14px;
  font-weight: 600;
  color: rgba(247, 245, 241, 0.45);
  transition: color 0.3s;
}

.contato__ig:hover { color: var(--gold-light); }

.contato__cro {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.25);
}

.contato__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 500;
  color: rgba(247, 245, 241, 0.35);
}

/* ---- Footer ---- */

.footer {
  padding: 1.5rem 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 500;
  color: rgba(247, 245, 241, 0.35);
}

/* ---- FAB ---- */

.fab {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 100;
  width: 54px;
  height: 54px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.fab svg { width: 26px; height: 26px; }

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 36px var(--gold-glow);
}

/* ---- Lightbox ---- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(17, 17, 16, 0.96);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: min(92%, calc(100vw - 2rem));
  max-height: 88vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.25rem;
  cursor: pointer;
  opacity: 0.5;
  line-height: 1;
  transition: opacity 0.3s;
}

.lightbox__close:hover { opacity: 1; }

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .motion {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: inset(0 0 0 0) !important;
  }

  .hero__typewriter-cursor {
    display: none;
  }
}

@media (min-width: 961px) {
  .hero.panel {
    min-height: 100dvh;
    height: 100dvh;
    padding-bottom: clamp(1rem, 2.5vh, 2rem);
    overflow: hidden;
  }

  .hero.panel > .shell {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1rem, 2.5vw, 2rem);
  }

  .hero__inner {
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .hero__content {
    flex: 0 1 min(540px, 50%);
    justify-content: center;
    align-self: center;
    gap: clamp(0.65rem, 1.4vh, 0.95rem);
    padding-bottom: clamp(0.5rem, 1.5vh, 1rem);
  }

  .hero__badge {
    margin-bottom: 0.5rem;
  }

  .hero__title {
    text-align: left;
    font-size: clamp(2rem, 2.8vw, 3.15rem);
    line-height: 1.1;
    margin-bottom: 0;
  }

  .hero__title-ghost--mobile {
    display: none;
  }

  .hero__title-ghost--desktop {
    display: block;
  }

  .hero__visual {
    flex: 0 1 50%;
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    height: calc(100dvh - var(--header-h) - clamp(1rem, 2.5vh, 2rem));
    max-height: calc(100dvh - var(--header-h) - clamp(1rem, 2.5vh, 2rem));
    margin-inline: 0;
    justify-content: center;
    align-self: flex-end;
    overflow: visible;
  }

  .hero__image {
    object-position: bottom center;
    width: auto;
    height: 108%;
    max-height: calc(100dvh - var(--header-h) - clamp(1rem, 2.5vh, 2rem));
    max-width: 118%;
    object-fit: contain;
  }

  .hero__cta {
    margin-top: 0.25rem;
    gap: 1rem;
  }

  .hero__proof {
    margin-top: 0.15rem;
    padding-top: 0.75rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero__desc {
    max-width: 38ch;
  }
}

@media (max-width: 1100px) and (min-width: 961px) {
  .header__nav {
    gap: 0.85rem;
  }

  .header__nav a {
    font-size: 12px;
  }

  .header__btn {
    padding: 0.55rem 0.85rem;
    font-size: 11px;
  }
}

@media (max-height: 760px) and (min-width: 961px) {
  .hero__title {
    font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  }

  .hero__visual {
    height: min(58vh, calc(100dvh - var(--header-h) - 1.5rem));
    max-height: calc(100dvh - var(--header-h) - 1.5rem);
  }

  .hero__image {
    max-height: calc(100dvh - var(--header-h) - 1.5rem);
  }

  .hero__cta {
    gap: 0.65rem;
  }
}

@media (max-width: 960px) {
  :root {
    --motion-shift: 50px;
    --shell: 100%;
    --header-bar: 60px;
  }

  .shell {
    width: 100%;
    padding-inline: max(1.25rem, var(--shell-pad));
  }

  .header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .header.scrolled:not(.header--on-light) {
    background: rgba(17, 17, 16, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .header--on-light {
    background: rgba(247, 245, 241, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(17, 17, 16, 0.08);
  }

  .header--on-light .header__menu span {
    background: var(--black);
  }

  .header__nav,
  .header__btn {
    display: none;
  }

  .header__menu {
    display: flex;
    flex-shrink: 0;
  }

  .header__brand {
    flex: 1;
    min-width: 0;
    gap: 0.55rem;
  }

  .header__mark {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .header__name {
    max-width: none;
    flex: 1;
    min-width: 0;
    font-size: clamp(11px, 3.15vw, 13px);
    letter-spacing: 0;
  }

  .header {
    padding-inline: max(1rem, var(--shell-pad));
    gap: 0.65rem;
  }

  .panel {
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: clamp(2.5rem, 6vh, 4rem);
    width: 100%;
  }

  .hero.panel {
    min-height: 100svh;
    min-height: 100dvh;
    height: 100svh;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-h);
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    padding-inline: 0;
    overflow: hidden;
  }

  .hero.panel > .shell {
    width: 100%;
    max-width: 100%;
    padding-inline: max(1.25rem, var(--shell-pad));
    display: grid;
    grid-template-areas:
      "title"
      "photo"
      "cta"
      "proof";
    align-content: center;
    gap: clamp(0.45rem, 1.2vh, 0.75rem);
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .hero__inner {
    display: contents;
  }

  .hero__content {
    display: contents;
  }

  .hero__badge {
    display: none;
  }

  .hero__title {
    grid-area: title;
    flex-shrink: 0;
    text-align: center;
    font-size: clamp(1.32rem, 4.6vw, 1.58rem);
    line-height: 1.28;
    letter-spacing: -0.018em;
    padding-inline: 0.15rem;
    max-width: 17.5em;
    margin-inline: auto;
    text-wrap: initial;
  }

  .hero__title-ghost--mobile {
    display: block;
  }

  .hero__title-ghost--desktop {
    display: none;
  }

  .hero__visual {
    grid-area: photo;
    height: clamp(220px, 38vh, 320px);
    max-height: min(42vh, 340px);
    max-width: min(340px, 100%);
    width: 100%;
    margin-inline: auto;
  }

  .hero__image {
    height: 106%;
    max-width: 108%;
  }

  .hero__cta {
    grid-area: cta;
    flex-shrink: 0;
    align-items: center;
    width: 100%;
    max-width: min(20rem, 100%);
    margin-inline: auto;
    gap: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(212, 176, 120, 0.12);
  }

  .hero__proof {
    grid-area: proof;
    width: 100%;
    justify-content: center;
    gap: 1rem 1.25rem;
    padding-top: 0.65rem;
    margin-top: 0;
    border-top: 1px solid rgba(212, 176, 120, 0.12);
  }

  .hero__proof-item {
    align-items: center;
    text-align: center;
  }

  .contato.panel {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 0;
  }

  .contato.panel > .panel__stage {
    padding-inline: 0;
  }

  .contato__stage {
    padding-inline: max(1.25rem, var(--shell-pad));
  }

  .hero__badge {
    display: none;
  }

  /* Animações só verticais no mobile — evita scroll lateral no iOS */
  .motion[data-motion="left"],
  .motion[data-motion="right"] {
    transform: translate3d(0, 24px, 0);
  }

  .hero__visual::after {
    height: 42%;
    background: linear-gradient(to top, var(--black) 12%, rgba(17, 17, 16, 0.88) 55%, transparent 100%);
  }

  .hero__cta {
    flex-shrink: 0;
    align-items: center;
    width: 100%;
    max-width: min(20rem, 100%);
    margin-inline: auto;
    gap: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(212, 176, 120, 0.12);
  }

  .hero__desc {
    width: 100%;
    max-width: none;
    padding-inline: 0;
    margin-inline: 0;
    text-align: center;
    text-wrap: balance;
    font-size: clamp(0.875rem, 3.6vw, 0.9375rem);
    line-height: 1.72;
    color: rgba(247, 245, 241, 0.55);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-inline: 0;
    gap: 0.5rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.68rem 1rem;
    font-size: clamp(10px, 2.8vw, 11px);
    letter-spacing: 0.06em;
  }

  .hero__actions .btn--outline {
    border-color: rgba(212, 176, 120, 0.28);
    color: rgba(247, 245, 241, 0.78);
    background: rgba(212, 176, 120, 0.04);
  }

  .hero__proof {
    width: 100%;
    justify-content: center;
    gap: 1rem 1.25rem;
    padding-top: 1rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(212, 176, 120, 0.12);
  }

  .hero__proof-item {
    align-items: center;
    text-align: center;
  }

  .hero__proof-value {
    font-size: 1.05rem;
  }

  .hero__proof-label {
    font-size: 0.68rem;
  }

  .sobre__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "visual"
      "content";
    gap: clamp(1.25rem, 4vw, 2rem);
  }

  .sobre__head {
    align-self: auto;
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .sobre__head .h2 {
    text-wrap: balance;
  }

  .sobre__visual,
  .sobre__content {
    align-self: auto;
  }

  .sobre__frame {
    min-height: clamp(240px, 38vh, 400px);
  }

  .sobre__frame img {
    width: min(85%, 320px);
  }

  .resultados .block-head {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .pacientes .block-head {
    margin-bottom: 1rem;
  }

  .pacientes__lead {
    font-size: 0.98rem;
  }

  .carousel {
    margin-top: 1.25rem;
  }

  .carousel__controls {
    margin-top: 1rem;
  }

  .localizacao.panel {
    padding: clamp(2rem, 5vh, 3rem) 0;
  }

  .localizacao__map {
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }

  .localizacao__foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .localizacao__route {
    width: 100%;
  }

  .resultados .block-head .h2 {
    text-wrap: balance;
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
    margin-inline: 0;
  }

  .bento__item,
  .bento__item--hero {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
    max-height: min(88vw, 420px);
    min-height: 220px;
    width: 100%;
  }

  .bento__item img {
    object-fit: cover;
    object-position: center;
  }

  .resultados__foot {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .text p {
    max-width: none;
  }

  .contato__cta {
    padding: 0.75rem 0.9rem;
    gap: 0.65rem;
    max-width: min(300px, 100%);
  }

  .contato__cta-icon {
    width: 38px;
    height: 38px;
  }

  .contato__cta-icon svg {
    width: 20px;
    height: 20px;
  }

  .contato__cta-text strong {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
  }

  .contato__cta-text small {
    font-size: 9.5px;
    line-height: 1.35;
  }

  .contato__cta-arrow {
    font-size: 1rem;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 600px) {
  .shell {
    padding-inline: max(1rem, var(--shell-pad));
  }

  .hero.panel > .shell {
    padding-inline: max(1rem, var(--shell-pad));
  }

  .bento {
    max-width: 100%;
  }

  .fab {
    width: 50px;
    height: 50px;
  }

  .fab svg {
    width: 24px;
    height: 24px;
  }
}
