/* ============================================
   DRA. LETÍCIA SEBEM — DESIGN SYSTEM
   ============================================ */

:root {
  --bg: #F7F3EC;
  --bg-alt: #EFE6D8;
  --champagne: #DCC9AC;
  --champagne-deep: #C9AF8B;
  --gray-line: #E2DDD3;
  --ink: #1B1815;
  --ink-soft: #4A443C;
  --gold: #A9834E;
  --gold-soft: #C7A876;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;

  --container: 1240px;
  --gutter: clamp(24px, 6vw, 80px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(10.5px, 2.6vw, 12px);
  letter-spacing: clamp(1.4px, .5vw, 3px);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  white-space: normal;
}
.eyebrow.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}

.center { text-align: center; }

/* ---------- Reveal animations (uma vez, via IntersectionObserver) ---------- */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-text.is-visible { opacity: 1; transform: translateY(0); }

.reveal-img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-img.is-visible { opacity: 1; transform: scale(1); }

/* Pequeno stagger entre elementos da mesma seção (eyebrow > título > texto) */
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- Hero: sequência de entrada no carregamento da página ---------- */
.hero-enter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero-enter.is-visible { opacity: 1; transform: translateY(0); }
.hero-enter-1 { transition-delay: 0s; }
.hero-enter-2 { transition-delay: .12s; }
.hero-enter-3 { transition-delay: .24s; }
.hero-enter-4 { transition-delay: .36s; }
.hero-enter-5 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-text, .reveal-img, .hero-enter {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: transform .45s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  text-align: center;
}
.btn-solid {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-solid:hover { transform: scale(1.03); background: #2b2620; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.65);
}
.btn-outline:hover { transform: scale(1.03); border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 11px 26px;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-lg { padding: 19px 48px; font-size: 13px; }

.btn-whatsapp {
  background: var(--champagne);
  color: var(--ink);
  border: 1px solid var(--champagne);
  gap: 12px;
  padding: 16px 40px;
  width: 100%;
  max-width: 380px;
}
.btn-whatsapp .icon-whatsapp { flex-shrink: 0; }
.btn-whatsapp:hover { background: var(--champagne-deep); border-color: var(--champagne-deep); transform: scale(1.03); }

@media (min-width: 768px) {
  .btn-whatsapp { width: auto; }
}

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
  z-index: 90;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0,0,0,.35);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 243, 236, .92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--gray-line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.site-header .brand-eyebrow,
.site-header .brand-name { color: var(--white); transition: color .5s var(--ease); }
.site-header.scrolled .brand-eyebrow { color: var(--gold); }
.site-header.scrolled .brand-name { color: var(--ink); }

.brand-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--white);
}

.nav-desktop { display: none; gap: 40px; }
.nav-desktop a {
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color .5s var(--ease);
}
.site-header.scrolled .nav-desktop a { color: var(--ink-soft); }
.nav-desktop a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .4s var(--ease);
}
.nav-desktop a:hover::after { width: 100%; }

.nav-cta {
  display: none;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.site-header.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.site-header.scrolled .nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-cta:hover { background: rgba(255,255,255,.12); }

.menu-toggle {
  width: 30px; height: 20px;
  position: relative;
  z-index: 200;
}
.menu-toggle span {
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--white);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .4s var(--ease);
}
.site-header.scrolled .menu-toggle span { background: var(--ink); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.open span { background: var(--ink); }
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 150;
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--ink);
}
.mobile-cta { margin-top: 10px; }
.mobile-menu-foot { font-size: 13px; letter-spacing: 1px; color: var(--ink-soft); }

/* ============================================
   HERO
   ============================================ */
/* ---- Mobile-first (base): foto full-bleed com texto sobre overlay escuro ---- */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; }

