/* ===========================================================
   PEZZI RODRIGUES — styles.css (v8)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500&display=swap');

:root {
  --cor-preto: #1a1a1a;
  --cor-creme: #fff8d7;
  --cor-branco: #ffffff;
  --cor-fundo: #f4f4f4;
  --cor-card-escuro: #292929;
  --fonte-sans: 'Instrument Sans', sans-serif;
  --fonte-serif: 'Instrument Serif', serif;
  --fonte-inter: 'Inter', sans-serif;
  --ease-apple: cubic-bezier(.19, 1, .22, 1);
  --ease-apple-2: cubic-bezier(.16, 1, .3, 1);
  --header-h: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--cor-fundo);
  color: var(--cor-preto);
  font-family: var(--fonte-sans);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; background: var(--cor-creme); color: var(--cor-preto);
  font-size: 10px; letter-spacing: 2.5px; text-align: center; text-transform: uppercase;
  padding: 14px 26px; border-radius: 10px; cursor: pointer; width: auto;
  transition: transform .45s var(--ease-apple), box-shadow .45s var(--ease-apple);
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn--dark { background: var(--cor-preto); color: var(--cor-creme); }
.btn--small { font-size: 8.5px; letter-spacing: 1.1px; padding: 11px 10px; }

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-apple), transform .9s var(--ease-apple);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(26,26,26,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 22px 0; transition: padding .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
}
.site-header.is-scrolled { padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1360px; }
.logo img { height: 32px; width: auto; object-fit: contain; transition: height .4s var(--ease-apple); }
.site-header.is-scrolled .logo img { height: 26px; }

.main-nav-desktop ul { display: flex; gap: 32px; list-style: none; }
.main-nav-desktop a {
  position: relative; color: var(--cor-creme); font-size: 12px;
  letter-spacing: 3.6px; text-transform: uppercase; padding-bottom: 4px;
}
.main-nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0%; height: 1px;
  background: var(--cor-creme); transition: width .35s var(--ease-apple);
}
.main-nav-desktop a:hover::after { width: 100%; }

.main-nav { display: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; z-index: 210;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--cor-creme); border-radius: 2px; transition: transform .35s var(--ease-apple), opacity .35s var(--ease-apple); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--cor-preto); color: var(--cor-creme); padding: 110px 20px 90px; text-align: center; overflow: hidden; }
.hero__bg-wrap { position: absolute; inset: -10% 0 0 0; width: 100%; height: 120%; overflow: hidden; will-change: transform; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .55; animation: hero-kenburns 22s ease-in-out infinite alternate; }
@keyframes hero-kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.09) translateY(-1.5%); } }
.hero__content { position: relative; max-width: 900px; margin: 0 auto; }
.hero h1 { font-family: var(--fonte-inter); font-weight: 300; font-size: clamp(30px, 5vw, 64px); line-height: 1.15; margin-bottom: 28px; }
.hero__lead { color: var(--cor-branco); font-size: 16px; letter-spacing: 3.2px; max-width: 787px; margin: 0 auto 36px; }

/* ===================== CARDS PROFISSIONAIS ===================== */
.profissionais { padding: 80px 20px 60px; }
.profissionais__intro { max-width: 1200px; margin: 0 auto 40px; font-size: clamp(24px, 3.4vw, 40px); font-weight: 500; line-height: 1.3; color: var(--cor-preto); }
.profissionais .container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.medico-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 1 / 1.05; min-height: unset;
  color: var(--cor-creme); transition: transform .5s var(--ease-apple), box-shadow .5s var(--ease-apple);
  background-color: var(--cor-preto);
}
.medico-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,.28); }

.medico-card__foto {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%; z-index: 0;
  transition: transform .8s var(--ease-apple);
}
.medico-card:hover .medico-card__foto { transform: scale(1.04); }

.medico-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.88) 100%);
}

