/* ════════════════════════════════════════════
   PALETA OFICIAL — definida pelo cliente
   #211915 base escura | #d8d9dd prata/cinza
   #f2f2f2 off-white   | #ffffff branco puro
════════════════════════════════════════════ */
:root {
  --base:      #211915;
  --silver:    #d8d9dd;
  --offwhite:  #f2f2f2;
  --white:     #ffffff;
  --accent:    #9e7b4e;
  --accent-lt: #c4a06a;
  --muted:     #6e6560;
  --base10:    rgba(33,25,21,.08);
  --base20:    rgba(33,25,21,.18);
  --fs-xs:     1.3rem;
  --fs-sm:     1.2rem;
  --fs-base:   1.2rem;
  --fs-md:     1.3rem;
  --fs-lg:     1.45rem;
  --fs-xl:     1.6rem;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { /*scroll-behavior: smooth;*/ }
body {
  font-family: 'Jost', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.75;
  background: var(--white);
  color: var(--base);
  overflow-x: hidden;
}

/* ─── CURSOR PERSONALIZADO ─── 
* { cursor: none; }
.cursor {
  width: 8px; height: 8px;
  background: var(--base);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--base);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  opacity: .25;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}*/

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--base10);
  transition: padding .3s, box-shadow .3s;
}
nav.scrolled { padding: 12px 60px; box-shadow: 0 2px 24px rgba(0,0,0,.08); }
.nav-logo img {
  height: 95px;
  width: 300px;
  /* filter: invert(1) sepia(1) saturate(1.5) hue-rotate(8deg) brightness(.45);*/
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; font-weight: 500;
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover { color: var(--base); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav {
  background: var(--base); color: var(--white) !important;
  padding: 11px 28px; border-radius: 2px;
  font-size: var(--fs-xs); letter-spacing: .13em; text-transform: uppercase;
  font-weight: 600; text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-nav:hover { background: var(--accent); transform: translateY(-1px); }
.btn-nav::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 26px; height: 1.5px; background: var(--base); display: block; transition: .3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--base); z-index: 290;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white); text-decoration: none; }
.mobile-menu a:hover { color: var(--accent-lt); }
.mobile-close { position: absolute; top: 24px; right: 32px; font-size: 2.4rem; background: none; border: none; color: var(--silver); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--base);
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden; position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: var(--fs-xs); letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-lt); font-weight: 600; margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .15s forwards;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--accent-lt); }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 400; line-height: 1.08; color: var(--white);
  margin-bottom: 22px; opacity: 0; animation: fadeUp .8s .3s forwards;
}
h1 em { font-style: italic; color: var(--accent-lt); }
h1 strong { font-weight: 700; }
.hero-promise {
  font-size: var(--fs-lg); font-weight: 300; color: var(--silver);
  line-height: 1.7; max-width: 460px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s .44s forwards;
}
.proof-pills {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .8s .56s forwards;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(216,217,221,.16);
  border-radius: 100px; padding: 7px 16px;
  font-size: var(--fs-xs); color: var(--silver);
}
.pill-dot { width: 6px; height: 6px; background: var(--accent-lt); border-radius: 50%; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .68s forwards; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--base);
  padding: 18px 38px; border-radius: 2px;
  font-size: var(--fs-sm); letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; font-weight: 700;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover { background: var(--accent-lt); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.35); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1.5px solid rgba(216,217,221,.3); color: var(--silver);
  padding: 18px 38px; border-radius: 2px;
  font-size: var(--fs-sm); letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-ghost:hover { border-color: var(--silver); color: var(--white); background: rgba(255,255,255,.06); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 36px; border-top: 1px solid rgba(216,217,221,.1);
  opacity: 0; animation: fadeUp .8s .82s forwards;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-lbl { font-size: var(--fs-xs); color: rgba(216,217,221,.55); letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; }
.stat-div { width: 1px; background: rgba(216,217,221,.12); }
.hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.03);
  border-left: 1px solid rgba(216,217,221,.07); z-index: 1;
}
.hero-ph-wrap {
  width: 76%; max-width: 380px;
  /*border: 1px dashed rgba(216,217,221,.22); border-radius: 2px;*/
  padding: 72px 32px; text-align: center;
}
.hero-ph-wrap .ph-icon { font-size: 3.5rem; opacity: .22; margin-bottom: 16px; display: block; }
.hero-ph-wrap p { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: rgba(216,217,221,.38); line-height: 1.9; }
.hero-badge {
  position: absolute; bottom: 40px; right: 40px;
  background: var(--accent); color: var(--white);
  padding: 16px 22px; border-radius: 2px;
  opacity: 0; animation: fadeUp .8s 1s forwards;
}
.hero-badge b { font-family: 'Playfair Display', serif; font-size: var(--fs-xl); font-weight: 700; display: block; }
.hero-badge small { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 60px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase;
  color: rgba(216,217,221,.35); opacity: 0; animation: fadeUp .8s 1.2s forwards;
}
.scroll-line { width: 42px; height: 1px; background: rgba(216,217,221,.18); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--accent-lt); animation: slide 2s 1.5s infinite;
}

