/* ==========================================================================
   Clínica Sorrir Bem Odontologia — Design System
   ========================================================================== */

:root {
  /* Cores */
  --cream:        #FBF6F0;
  --cream-soft:   #F6EEE4;
  --nude:         #EFDFCC;
  --rose:         #E9CFC9;
  --rose-deep:    #D9B3AC;
  --burnt-rose:   #B5705F;
  --champagne:    #C9A25E;
  --brown:        #4A3729;
  --brown-soft:   #8A7362;
  --ink:          #2E2118;
  --white:        #FFFFFF;

  /* Tipografia */
  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Sombras / raios */
  --shadow-soft: 0 12px 32px -16px rgba(74, 55, 41, 0.18);
  --shadow-card: 0 8px 24px -12px rgba(74, 55, 41, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --header-h: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-sans);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

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

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-sans); }

p { color: var(--brown-soft); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burnt-rose);
  margin-bottom: 14px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--white); padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--burnt-rose), #9c5c4e);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgba(181, 112, 95, 0.55); }
.btn-outline {
  background: transparent;
  border-color: var(--brown);
  color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-text { padding: 0; border: none; color: var(--burnt-rose); font-weight: 600; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 246, 240, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251, 246, 240, 0.92);
  border-color: rgba(74, 55, 41, 0.08);
  box-shadow: 0 4px 24px -12px rgba(74, 55, 41, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
}
.logo-mark { color: var(--champagne); flex-shrink: 0; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo-text em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnt-rose);
  margin-top: 3px;
}
.logo-text--light { color: var(--cream); }
.logo-text--light em { color: var(--champagne); }

.main-nav ul { display: flex; gap: 30px; list-style: none; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--burnt-rose); }
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--burnt-rose);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.btn-header { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding-left: 11px;
  border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  transition: background 0.25s ease;
}
.hamburger:hover, .hamburger:focus-visible { background: rgba(74,55,41,0.06); }
.hamburger span { width: 22px; height: 2px; border-radius: 2px; background: var(--brown); transition: all 0.3s ease; }
.hamburger span:nth-child(3) { width: 14px; }
.hamburger[aria-expanded="true"] span:nth-child(3) { width: 22px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 490;
  padding: 40px 32px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 30px; }
.mobile-nav a { display: block; font-family: var(--font-serif); font-size: 1.4rem; padding: 12px 0; border-bottom: 1px solid rgba(74,55,41,0.08); color: var(--ink); }

/* ============ Scroll reveal ============ */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(.16,.8,.24,1), transform 0.8s cubic-bezier(.16,.8,.24,1); }
[data-animate="fade-in"] { transform: none; }
[data-animate="slide-right"] { transform: translateX(-32px); }
[data-animate="slide-left"] { transform: translateX(32px); }
[data-animate].in-view { opacity: 1; transform: none; }

/* ============ Image placeholders ============ */
.img-placeholder {
  position: relative;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--nude), var(--rose) 60%, var(--rose-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--burnt-rose);
  overflow: hidden;
  min-height: 220px;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 55%);
}
.img-placeholder span {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown);
  text-align: center;
  padding: 0 16px;
}
.img-placeholder svg { position: relative; opacity: 0.8; }
.img-placeholder:has(img) { background: none; }
.img-placeholder:has(img)::before { display: none; }
.img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 90px;
  overflow: hidden;
  background: var(--cream);
}
.hero-blob {
  position: absolute;
  top: -20%; right: -12%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--rose) 0%, var(--nude) 55%, transparent 72%);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-text { margin: 26px 0 36px; font-size: 1.08rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-social-proof { display: flex; flex-direction: column; gap: 4px; }
.stars { color: var(--champagne); letter-spacing: 2px; font-size: 1.1rem; }
.hero-social-proof strong { font-size: 0.98rem; color: var(--ink); }
.proof-caption { font-size: 0.88rem; color: var(--brown-soft); }

.hero-media { position: relative; }
.hero-img { aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); min-height: 420px; }
.hero-badge {
  position: absolute;
  bottom: -24px; left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 24px;
  display: flex; flex-direction: column;
}
.hero-badge strong { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); }
.hero-badge span { font-size: 0.82rem; color: var(--brown-soft); }