.medico-card__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 28px 32px 32px;
}
.medico-card__assinatura { width: 140px; height: 32px; object-fit: contain; object-position: left center; margin-bottom: 8px; filter: brightness(0) invert(1); opacity: .9; }
.medico-card h2 { font-size: 22px; font-weight: 400; margin-bottom: 4px; }
.medico-card__credencial { font-size: 12px; color: var(--cor-branco); margin-bottom: 10px; }
.medico-card__bio { font-size: 12.5px; line-height: 1.5; margin-bottom: 12px; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.medico-card__extra { font-size: 11.5px; line-height: 1.45; color: var(--cor-branco); margin-bottom: 18px; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.medico-card__extra strong { display: block; color: var(--cor-creme); letter-spacing: 1px; margin-bottom: 2px; }
.medico-card .btn { align-self: flex-start; width: auto; }

/* ===================== TXT PROCEDIMENTOS COM FOTO COMPACTA À ESQUERDA ===================== */
.proc-intro { max-width: 1200px; margin: 0 auto; padding: 60px 20px 32px; }
.proc-intro__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
}
.proc-intro__foto-wrap {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
  background-color: var(--cor-preto);
}
.proc-intro__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .6s var(--ease-apple);
}
.proc-intro__foto-wrap:hover .proc-intro__foto {
  transform: scale(1.03);
}
.proc-intro__texto h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 20px;
}
.proc-intro__texto p.lead {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.proc-intro__texto p.cta-line {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.4;
}

/* ===================== ESTEIRA DE PROCEDIMENTOS ===================== */
.proc-row { padding: 24px 0 40px; }
.proc-row__header { max-width: 1200px; margin: 0 auto 16px; padding: 0 20px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.proc-row__label { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #8a8a8a; }
.proc-row__name { font-size: clamp(20px, 2.6vw, 28px); font-weight: 500; }

.proc-track-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

.proc-track-wrap::before, .proc-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 44px; z-index: 5; pointer-events: none;
  transition: opacity .3s ease;
}
.proc-track-wrap::before {
  left: 20px;
  background: linear-gradient(90deg, var(--cor-fundo), transparent);
}
.proc-track-wrap::after {
  right: 20px;
  background: linear-gradient(270deg, var(--cor-fundo), transparent);
}
.proc-track-wrap.at-start::before { opacity: 0; }
.proc-track-wrap.at-end::after { opacity: 0; }

.proc-track {
  display: flex; align-items: center; gap: 16px; overflow-x: auto;
  padding: 30px 4px 40px;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
}
.proc-track:active { cursor: grabbing; }
.proc-track::-webkit-scrollbar { display: none; }

.proc-arrow {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%; background: var(--cor-preto); color: var(--cor-creme);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transition: transform .3s var(--ease-apple), opacity .3s ease;
}
.proc-arrow:hover { transform: translateY(-50%) scale(1.08); }
.proc-arrow--prev { left: 4px; }
.proc-arrow--next { right: 4px; }
.proc-track-wrap.at-start .proc-arrow--prev,
.proc-track-wrap.at-end .proc-arrow--next { opacity: 0; pointer-events: none; }

.proc-hint {
  max-width: 1200px; margin: 10px auto 0; padding: 0 20px; font-size: 12px; color: #8a8a8a;
  display: flex; align-items: center; gap: 6px; transition: opacity .5s ease;
}
.proc-hint svg { width: 14px; height: 14px; animation: hint-slide 1.6s ease-in-out infinite; }
@keyframes hint-slide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.proc-row.interacted .proc-hint { opacity: 0; height: 0; margin: 0; overflow: hidden; }

/* Card do médico */
.proc-avatar-card {
  position: relative; flex: 0 0 224px;
  width: 224px; height: 280px; border-radius: 16px; overflow: hidden;
  background: var(--cor-preto); color: var(--cor-creme);
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
.proc-avatar-card img {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  left: 0 !important; top: 0 !important; object-fit: cover !important;
  object-position: center top !important; z-index: 0;
}

/* Enquadramento proporcional da Dra. Flávia para não ficar baixa no card */
#track-flavia .proc-avatar-card img {
  transform: scale(1.45) translateY(-24px);
  transform-origin: center center;
}

.proc-avatar-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
}
.proc-avatar-card__label {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.proc-avatar-card__eyebrow { font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; opacity: .85; }
.proc-avatar-card__nome { font-size: 22px; font-weight: 500; line-height: 1.15; }

/* Cards de procedimento (colapsados) */
.proc-card {
  position: relative; flex: 0 0 224px; width: 224px; height: 280px; border-radius: 16px; overflow: hidden;
  color: var(--cor-creme); background: var(--cor-preto);
  transition: width .65s var(--ease-apple-2), flex-basis .65s var(--ease-apple-2), height .65s var(--ease-apple-2), box-shadow .5s var(--ease-apple);
}
.proc-card:not(.is-expanded):hover { box-shadow: 0 16px 32px rgba(0,0,0,.22); }
.proc-card__img-wrap {
  position: absolute; inset: 0; width: 224px; height: 100%; overflow: hidden; z-index: 0;
}
.proc-card__img {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  left: 0 !important; top: 0 !important; object-fit: cover !important;
  object-position: center center !important; z-index: 0;
  transition: transform .8s var(--ease-apple);
}
.proc-card:not(.is-expanded):hover .proc-card__img { transform: scale(1.06); }
.proc-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.65) 100%);
}
.proc-card.is-expanded::after {
  background: linear-gradient(90deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 38%, rgba(26,26,26,.97) 44%, var(--cor-preto) 100%);
}
.proc-card__collapsed {
  position: relative; z-index: 2; height: 100%; width: 224px; display: flex; flex-direction: column; justify-content: space-between;
  transition: opacity .3s ease .15s;
}
.proc-card__collapsed h3 { font-size: 18px; font-weight: 500; line-height: 1.35; padding: 20px 20px 0; }
.proc-card__collapsed .btn { margin: 0 20px 20px; }