.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 82% 20%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,0) 65%),
    linear-gradient(to bottom, rgba(0,0,0,.5) 0, rgba(0,0,0,0) 100px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0 var(--gutter) 40px;
  color: var(--white);
}
.hero-text {
  max-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card { margin-bottom: 20px; }

.eyebrow-desktop { display: none; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content .eyebrow-mobile { color: var(--champagne); }
.hero-content .eyebrow { text-shadow: 0 0 8px rgba(0,0,0,.9), 0 2px 4px rgba(0,0,0,.8), -1px -1px 0 rgba(0,0,0,.6), 1px -1px 0 rgba(0,0,0,.6), -1px 1px 0 rgba(0,0,0,.6), 1px 1px 0 rgba(0,0,0,.6); }
.hero-card .eyebrow { margin-bottom: 10px; }
.hero-title {
  font-size: clamp(21px, 6.8vw, 30px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 15ch;
  text-wrap: balance;
  text-shadow:
    0 0 8px rgba(0,0,0,.9),
    0 2px 4px rgba(0,0,0,.8),
    -1px -1px 0 rgba(0,0,0,.6),
    1px -1px 0 rgba(0,0,0,.6),
    -1px 1px 0 rgba(0,0,0,.6),
    1px 1px 0 rgba(0,0,0,.6);
}
.hero-signature {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--champagne);
  margin-bottom: 4px;
  text-shadow:
    0 0 8px rgba(0,0,0,.9),
    0 2px 4px rgba(0,0,0,.8),
    -1px -1px 0 rgba(0,0,0,.6),
    1px -1px 0 rgba(0,0,0,.6),
    -1px 1px 0 rgba(0,0,0,.6),
    1px 1px 0 rgba(0,0,0,.6);
}
.hero-location {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  text-shadow:
    0 0 8px rgba(0,0,0,.9),
    0 2px 4px rgba(0,0,0,.8),
    -1px -1px 0 rgba(0,0,0,.6),
    1px -1px 0 rgba(0,0,0,.6),
    -1px 1px 0 rgba(0,0,0,.6),
    1px 1px 0 rgba(0,0,0,.6);
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin: 0 0 20px; }
.hero-actions .btn { width: 100%; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.hero-rating:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); transform: translateY(-2px); }
.stars { color: var(--gold-soft); font-size: 14px; letter-spacing: 2px; }
.rating-text { font-size: 13px; letter-spacing: .4px; color: rgba(255,255,255,.85); }

.scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 46px;
  background: rgba(255,255,255,.35);
  overflow: hidden;
  display: none;
}
.scroll-hint span {
  position: absolute; top: -100%; left: 0; right: 0; height: 100%;
  background: var(--white);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* ---- Desktop (>768px): mantém overlay lateral esquerdo (inalterado) ---- */
@media (min-width: 768px) {
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(10,9,8,.74) 0%, rgba(10,9,8,.6) 30%, rgba(10,9,8,.28) 50%, rgba(10,9,8,0) 62%),
      linear-gradient(180deg, rgba(10,9,8,.22) 0%, rgba(10,9,8,0) 24%, rgba(10,9,8,0) 58%, rgba(10,9,8,.5) 100%);
  }
  .hero-content { padding: 0 var(--gutter) 72px; }
  .hero-text { max-width: 55%; }
  .hero-card { margin-bottom: 0; }
  .hero-card .eyebrow { margin-bottom: 18px; }
  .eyebrow-mobile { display: none; }
  .eyebrow-desktop { display: block; }
  .hero-title { font-size: clamp(34px, 5.4vw, 62px); margin-bottom: 22px; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; margin-top: 22px; }
  .hero-actions .btn { width: auto; }
  .scroll-hint { display: block; }
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--gutter);
  display: grid;
  gap: 32px;
}
.sobre-media img { width: 100%; aspect-ratio: 920 / 1350; object-fit: cover; border-radius: 2px; }
.sobre-content h2 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 18px; }
.credentials {
  font-size: 13px;
  letter-spacing: .8px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.body-text { font-size: 17px; color: var(--ink-soft); max-width: 46ch; font-weight: 300; }

/* ============================================
   FILOSOFIA
   ============================================ */
.filosofia {
  background: var(--bg-alt);
  padding: 40px var(--gutter);
  text-align: center;
}
.filosofia-statements {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 900px;
  margin: 0 auto;
}
.statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.3;
  color: var(--ink);
}
.statement-gold { color: var(--gold); }
.filosofia-note {
  margin-top: 64px;
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--ink-soft);
}

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.section-head { max-width: 720px; margin: 0 auto 40px; padding: 0 var(--gutter); }
.section-head h2 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 16px; }
.section-lead { color: var(--ink-soft); font-size: 16px; max-width: 46ch; margin: 0 auto; }

/* ============================================
   PROCEDIMENTOS
   ============================================ */
.procedimentos { padding: 40px 0 32px; }
.procedimentos-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 28px;
}
.proc-card { text-align: left; }
.proc-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 22px;
  background: var(--gray-line);
}
.proc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.proc-card:hover .proc-media img { transform: scale(1.05); }
.proc-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.proc-card h3::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  margin-top: 10px;
  transition: width .5s var(--ease);
}
.proc-card:hover h3::after { width: 56px; }
.proc-card p { font-size: 14.5px; color: var(--ink-soft); max-width: 34ch; }

