/* ============================================
   DRA. CAROLINE GROSCH — DESIGN SYSTEM
   ============================================ */

:root {
  --ivory: #F3EEE3;
  --ivory-alt: #EAE2D0;
  --paper: #FFFFFF;
  --pine: #1B362C;
  --pine-deep: #11241D;
  --pine-soft: #2A4A3C;
  --gray-line: #E1D9C8;
  --ink: #221E1A;
  --ink-soft: #5A5348;
  --gold: #AE8A4E;
  --gold-soft: #CBAD75;
  --gold-line: rgba(174, 138, 78, .32);

  --font-serif: 'Spectral', serif;
  --font-sans: 'Outfit', 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(--ivory);
  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.6px, .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: 500;
  color: var(--ink);
  line-height: 1.15;
}
em { font-style: italic; color: var(--gold); font-family: var(--font-serif); }

.center { text-align: center; }

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

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

.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 .8s var(--ease), transform .8s 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;
  }
  .pulse-ring, .breathe-note::before { animation: 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(--pine);
  color: #fff;
  border: 1px solid var(--pine);
}
.btn-solid:hover { transform: scale(1.03); background: var(--pine-soft); }
.btn-outline {
  background: transparent;
  color: var(--white, #fff);
  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(--ivory); }
.btn-lg { padding: 19px 48px; font-size: 13px; }

.btn-whatsapp {
  background: var(--gold);
  color: var(--pine-deep);
  border: 1px solid var(--gold);
  gap: 12px;
  padding: 16px 40px;
  width: 100%;
  max-width: 380px;
}
.btn-whatsapp .icon-whatsapp { flex-shrink: 0; }
.btn-whatsapp:hover { background: var(--gold-soft); border-color: var(--gold-soft); 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(243, 238, 227, .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: #fff; 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: 21px;
  color: #fff;
}

.nav-desktop { display: none; gap: 40px; }
.nav-desktop a {
  font-size: 13px;
  letter-spacing: .5px;
  color: #fff;
  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: #fff;
}
.site-header.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.site-header.scrolled .nav-cta:hover { background: var(--ink); color: var(--ivory); }
.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: #fff;
  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(--ivory);
  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 — vídeo vivo em tela cheia (elemento de assinatura)
   ============================================ */
.hero { position: relative; height: 100svh; min-height: 580px; overflow: hidden; background: var(--pine-deep); }

.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  position: absolute; inset: 0;
  filter: brightness(.6);
}
.hero-media img { z-index: 1; }
.hero-media video { z-index: 2; opacity: 0; transition: opacity 1s var(--ease); }
.hero-media video.is-playing { opacity: 1; }

.hero-scrim {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(to top, rgba(17,36,29,.95) 0%, rgba(17,36,29,.6) 32%, rgba(17,36,29,.08) 60%),
    linear-gradient(to bottom, rgba(17,36,29,.55) 0, rgba(17,36,29,0) 110px);
}

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

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

.hero-content .eyebrow { color: rgba(255,255,255,.72); }
.text-outline {
  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(28px, 8vw, 34px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  max-width: 15ch;
  text-wrap: balance;
}
.hero-title em { color: var(--pine); }
.hero-signature {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: .3px;
  color: rgba(255,255,255,.72);
  margin-bottom: 4px;
}
.hero-location {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin: 0 0 20px; }
.hero-actions .btn { width: 100%; }

/* selo de avaliação + anel de respiração (elemento de assinatura) */
.hero-rating {
  position: relative;
  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);
  width: fit-content;
}
.hero-rating:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); transform: translateY(-2px); }
.pulse-ring {
  position: absolute; left: 14px; top: 50%;
  width: 34px; height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  opacity: 0;
  animation: breatheRing 4.2s ease-out infinite;
  pointer-events: none;
}
.pulse-ring.delay { animation-delay: 1.4s; }
@keyframes breatheRing {
  0% { transform: translateY(-50%) scale(.6); opacity: 0; }
  25% { opacity: .55; }
  70% { opacity: 0; }
  100% { transform: translateY(-50%) scale(1.7); opacity: 0; }
}
.stars { color: var(--gold-soft); font-size: 14px; letter-spacing: 2px; }
.rating-text { font-size: 13px; letter-spacing: .4px; color: rgba(255,255,255,.9); }

.scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  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: #fff;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; }
}