/* ============ Trust bar ============ */
.trust-bar { background: var(--white); padding: 56px 0; border-top: 1px solid rgba(74,55,41,0.06); border-bottom: 1px solid rgba(74,55,41,0.06); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.trust-item { text-align: left; }
.trust-item svg { color: var(--burnt-rose); margin-bottom: 14px; }
.trust-item h3 { font-size: 1.02rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.9rem; }

/* ============ About ============ */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about-img { min-height: 460px; box-shadow: var(--shadow-soft); }
.about-copy p { margin-bottom: 18px; max-width: 52ch; }
.about-copy .btn { margin-top: 12px; }

/* ============ Section head shared ============ */
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head h2 { margin-bottom: 0; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }
.section-title-center { text-align: center; max-width: 700px; margin: 0 auto 56px; }

/* ============ Treatments ============ */
.treatments { padding: 120px 0; background: var(--cream-soft); }
.treatments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.treatment-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--nude));
  display: flex; align-items: center; justify-content: center;
  color: var(--burnt-rose);
  margin-bottom: 20px;
}
.treatment-card h3 { margin-bottom: 10px; }
.treatment-card p { font-size: 0.92rem; }
.treatments-footer { margin-top: 56px; text-align: center; }
.treatments-cta { margin-top: 22px; font-size: 0.98rem; }
.treatments-cta a { color: var(--burnt-rose); font-weight: 700; text-decoration: underline; }

/* ============ Why us ============ */
.why-us { padding: 120px 0; background: linear-gradient(180deg, var(--rose) 0%, var(--nude) 100%); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
.why-item svg { color: var(--brown); margin-bottom: 16px; }
.why-item h3 { margin-bottom: 8px; }
.why-item p { font-size: 0.92rem; }

/* ============ Team ============ */
.team { padding: 120px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); padding: 26px; }
.team-photo { aspect-ratio: 1; margin-bottom: 20px; }
.team-role { color: var(--burnt-rose); font-size: 0.88rem; font-weight: 600; margin: 6px 0 12px; }
.team-bio { font-size: 0.9rem; margin-bottom: 16px; }
.team-empty {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--cream-soft);
  border: 1.5px dashed var(--rose-deep);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.team-empty svg { color: var(--burnt-rose); }
.team-empty p { max-width: 40ch; font-size: 1rem; }