/* ─── UNIDADES ─── */
#unidades { background: var(--offwhite); padding: 96px 60px; }
.sec-head { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: var(--fs-xs); letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 28px; height: 1.5px; background: var(--accent); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 400; line-height: 1.18; color: var(--base); }
h2 em { font-style: italic; color: var(--accent); }
.sec-sub { font-size: var(--fs-md); color: var(--muted); max-width: 500px; margin: 14px auto 0; line-height: 1.8; font-weight: 300; }
.u-selector {
  display: flex; justify-content: center; max-width: 680px; margin: 0 auto 48px;
  border: 1.5px solid var(--base20); border-radius: 4px; overflow: hidden;
}
.u-tab {
  flex: 1; padding: 17px 10px;
  background: transparent; border: none;
  font-family: 'Jost', sans-serif; font-size: var(--fs-md); font-weight: 500;
  color: var(--muted); letter-spacing: .04em;
  transition: background .25s, color .25s;
  border-right: 1px solid var(--base20); text-align: center;
}
.u-tab:last-child { border-right: none; }
.u-tab.active { background: var(--base); color: var(--white); }
.u-tab:hover:not(.active) { background: var(--base10); color: var(--base); }
.u-panels { max-width: 820px; margin: 0 auto; }
.u-panel { display: none; }
.u-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.p-city { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 400; color: var(--base); line-height: 1.2; margin-bottom: 24px; }
.p-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.p-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.p-text { font-size: var(--fs-md); color: var(--base); line-height: 1.65; }
.p-text strong { color: var(--base); display: block; font-weight: 600; margin-bottom: 2px; }
.p-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.btn-wp {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #25D366; color: var(--white);
  padding: 17px 28px; border-radius: 2px;
  font-size: var(--fs-sm); letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  text-decoration: none; transition: opacity .2s, transform .2s;
}
.btn-wp:hover { opacity: .88; transform: translateY(-1px); }
.btn-tel {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  border: 1.5px solid var(--base20); color: var(--base);
  padding: 17px 28px; border-radius: 2px;
  font-size: var(--fs-sm); letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; transition: background .2s;
}
.btn-tel:hover { background: var(--base10); }
.p-map {
  background: var(--white); border: 1.5px solid var(--base10); border-radius: 2px;
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}
.p-map .map-icon { font-size: 3rem; opacity: .18; }
.p-map p { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ─── TRATAMENTOS ─── */
#tratamentos { padding: 96px 60px; background: var(--white); }
.t-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--base10); max-width: 1200px; margin: 0 auto; }
.t-card { background: var(--white); padding: 40px 30px; position: relative; overflow: hidden; transition: background .3s; }
.t-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.t-card:hover { background: var(--offwhite); }
.t-card:hover::before { transform: scaleX(1); }
.t-icon { width: 52px; height: 52px; background: var(--offwhite); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: background .3s; }
.t-card:hover .t-icon { background: var(--base); }
.t-name { font-family: 'Playfair Display', serif; font-size: var(--fs-lg); font-weight: 500; color: var(--base); margin-bottom: 10px; }
.t-desc { font-size: var(--fs-sm); color: var(--muted); line-height: 1.8; font-weight: 300; }