/* Estado expandido no Desktop */
.proc-card.is-expanded {
  flex: 0 0 640px !important;
  width: 640px !important;
  height: 340px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  z-index: 8;
}
.proc-card.is-expanded .proc-card__collapsed { opacity: 0; pointer-events: none; position: absolute; }
.proc-card__expanded {
  position: relative; z-index: 3; height: 100%; display: flex; align-items: flex-end;
  opacity: 0; transform: translateX(12px); pointer-events: none;
  transition: opacity .5s var(--ease-apple) .25s, transform .5s var(--ease-apple) .25s;
}
.proc-card.is-expanded .proc-card__expanded { opacity: 1; transform: translateX(0); pointer-events: auto; }
.proc-card__expanded-inner { padding: 26px 28px 24px 244px; width: 100%; }
.proc-card__expanded h3 { font-size: 19px; font-weight: 500; margin-bottom: 8px; line-height: 1.25; }
.proc-card__expanded p { font-size: 12.5px; line-height: 1.5; margin-bottom: 14px; max-height: 160px; overflow-y: auto; padding-right: 6px; }
.proc-card__expanded p::-webkit-scrollbar { width: 4px; }
.proc-card__expanded p::-webkit-scrollbar-thumb { background: rgba(255,248,215,.35); border-radius: 4px; }
.proc-card__expanded-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.proc-card__close {
  position: absolute; top: 14px; right: 14px; z-index: 4; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,.4); color: var(--cor-creme); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease .3s, background .2s ease;
}
.proc-card.is-expanded .proc-card__close { opacity: 1; }
.proc-card__close:hover { background: rgba(0,0,0,.65); }