/* ============================================
   ANTES E DEPOIS
   ============================================ */
.antes-depois { padding: 0 0 40px; }

/* ---- Mobile (base): carrossel horizontal com scroll-snap ---- */
.ad-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 0 var(--gutter) 8px;
  scrollbar-width: none;
}
.ad-gallery::-webkit-scrollbar { display: none; }

.ad-item {
  flex: 0 0 85%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  background: #17140f;
}
.ad-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 1s var(--ease);
}
.ad-item:hover img { transform: scale(1.02); }

.ad-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.ad-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--champagne-deep);
  opacity: .5;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  cursor: pointer;
}
.ad-dots span.active { opacity: 1; transform: scale(1.3); background: var(--gold); }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos { background: var(--bg-alt); padding: 40px 0; }
.rating-badge {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; letter-spacing: .5px; color: var(--ink-soft);
  transition: color .3s var(--ease);
}
.rating-badge:hover { color: var(--gold); }
.rating-badge .stars { color: var(--gold); }

.testi-carousel { max-width: 760px; margin: 56px auto 0; padding: 0 var(--gutter); overflow: hidden; }
.testi-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 0 8px;
}
.testi-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--champagne-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  background: var(--bg);
  overflow: hidden;
}
.testi-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.testi-avatar span {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
}
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 3vw, 25px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 22px;
}
.testi-card cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.testi-controls { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 44px; }
.testi-controls button {
  font-size: 16px; color: var(--ink);
  width: 40px; height: 40px;
  border: 1px solid var(--gray-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.testi-controls button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--champagne-deep);
  opacity: .5;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.testi-dots span.active { opacity: 1; transform: scale(1.3); background: var(--gold); }

/* ============================================
   ESTRUTURA DA CLÍNICA
   ============================================ */
.estrutura { padding: 40px 0; }

/* ---- Mobile (base): carrossel horizontal com scroll-snap (mesmo padrão de Resultados) ---- */
.est-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 0 var(--gutter) 8px;
  scrollbar-width: none;
}
.est-gallery::-webkit-scrollbar { display: none; }

.est-item {
  flex: 0 0 85%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  background: var(--gray-line);
}
.est-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.est-item:hover img { transform: scale(1.035); }
.est-logo-item img { object-position: center 42%; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 56px var(--gutter);
}
.cta-final .eyebrow { color: var(--gold-soft); }
.cta-final h2 {
  color: var(--bg);
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 300;
  margin-bottom: 44px;
}

/* ============================================
   MAPA
   ============================================ */
.mapa { padding: 40px 0 0; }
.mapa-frame {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.mapa-frame iframe {
  width: 100%; height: 420px;
  border: 0;
  border-radius: 2px;
  filter: grayscale(28%) contrast(1.02);
}

/* ============================================
   RODAPÉ
   ============================================ */
.site-footer { padding: 56px var(--gutter) 0; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--gray-line);
}
.footer-brand .brand-eyebrow { color: var(--gold); }
.footer-brand .brand-name { color: var(--ink); font-size: 24px; display: block; margin: 4px 0 8px; }
.footer-brand p { font-size: 13px; color: var(--ink-soft); }

.footer-links { display: flex; flex-direction: column; gap: 14px; font-size: 14px; color: var(--ink-soft); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px var(--gutter) 34px 0;
  font-size: 11px;
  letter-spacing: .4px;
  color: var(--ink-soft);
}

/* ============================================
   RESPONSIVE — TABLET / DESKTOP
   ============================================ */
@media (min-width: 768px) {
  .sobre { grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding: 160px var(--gutter); }
  .sobre-media { order: 0; }
  .procedimentos-grid { grid-template-columns: repeat(3, 1fr); }

  .section-head { margin: 0 auto 64px; }
  .filosofia { padding: 130px var(--gutter); }
  .procedimentos { padding: 130px 0 120px; }
  .depoimentos { padding: 130px 0; }
  .estrutura { padding: 130px 0; }
  .cta-final { padding: 140px var(--gutter); }
  .mapa { padding: 130px 0 0; }
  .site-footer { padding: 90px var(--gutter) 0; }

  .antes-depois { padding: 0 0 130px; }
  .ad-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: var(--container);
    margin: 0 auto;
    overflow: visible;
    gap: 22px;
  }
  .ad-item { flex: none; scroll-snap-align: none; }
  .ad-dots { display: none; }

  .est-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: var(--container);
    margin: 0 auto;
    overflow: visible;
    gap: 22px;
  }
  .est-item { flex: none; scroll-snap-align: none; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }

  .ad-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .procedimentos-grid { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
}