/* ─── DEPOIMENTOS ─── */
#depoimentos { background: var(--base); padding: 96px 60px; position: relative; overflow: hidden; }
#depoimentos::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 28rem; font-weight: 700;
  color: rgba(255,255,255,.022); position: absolute; top: -80px; left: 40px; line-height: 1; pointer-events: none;
}
#depoimentos .eyebrow { color: var(--accent-lt); }
#depoimentos .eyebrow::before, #depoimentos .eyebrow::after { background: var(--accent-lt); }
#depoimentos h2 { color: var(--white); }
#depoimentos .sec-sub { color: var(--silver); }
.dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.dep-card { background: rgba(255,255,255,.045); border: 1px solid rgba(216,217,221,.1); border-radius: 2px; padding: 40px 34px; transition: background .3s; }
.dep-card:hover { background: rgba(255,255,255,.08); }
.dep-stars { font-size: 1rem; color: var(--accent-lt); letter-spacing: 3px; margin-bottom: 20px; }
.dep-text { font-size: var(--fs-md); color: var(--silver); line-height: 1.85; font-style: italic; font-family: 'Playfair Display', serif; margin-bottom: 28px; }
.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-ava { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.dep-name { font-size: var(--fs-sm); color: var(--white); font-weight: 600; }
.dep-city { font-size: var(--fs-xs); color: rgba(216,217,221,.45); margin-top: 2px; }
.dep-badge { font-size: var(--fs-xs); color: var(--accent-lt); margin-top: 3px; }

/* ─── POR QUÊ NÓS ─── */
#porque { padding: 96px 60px; background: var(--offwhite); }
.pq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
.pq-left .eyebrow { justify-content: flex-start; }
.pq-left h2 { text-align: left; margin-bottom: 20px; }
.pq-left > p { font-size: var(--fs-md); color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 36px; }
.dif-list { display: flex; flex-direction: column; gap: 28px; }
.dif { display: flex; gap: 18px; align-items: flex-start; }
.dif-n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; flex-shrink: 0; width: 40px; }
.dif h3 { font-size: var(--fs-md); font-weight: 600; color: var(--base); margin-bottom: 6px; }
.dif p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.8; font-weight: 300; }
.fachada-wrap { position: relative; }
.fachada-ph { background: var(--silver); border-radius: 2px 2px 0 0; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; overflow: hidden; }
.fachada-ph .phb { font-size: 4rem; opacity: .18; }
.fachada-ph .phl { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.fachada-foot { background: var(--base); color: var(--white); padding: 18px 24px; border-radius: 0 0 2px 2px; }
.fachada-foot strong { font-size: var(--fs-md); display: block; margin-bottom: 4px; }
.fachada-foot span { font-size: var(--fs-xs); color: var(--silver); letter-spacing: .07em; }

/* ─── A DOUTORA ─── */
#doutora { padding: 96px 60px; background: var(--white); }
.dr-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
.dr-img { aspect-ratio: 3/4; background: var(--offwhite); border: 1.5px dashed var(--base20); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; position: relative; }
.dr-img .ph-icon { font-size: 4rem; opacity: .22; }
.dr-img p { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-align: center; }
.dr-accent { position: absolute; bottom: -16px; right: -16px; width: 120px; height: 120px; border: 1.5px solid var(--accent); border-radius: 2px; z-index: -1; opacity: .45; }
.dr-right .eyebrow { justify-content: flex-start; }
.dr-right h2 { text-align: left; margin-bottom: 6px; }
.cro-tag { display: inline-block; font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 24px; }
.dr-right p { font-size: var(--fs-md); color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.esp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.esp-tag { padding: 9px 20px; border: 1.5px solid var(--base20); border-radius: 100px; font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--base); font-weight: 500; background: var(--offwhite); }

/* ─── CTA FINAL ─── */
#cta-final { background: var(--base); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
#cta-final h2 { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
#cta-final h2 em { color: var(--accent-lt); }
#cta-final p { font-size: var(--fs-md); color: var(--silver); max-width: 500px; margin: 0 auto 52px; line-height: 1.85; font-weight: 300; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--white); color: var(--base); padding: 20px 44px; border-radius: 2px; font-size: var(--fs-sm); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; text-decoration: none; transition: background .25s, transform .2s, box-shadow .25s; }
.btn-cta:hover { background: var(--accent-lt); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.35); }
.btn-cta2 { display: inline-flex; align-items: center; gap: 12px; border: 1.5px solid rgba(216,217,221,.28); color: var(--silver); padding: 20px 44px; border-radius: 2px; font-size: var(--fs-sm); letter-spacing: .12em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: border-color .25s, color .25s, background .25s; }
.btn-cta2:hover { border-color: var(--silver); color: var(--white); background: rgba(255,255,255,.05); }