/* ===================== BOX EXPERIENCIA ===================== */
.numeros { position: relative; max-width: 1200px; margin: 40px auto 60px; border-radius: 20px; overflow: hidden; color: var(--cor-creme); padding: 56px 60px; background-color: #3a3a3a; }
.numeros__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: bottom; z-index: 0; }
.numeros::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.4); z-index: 1; }
.numeros__conteudo { position: relative; z-index: 2; }
.numeros h2 { font-family: var(--fonte-sans); font-weight: 500; font-size: clamp(28px, 4vw, 48px); max-width: 545px; margin: 0 0 40px; }
.numeros__grid { display: grid; grid-template-columns: repeat(4, minmax(120px, auto)); gap: 32px; }
.numero-item { font-family: var(--fonte-serif); font-size: 40px; line-height: 1.1; }
.numero-item__unidade { font-family: var(--fonte-serif); margin-left: 8px; }
.numero-item__legenda { display: block; font-family: var(--fonte-sans); font-size: 14px; font-weight: 400; margin-top: 6px; max-width: 180px; }
.numero-item__legenda--longa { max-width: 260px; }
.numero-item--label { font-family: var(--fonte-serif); font-size: 30px; }
.numeros__btn-wrap { margin-top: 40px; }

/* ===================== BIOS MÉDICOS ===================== */
.bios { padding: 40px 20px 70px; }
.bios .container { max-width: 1200px; }
.bios__switch {
  display: inline-flex; gap: 4px; background: var(--cor-preto); padding: 5px; border-radius: 999px;
  margin-bottom: 28px;
}
.bios__switch button {
  padding: 10px 22px; border-radius: 999px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,248,215,.55); transition: background .35s var(--ease-apple), color .35s var(--ease-apple);
}
.bios__switch button.is-active { background: var(--cor-creme); color: var(--cor-preto); }

.bio-deck { position: relative; min-height: 620px; }
.bio-card {
  position: absolute; inset: 0; background: var(--cor-preto); border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 360px 1fr; color: var(--cor-creme);
  transition: transform .7s var(--ease-apple-2), opacity .6s var(--ease-apple), box-shadow .5s ease;
}
.bio-card.is-front { position: relative; transform: translate(0,0) rotate(0deg) scale(1); z-index: 2; opacity: 1; box-shadow: 0 30px 60px rgba(0,0,0,.3); }
.bio-card.is-back { transform: translate(18px, 22px) rotate(1.5deg) scale(.98); z-index: 1; opacity: .55; box-shadow: 0 10px 24px rgba(0,0,0,.2); pointer-events: none; }

.bio-card__foto { position: relative; overflow: hidden; width: 100%; height: 100%; min-height: 100%; background: #111; }
.bio-card__foto img {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  left: 0 !important; top: 0 !important; object-fit: cover !important;
  display: block;
}
.bio-card__foto--daniel img {
  object-position: 45% top !important;
}
.bio-card__foto--flavia img {
  object-position: center 12% !important;
}

.bio-card__body { padding: 44px 48px; overflow-y: auto; max-height: 620px; }
.bio-card__eyebrow { font-size: 15px; letter-spacing: 1px; margin-bottom: 8px; opacity: .85; }
.bio-card__nome { font-size: 31px; font-weight: 500; line-height: 1.1; margin-bottom: 24px; }
.bio-card__texto p { font-size: 13px; line-height: 1.65; margin-bottom: 14px; }
.bio-card__texto p:last-child { margin-bottom: 0; }

/* ===================== EQUIPE MÉDICA (suporte) ===================== */
.equipe-suporte { background: var(--cor-card-escuro); padding: 70px 20px; }
.equipe-suporte .container { max-width: 1200px; }
.equipe-suporte h2 { color: var(--cor-creme); font-size: clamp(28px, 4vw, 40px); font-weight: 500; line-height: 1.3; margin-bottom: 40px; }
.equipe-suporte__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; color: var(--cor-branco); }
.equipe-suporte__item h3 { color: var(--cor-branco); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.equipe-suporte__item p { font-size: 15px; line-height: 1.6; }

/* ===================== DEPOIMENTOS ===================== */
.depoimentos { background: var(--cor-creme); padding: 80px 20px; }
.depoimentos h2 { max-width: 1200px; margin: 0 auto 40px; font-size: clamp(28px, 3.6vw, 40px); font-weight: 500; line-height: 1.3; }
.depoimentos-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.depoimento-card { background: var(--cor-card-escuro); border-radius: 16px; padding: 28px; transition: transform .5s var(--ease-apple), box-shadow .5s var(--ease-apple); }
.depoimento-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.18); }
.depoimento-card blockquote { font-family: var(--fonte-serif); font-style: italic; font-size: 16px; color: rgba(255,248,215,.85); text-align: center; }
.depoimento-card cite { display: block; margin-top: 14px; font-family: var(--fonte-sans); font-style: normal; color: rgba(255,248,215,.85); text-align: center; }
.depoimentos__btn-wrap { text-align: center; margin-top: 36px; }