@media (min-width: 768px) {
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(17,36,29,.82) 0%, rgba(17,36,29,.62) 32%, rgba(17,36,29,.24) 54%, rgba(17,36,29,0) 66%),
      linear-gradient(180deg, rgba(17,36,29,.3) 0%, rgba(17,36,29,0) 26%, rgba(17,36,29,0) 56%, rgba(17,36,29,.55) 100%);
  }
  .hero-media video, .hero-media img { object-position: 78% 22%; }
  .hero-content { padding: 0 var(--gutter) 76px; }
  .hero-text { max-width: 58%; }
  .hero-card { margin-bottom: 0; }
  .hero-card .eyebrow { margin-bottom: 18px; }
  .hero-title { font-size: clamp(38px, 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; }
}

/* ============================================
   INTRODUÇÃO
   ============================================ */
.intro {
  background: var(--ivory-alt);
  padding: 56px var(--gutter);
  text-align: center;
}
.intro-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 3.2vw, 27px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--gutter);
  display: grid;
  gap: 32px;
}
.sobre-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; 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; margin-bottom: 18px; }
.body-text:last-child { margin-bottom: 0; }

.pilares { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.pilar {
  border: 1px solid var(--gold-line); border-radius: 99px;
  padding: 8px 18px; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}

/* ============================================
   FILOSOFIA
   ============================================ */
.filosofia {
  background: var(--pine);
  color: var(--ivory);
  padding: 40px var(--gutter);
  text-align: center;
}
.filosofia .eyebrow { color: var(--gold-soft); }
.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(--ivory);
}
.statement-gold { color: var(--gold-soft); }
.filosofia-note {
  margin-top: 64px;
  font-size: 13px;
  letter-spacing: .5px;
  color: rgba(243,238,227,.6);
}

/* ============================================
   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; }

/* ============================================
   TRATAMENTOS
   ============================================ */
.tratamentos { padding: 40px 0 20px; }
.tratamentos-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.proc-card { text-align: left; }
.proc-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 18px;
  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: 21px;
  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: 14px; color: var(--ink-soft); max-width: 34ch; }

/* cardápio completo — lista textual (sem foto inventada) */
.cardapio {
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 48px var(--gutter);
  background: var(--paper);
  border-radius: 4px;
  display: grid;
  gap: 40px;
}
.cardapio-col h3 {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-line);
}
.cardapio-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.cardapio-col li {
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.cardapio-col li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* ============================================
   RESULTADOS (ANTES E DEPOIS)
   ============================================ */
.resultados { padding: 40px 0 40px; }

.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 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--pine-deep);
  position: relative;
}
.ad-item img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.ad-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(243,238,227,.92);
  border-radius: 99px; padding: 7px 16px;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
}

.ad-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.ad-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  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); }
.ad-note { text-align: center; margin-top: 18px; font-size: 13px; color: var(--ink-soft); padding: 0 var(--gutter); }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos { background: var(--ivory-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(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  background: var(--ivory);
  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(--ivory); border-color: var(--ink); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  opacity: .5;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.testi-dots span.active { opacity: 1; transform: scale(1.3); background: var(--gold); }

/* ============================================
   A CLÍNICA
   ============================================ */
.clinica { padding: 40px 0; }
.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); }

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

/* ============================================
   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: 380px;
  border: 0;
  border-radius: 2px;
  filter: grayscale(30%) contrast(1.02) sepia(6%);
}

/* ============================================
   RODAPÉ
   ============================================ */
.site-footer { padding: 56px var(--gutter) 0; background: var(--ivory); }
.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) {
  .intro { padding: 96px var(--gutter); }
  .sobre { grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding: 150px var(--gutter); }
  .tratamentos-grid { grid-template-columns: repeat(4, 1fr); }

  .section-head { margin: 0 auto 64px; }
  .filosofia { padding: 130px var(--gutter); }
  .tratamentos { padding: 130px 0 40px; }
  .cardapio { grid-template-columns: repeat(3, 1fr); padding: 56px; }
  .depoimentos { padding: 130px 0; }
  .clinica { padding: 130px 0; }
  .cta-final { padding: 140px var(--gutter); }
  .mapa { padding: 130px 0 0; }
  .site-footer { padding: 90px var(--gutter) 0; }

  .resultados { padding: 0 0 130px; }
  .ad-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: var(--container);
    margin: 0 auto;
    overflow: visible;
    gap: 22px;
  }
  .ad-item { flex: none; scroll-snap-align: none; aspect-ratio: 4/5; }
  .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; }
}

@media (max-width: 767px) {
  .tratamentos-grid { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .cardapio { padding: 40px 22px; gap: 34px; }
}