/* ─── SOCIAL ─── */
#social { padding: 44px 60px; background: var(--offwhite); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--base10); }
.soc-lbl { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.soc-links { display: flex; gap: 14px; }
.soc-a { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--base20); color: var(--base); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1rem; transition: background .25s, color .25s, transform .2s; }
.soc-a:hover { background: var(--base); color: var(--white); transform: scale(1.1); }

/* ─── FOOTER ─── */
footer { background: #161210; padding: 72px 60px 36px; color: var(--silver); }
.ft-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(216,217,221,.07); }
.ft-logo img { /*height: 34px;*/ filter: brightness(0) invert(1); opacity: .5; margin-bottom: 18px; }
.ft-about { font-size: var(--fs-sm); color: rgba(216,217,221,.45); line-height: 1.85; font-weight: 300; max-width: 280px; }
.ft-col h4 { font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--accent-lt); font-weight: 600; margin-bottom: 20px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col li, .ft-col a { font-size: var(--fs-sm); color: rgba(216,217,221,.45); line-height: 1.65; font-weight: 300; text-decoration: none; transition: color .2s; }
.ft-col a:hover { color: var(--silver); }
.ft-bot { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: var(--fs-xs); color: rgba(216,217,221,.28); }
.ft-cro { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: rgba(216,217,221,.22); }

/* ─── FLOATING WHATSAPP ─── */
.float-wp {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45); text-decoration: none;
  animation: wpPulse 2.5s infinite; transition: transform .2s;
}
.float-wp:hover { transform: scale(1.1); animation: none; }
.float-wp svg { width: 30px; height: 30px; fill: white; }

/* ─── ANIMAÇÕES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}
@keyframes wpPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 8px 52px rgba(37,211,102,.75); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVO ─── */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 72px 24px; }
  .scroll-hint { left: 24px; }
  #unidades, #tratamentos, #depoimentos, #porque, #doutora, #cta-final { padding: 72px 24px; }
  .t-grid { grid-template-columns: repeat(2,1fr); }
  .dep-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pq-grid, .dr-grid { grid-template-columns: 1fr; gap: 48px; }
  .ft-grid { grid-template-columns: 1fr; gap: 36px; }
  .ft-bot { flex-direction: column; gap: 10px; text-align: center; }
  #social { flex-direction: column; gap: 20px; text-align: center; }
  .u-panel.active { grid-template-columns: 1fr; }
  .p-map { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .t-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-div { display: none; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero-actions, .cta-btns { flex-direction: column; }
  .btn-primary, .btn-ghost, .btn-cta, .btn-cta2 { justify-content: center; }
  .u-selector { flex-direction: column; }
  .u-tab { border-right: none; border-bottom: 1px solid var(--base20); }
  .u-tab:last-child { border-bottom: none; }
}