/* ===================== SUPORTE VIP ===================== */
.suporte-vip { background: var(--cor-preto); color: var(--cor-branco); padding: 80px 20px; }
.suporte-vip .container { max-width: 900px; }
.suporte-vip__eyebrow { color: var(--cor-creme); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.suporte-vip h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 500; line-height: 1.25; color: var(--cor-creme); margin-bottom: 28px; }
.suporte-vip p { font-size: 16px; line-height: 1.7; margin-bottom: 18px; color: rgba(255,255,255,.88); }
.suporte-vip__btn-wrap { margin-top: 28px; }

/* ===================== CONTATO / ENDEREÇO ===================== */
.contato { padding: 90px 20px; }
.contato .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contato h2 { font-size: clamp(32px, 4.5vw, 64px); font-weight: 500; line-height: 1.1; margin-bottom: 24px; }
.contato address { font-style: normal; font-size: 16px; line-height: 1.5; }
.contato address p { margin-bottom: 16px; }
.contato address strong { display: block; font-weight: 700; margin-bottom: 2px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cor-preto); transition: opacity .3s var(--ease-apple), transform .3s var(--ease-apple); }
.social-link:hover { opacity: .7; transform: translateX(2px); }
.contato__logos { display: flex; align-items: center; gap: 28px; margin: 24px 0; flex-wrap: wrap; }
.contato__logos img { height: 40px; width: auto; max-width: 90px; object-fit: contain; opacity: .85; }
.contato__mapa { border-radius: 16px; overflow: hidden; aspect-ratio: 704 / 642; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.contato__mapa iframe { width: 100%; height: 100%; border: 0; display: block; }

.cta-final { text-align: center; padding: 20px 20px 70px; }
.cta-final h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 500; max-width: 905px; margin: 0 auto 32px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--cor-preto); color: var(--cor-branco); padding: 60px 20px 30px; }
.site-footer .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; }
.footer-col h3 { color: var(--cor-creme); font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.footer-col p, .footer-col a { font-size: 13px; line-height: 1.9; }
.footer-col address { font-style: normal; font-size: 13px; line-height: 1.9; }
.footer-col a:hover { text-decoration: underline; }
.site-footer__base { text-align: center; font-size: 11px; color: var(--cor-branco); margin-top: 50px; opacity: .7; }

/* ===========================================================
   RESPONSIVO
   =========================================================== */
@media (max-width: 960px) {
  .profissionais .container { grid-template-columns: 1fr; }
  .proc-intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .proc-intro__foto-wrap { max-width: 300px; margin: 0 auto; aspect-ratio: 3 / 4; }
  .proc-intro__texto { text-align: left; }
  .numeros__grid { grid-template-columns: repeat(2, 1fr); }
  .equipe-suporte__grid { grid-template-columns: 1fr 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .contato .container { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: repeat(2, 1fr); }
  .bio-card { grid-template-columns: 280px 1fr; }
  .bio-card__body { padding: 32px; }
}

@media (max-width: 780px) {
  :root { --header-h: 68px; }

  .site-header { padding: 16px 0; }
  .site-header.is-scrolled { padding: 12px 0; }
  .logo img { height: 24px; }
  .nav-toggle { display: flex; }
  .main-nav-desktop { display: none; }
  .main-nav {
    display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--cor-preto);
    align-items: center; justify-content: center; gap: 44px;
    opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-apple);
    z-index: 150;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; }
  .main-nav ul { list-style: none; flex-direction: column; align-items: center; gap: 28px; width: 100%; }
  .main-nav li { text-align: center; }
  .main-nav a { color: var(--cor-creme); font-size: 18px; letter-spacing: 2px; text-transform: uppercase; }
  .main-nav__cta { display: inline-flex; }
  .main-nav a.main-nav__cta { color: var(--cor-preto); }
  .site-header .btn { display: none; }
  .site-header .container { flex-wrap: nowrap; }

  .hero { padding: 70px 16px 56px; }
  .hero__lead { letter-spacing: 1.6px; font-size: 14px; }

  .profissionais { padding: 56px 16px 40px; }
  .medico-card { aspect-ratio: 1 / 1.1; min-height: unset; }
  .medico-card__content { padding: 22px; }
  .medico-card h2 { font-size: 19px; }
  .medico-card__bio { font-size: 12px; }

  .proc-intro { padding: 44px 16px 24px; }
  .proc-row__header { padding: 0 16px; }
  .proc-track-wrap { padding: 0 16px; }
  .proc-track-wrap::before, .proc-track-wrap::after { width: 24px; }
  .proc-track-wrap::before { left: 16px; }
  .proc-track-wrap::after { right: 16px; }
  .proc-track { padding: 4px 0 20px; gap: 12px; }
  .proc-arrow { display: none; }

  .proc-avatar-card {
    width: 180px; height: 250px; flex: 0 0 180px; position: relative !important; left: auto !important;
  }
  .proc-avatar-card__nome { font-size: 18px; }

  .proc-card { width: 180px; height: 250px; flex: 0 0 180px; }
  .proc-card__img-wrap { width: 180px; }
  .proc-card__collapsed { width: 180px; }
  .proc-card__collapsed h3 { font-size: 15px; padding: 16px 14px 0; }
  .proc-card__collapsed .btn { margin: 0 14px 14px; }

  .proc-card.is-expanded {
    width: min(88vw, 360px) !important;
    flex: 0 0 min(88vw, 360px) !important;
    height: auto;
    min-height: 250px;
  }
  .proc-card.is-expanded .proc-card__img-wrap { width: 100%; height: 160px; }
  .proc-card.is-expanded .proc-card__expanded { height: auto; align-items: flex-start; }
  .proc-card.is-expanded .proc-card__expanded-inner { padding: 176px 18px 18px; }
  .proc-card__expanded h3 { font-size: 17px; }
  .proc-card__expanded p { font-size: 12.5px; max-height: none; }
  .proc-card__expanded-actions .btn { width: 100%; }

  .numeros { padding: 36px 24px; margin: 24px 16px 40px; }
  .numeros__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .numero-item { font-size: 32px; }

  .bios { padding: 24px 16px 56px; }
  .bio-deck { min-height: 0; }
  .bio-card { grid-template-columns: 1fr; position: relative !important; transform: none !important; opacity: 1 !important; box-shadow: none !important; display: none; }
  .bio-card.is-front { display: block; }
  .bio-card__foto { height: 280px; width: 100%; }
  .bio-card__body { padding: 24px; max-height: none; }

  .equipe-suporte { padding: 56px 16px; }
  .equipe-suporte__grid { grid-template-columns: 1fr; gap: 24px; }

  .depoimentos { padding: 56px 16px; }
  .contato { padding: 56px 16px; }
  .contato__mapa { aspect-ratio: 4 / 3; }

  .site-footer .container { grid-template-columns: 1fr; gap: 28px; text-align: left; }
}

@media (max-width: 420px) {
  .proc-card.is-expanded { width: 90vw !important; flex: 0 0 90vw !important; }
}