/* ============ Results ============ */
.results { padding: 120px 0; background: var(--cream-soft); }
.results-tabs { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.results-tag {
  padding: 9px 20px; border-radius: 100px; background: var(--white);
  font-size: 0.85rem; font-weight: 600; color: var(--brown-soft);
  box-shadow: var(--shadow-card);
}
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.result-card { background: var(--white); padding: 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.before-after .img-placeholder { min-height: 160px; border-radius: var(--radius-sm); }
.result-label { text-align: center; margin-top: 16px; font-weight: 600; color: var(--ink); }
.results-disclaimer { text-align: center; margin-top: 44px; font-size: 0.84rem; font-style: italic; color: var(--brown-soft); }

/* ============ Reviews ============ */
.reviews { padding: 120px 0; }
.reviews .section-head { max-width: 100%; text-align: center; margin: 0 auto 56px; }
.reviews-score { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 22px; }
.score-number { font-family: var(--font-serif); font-size: 3rem; color: var(--ink); }
.reviews-score div { text-align: left; display: flex; flex-direction: column; gap: 2px; font-size: 0.9rem; color: var(--brown-soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card { background: var(--white); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-card); }
.review-card .stars { display: block; margin-bottom: 14px; font-size: 1rem; }
.review-card p { color: var(--ink); font-size: 0.98rem; margin-bottom: 16px; }
.review-card cite { font-style: normal; font-size: 0.82rem; color: var(--brown-soft); }
.reviews-footer { text-align: center; margin-top: 48px; }

/* ============ Experience / gallery ============ */
.experience { padding: 120px 0; background: var(--cream-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 20px; }
.gallery-item { grid-row: span 1; }
.gallery-item--tall { grid-row: span 2; }

/* ============ CTA band ============ */
.cta-band { padding: 110px 0; background: linear-gradient(135deg, var(--rose) 0%, var(--nude) 100%); text-align: center; }
.cta-band-inner { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { margin-bottom: 34px; font-size: 1.05rem; }
.cta-phone { margin-top: 22px; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.cta-note { margin-top: 6px; font-size: 0.88rem; }

/* ============ Location ============ */
.location { padding: 120px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-info address { font-style: normal; margin: 24px 0; line-height: 1.9; color: var(--brown-soft); }
.location-info address strong { color: var(--ink); }
.location-phone { margin-bottom: 30px; color: var(--brown-soft); }
.location-hours { background: var(--cream-soft); border-radius: var(--radius-md); padding: 22px 24px; margin-bottom: 34px; }
.location-hours h3 { margin-bottom: 8px; font-size: 1rem; }
.location-hours p { font-size: 0.9rem; }
.location-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.location-map iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ============ Instagram ============ */
.instagram { padding: 120px 0; background: var(--cream-soft); text-align: center; }
.instagram .section-head { margin: 0 auto 40px; }
.instagram-handle { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--burnt-rose); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ig-item { aspect-ratio: 1; min-height: 0; border-radius: var(--radius-sm); }
.ig-item svg { display: none; }
.instagram-footer { margin-top: 42px; }

/* ============ FAQ ============ */
.faq { padding: 120px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 1.02rem; font-weight: 600; color: var(--ink); text-align: left;
}
.faq-chevron { color: var(--burnt-rose); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 26px 22px; font-size: 0.95rem; max-width: 62ch; }

/* ============ CTA final ============ */
.cta-final { padding: 130px 0; text-align: center; background: var(--ink); }
.cta-final h2 { color: var(--cream); max-width: 640px; margin: 0 auto 12px; }
.cta-final p { color: var(--rose); font-size: 1.1rem; margin-bottom: 34px; }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: rgba(251,246,240,0.75); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(251,246,240,0.1); }
.footer-brand p { color: rgba(251,246,240,0.6); margin-top: 14px; max-width: 26ch; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--champagne); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(251,246,240,0.7); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--champagne); }
.footer-col p { color: rgba(251,246,240,0.7); font-size: 0.92rem; margin-bottom: 8px; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(251,246,240,0.5); }
.footer-legal a { color: rgba(251,246,240,0.5); }
.footer-legal a:hover { color: var(--champagne); }

/* ============ WhatsApp float ============ */
.whatsapp-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #3fae5c, #2f8f49);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(47, 143, 73, 0.55);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-tooltip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: var(--cream);
  padding: 8px 14px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============ Voltar ao topo ============ */
.back-to-top {
  position: fixed; right: 26px; bottom: 98px; z-index: 600;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--brown);
  border: 1px solid rgba(74,55,41,0.1);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  opacity: 0; transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--ink); color: var(--cream); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .treatments-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-grid, .about-grid, .location-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-badge { left: 16px; bottom: -18px; }
  .trust-grid, .why-grid, .team-grid, .results-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }
  .hero { padding: calc(var(--header-h) + 32px) 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about, .treatments, .why-us, .team, .results, .reviews, .experience, .location, .instagram, .faq, .cta-band, .cta-final { padding: 80px 0; }
  .trust-grid, .why-grid, .treatments-grid, .team-grid, .results-grid, .footer-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item--tall { grid-row: span 1; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; }
  .cta-band-inner .btn { width: 100%; }
  .reviews-score { flex-direction: column; gap: 8px; }
  .reviews-score div { text-align: center; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-tooltip { display: none; }
  .back-to-top { right: 16px; bottom: 82px; width: 42px; height: 42px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
