/* ============================================================
   MULHEREZ — THE CLINICAL ATELIER
   styles.css | Vanilla CSS Design System
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand */
  --c-primary:        #4b194b;
  --c-primary-light:  #653063;
  --c-secondary:      #006a65;
  --c-secondary-dim:  #44dbd2;
  --c-secondary-faint:#65f5eb;

  /* Surfaces */
  --c-surface:        #fcf9f8;
  --c-surface-low:    #f6f3f2;
  --c-surface-high:   #eae7e7;
  --c-surface-highest:#e5e2e1;
  --c-surface-dim:    #dcd9d9;

  /* Text */
  --c-on-surface:        #1c1b1b;
  --c-on-surface-muted:  #4f434c;
  --c-on-surface-faint:  rgba(28,27,27,0.45);

  /* Misc */
  --c-outline:        #80737d;
  --c-outline-light:  #d2c2cc;
  --c-white:          #ffffff;
  --c-black:          #000000;

  /* Gradient */
  --gradient-brand:   linear-gradient(135deg, #4b194b 0%, #653063 100%);

  /* Typography */
  --font-serif:  'Noto Serif', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (rem) */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Border radius */
  --r-sm:   0.25rem;
  --r-md:   0.5rem;
  --r-lg:   0.75rem;
  --r-xl:   1rem;
  --r-2xl:  1.5rem;
  --r-3xl:  2rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(28,27,27,0.06);
  --shadow-sm: 0 4px 12px rgba(28,27,27,0.07);
  --shadow-md: 0 8px 28px rgba(28,27,27,0.09);
  --shadow-lg: 0 20px 60px rgba(28,27,27,0.12);
  --shadow-xl: 0 32px 80px rgba(28,27,27,0.16);

  /* Transitions */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  180ms var(--ease-out);
  --t-base:  320ms var(--ease-out);
  --t-slow:  640ms var(--ease-out);
  --t-xslow: 900ms var(--ease-out);

  /* Layout */
  --max-w: 1280px;
  --nav-h: 80px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection {
  background: #d4b5d4 !important;
  color: #1c1b1b !important;
}
::-moz-selection {
  background: #d4b5d4 !important;
  color: #1c1b1b !important;
}
*::selection {
  background: #d4b5d4 !important;
  color: #1c1b1b !important;
}
*::-moz-selection {
  background: #d4b5d4 !important;
  color: #1c1b1b !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-on-surface);
  background-color: var(--c-surface);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide cursor on touch devices */
@media (hover: none) {
  .cursor { display: none !important; }
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: var(--sp-4);
}
.eyebrow--light { color: rgba(255,255,255,0.6); }
.eyebrow-pill {
  display: inline-block;
  width: fit-content;
  padding: 0.34rem 0.8rem;
  border-radius: 9999px;
  background: rgba(0, 106, 101, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--c-secondary);
  border: 1px solid rgba(0, 106, 101, 0.25);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
}
.eyebrow-pill:hover {
  background: rgba(0, 106, 101, 0.18);
  border-color: rgba(0, 106, 101, 0.35);
  transform: translateY(-1px);
}

.eyebrow-pill-purple {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(75, 25, 75, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--c-primary);
  border: 1px solid rgba(75, 25, 75, 0.25);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
}
.eyebrow-pill-purple:hover {
  background: rgba(75, 25, 75, 0.18);
  border-color: rgba(75, 25, 75, 0.35);
  transform: translateY(-1px);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.15;
}

.section-note {
  font-size: 0.9375rem;
  color: var(--c-on-surface-muted);
  line-height: 1.65;
  max-width: 22rem;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-12);
}

.section {
  padding-block: var(--sp-16);
  position: relative;
}

/* linha divisória premium entre seções adjacentes */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(75, 25, 75, 0.1) 30%,
    rgba(75, 25, 75, 0.1) 70%,
    transparent
  );
}

.section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-8);
  margin-bottom: var(--sp-20);
}

.section-center {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section-center .eyebrow { display: block; }
.section-center .section-title {
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-6);
}

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%,100% { opacity: 0; }
}

@keyframes scrollThumb {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(28px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes preloader-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--t-xslow),
    transform var(--t-xslow);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-48px);
}

[data-reveal="right"] {
  transform: translateX(48px);
}

[data-reveal="up"] {
  transform: translateY(36px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* ── PRELOADER ──────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.preloader__brand {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  animation: slideUp 0.5s var(--ease-out) both;
}

.preloader__bar-track {
  width: 160px;
  height: 1px;
  background: var(--c-outline-light);
  overflow: hidden;
  border-radius: var(--r-full);
}

.preloader__bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  border-radius: var(--r-full);
  animation: preloader-fill 1.8s var(--ease-out) 0.3s forwards;
}

.preloader__tagline {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-on-surface-muted);
  animation: fadeIn 0.5s 0.5s both;
}

/* ── SCROLL PROGRESS ────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-secondary) 0%, var(--c-secondary-dim) 100%);
  z-index: 9998;
  transition: width 0.1s linear;
  will-change: width;
  box-shadow: 0 0 12px rgba(68, 219, 210, 0.5);
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9997;
  mix-blend-mode: normal;
}

.cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(75,25,75,0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width  0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    border-color 0.35s,
    background 0.35s,
    transform 0.12s linear;
  will-change: transform;
}

.cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.25s, height 0.25s, background 0.25s;
  will-change: transform;
}

/* Hover states injected by JS via .cursor--hover */
.cursor--hover .cursor__ring {
  width: 64px;
  height: 64px;
  border-color: rgba(75,25,75,0.2);
  background: rgba(75,25,75,0.06);
}
.cursor--hover .cursor__dot {
  width: 4px;
  height: 4px;
}

.cursor--link .cursor__ring {
  width: 56px;
  height: 56px;
  border-color: rgba(0,106,101,0.4);
}
.cursor--link .cursor__dot {
  background: var(--c-secondary);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition: background var(--t-base), box-shadow var(--t-base), backdrop-filter var(--t-base);
}

.nav.scrolled {
  background: rgba(252,249,248,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 32px rgba(28,27,27,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-10);
  max-width: var(--max-w);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--sp-12);
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__brand-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(75,25,75,0.65);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--t-base);
  border-radius: var(--r-full);
}

.nav__link:hover,
.nav__link--active {
  color: var(--c-primary);
}

.nav__link--active::after,
.nav__link:hover::after {
  width: 100%;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--c-primary);
  border-radius: var(--r-full);
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(252,249,248,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base);
}

.mob-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mob-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  text-align: center;
}

.mob-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary);
  opacity: 0.75;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.mob-menu__link:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform     0.25s var(--ease-out),
    box-shadow    0.25s var(--ease-out),
    background    var(--t-base),
    border-color  var(--t-base),
    opacity       var(--t-fast);
}

/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
  pointer-events: none;
  border-radius: inherit;
}
.btn:hover::after {
  transform: translateX(100%);
}
.btn:hover {
  transform: scale(1.04);
}

.btn--primary {
  background: #28D3C3;
  color: var(--c-white);
  box-shadow: 0 6px 20px rgba(40, 211, 195, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(40, 211, 195, 0.4);
}
.btn--primary:active { transform: scale(0.97); }

.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid rgba(75,25,75,0.25);
}
.btn--ghost:hover {
  background: rgba(75,25,75,0.05);
  border-color: rgba(75,25,75,0.4);
}

.btn--outline {
  background: var(--c-surface);
  color: var(--c-primary);
  border: 1.5px solid rgba(75,25,75,0.2);
}
.btn--outline:hover {
  background: var(--c-surface-low);
}

/* Sizes */
.btn--sm  { font-size: 0.8125rem; padding: 0.625rem 1.375rem; }
.btn--md  { font-size: 0.9375rem; padding: 0.875rem 1.875rem; }
.btn--lg  { font-size: 0.9375rem; padding: 1rem 2.5rem; }
.btn--xl  { font-size: 1.0625rem; padding: 1.1875rem 3rem; }
.btn--full { width: 100%; }
.btn--icon { gap: var(--sp-3); }
.btn--icon .material-symbols-outlined { font-size: 1.1em; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--c-surface);
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}

/* ── HERO BACKGROUND AMBIENCE ────────────────────────────── */

/* Container — sits behind all content */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Content above the background */
.hero > .container {
  position: relative;
  z-index: 1;
}

/* ·· Soft gradient orbs ·· */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Purple aura — top-left */
.hero__orb--1 {
  width: 700px;
  height: 700px;
  top: -220px;
  left: -200px;
  background: radial-gradient(circle at center,
    rgba(75,25,75,0.16) 0%,
    rgba(75,25,75,0.07) 45%,
    transparent 70%);
  animation: orbDrift1 22s ease-in-out infinite alternate;
}

/* Soft rose aura — bottom-right */
.hero__orb--2 {
  width: 540px;
  height: 540px;
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle at center,
    rgba(160,60,140,0.12) 0%,
    rgba(120,40,110,0.04) 50%,
    transparent 70%);
  animation: orbDrift2 28s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0)       scale(1);    }
  to   { transform: translate(50px, 38px) scale(1.1);  }
}
@keyframes orbDrift2 {
  from { transform: translate(0, 0)          scale(1);    }
  to   { transform: translate(-38px, -30px)  scale(1.08); }
}

/* ·· Light sheen waves — sweep right → left across the hero ·· */
.hero__sheen {
  position: absolute;
  top: -30%;
  right: 0;
  width: 28%;
  height: 160%;
  background: linear-gradient(
    to right,
    transparent                 0%,
    rgba(255,255,255,0.038)    30%,
    rgba(255,255,255,0.082)    50%,
    rgba(255,255,255,0.038)    70%,
    transparent                100%
  );
  transform: translateX(110%) rotate(10deg);
  will-change: transform, opacity;
  pointer-events: none;
}

/* Wave 1 — upper third of hero */
.hero__sheen--1 {
  top: -40%;
  width: 26%;
  animation: sheenWave 15s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 1s;
}

/* Wave 2 — mid hero, slightly wider */
.hero__sheen--2 {
  top: -10%;
  width: 32%;
  background: linear-gradient(
    to right,
    transparent                 0%,
    rgba(255,255,255,0.027)    30%,
    rgba(255,255,255,0.068)    50%,
    rgba(255,255,255,0.027)    70%,
    transparent                100%
  );
  animation: sheenWave 15s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 6s;
}

/* Wave 3 — lower third, narrower */
.hero__sheen--3 {
  top: 30%;
  width: 22%;
  animation: sheenWave 15s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 11s;
}

@keyframes sheenWave {
  0%   { transform: translateX(120%)  rotate(10deg); opacity: 0;   }
  6%   { opacity: 1;                                               }
  32%  { transform: translateX(-130%) rotate(10deg); opacity: 0;   }
  100% { transform: translateX(-130%) rotate(10deg); opacity: 0;   }
}

/* ·· Fine diagonal grid — atelier texture ·· */
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* Two-column layout */
.hero__layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--sp-16);
  min-height: calc(100svh - var(--nav-h));
}

/* Text column — left half */
.hero__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  max-width: 34rem;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--c-primary); /* Traz o roxo elegante da marca */
  letter-spacing: 0.25em; /* Espaça ainda mais as letras */
  font-weight: 500; /* Deixa a fonte um pouco mais delicada */
}

/* Adiciona a linha fina de luxo antes do texto */
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--c-primary);
  opacity: 0.5;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  font-weight: 700;
  color: var(--c-on-surface);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* "Somatic Elegance" — italic purple */
.hero__em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--c-primary);
  line-height: 1.05;
}

.hero__sub {
  font-size: 0.9375rem;
  color: var(--c-on-surface-muted);
  line-height: 1.7;
  max-width: 26rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-top: var(--sp-2);
}

/* Pill dark button (hero only) — inherits .btn shine via position:relative+overflow:hidden */
.btn--pill-dark {
  background: #28D3C3;
  color: var(--c-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-full);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(40, 211, 195, 0.3);
  transition: background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn--pill-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
  pointer-events: none;
  border-radius: inherit;
}
.btn--pill-dark:hover::after {
  transform: translateX(100%);
}
.btn--pill-dark:hover {
  background: #2ee0cf;
  box-shadow: 0 8px 28px rgba(40, 211, 195, 0.42);
  transform: scale(1.04);
}
.btn--pill-dark:active { transform: scale(0.97); }

/* "The Philosophy →" text link */
.hero__text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-on-surface-muted);
  transition: color var(--t-fast), gap var(--t-base);
}
.hero__text-link:hover {
  color: var(--c-primary);
  gap: var(--sp-3);
}

/* Floral portrait — bloom emerges from the right */
.hero__portrait {
  position: absolute;
  right: 0;
  top: 0;
  width: 56%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.25) 15%,
    rgba(0,0,0,0.70) 38%,
    black 65%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.25) 15%,
    rgba(0,0,0,0.70) 38%,
    black 65%
  );
}

/* Teal accent circle */
.hero__accent {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--c-secondary-faint);
  opacity: 0.85;
  z-index: -1;
  animation: float 5s ease-in-out infinite;
}

/* ── STATS BAND ─────────────────────────────────────────────── */
/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
  position: relative;
  background: var(--c-primary);
  padding-block: 3.15rem;
  overflow: hidden;
}

/* Teal gradient line — top edge */
.stats-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(68,219,210,0.45) 35%,
    rgba(68,219,210,0.65) 50%,
    rgba(68,219,210,0.45) 65%,
    transparent 100%
  );
}

/* Teal gradient line — bottom edge */
.stats-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(68,219,210,0.25) 35%,
    rgba(68,219,210,0.40) 50%,
    rgba(68,219,210,0.25) 65%,
    transparent 100%
  );
}

/* Radial spotlight — premium depth */
.stats-band .container {
  position: relative;
}
.stats-band .container::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(68,219,210,0.06) 0%,
    transparent 70%);
  pointer-events: none;
}

/* ── Eyebrow title ── */
.stats-band__eyebrow {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-secondary-dim);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

/* Decorative lines flanking the title */
.stats-band__eyebrow::before,
.stats-band__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(68,219,210,0.5));
}
.stats-band__eyebrow::after {
  background: linear-gradient(to left, transparent, rgba(68,219,210,0.5));
}

/* ── Stats grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

/* Vertical dividers between stats */
.stat {
  padding-inline: var(--sp-8);
  padding-block: var(--sp-4);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:last-child { border-right: none; }

.stat__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: var(--sp-3);
}

.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.44rem, 4.55vw, 3.41rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255,255,255,0.82) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__unit {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-secondary-dim);
  text-shadow: 0 0 14px rgba(68,219,210,0.45);
}

.stat__label {
  font-size: 0.5875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

/* ── TREATMENT CARDS ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  align-items: start;
}

.card--offset-md { margin-top: var(--sp-24); }
.card--offset-sm { margin-top: var(--sp-12); }

.card--treatment {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}

.card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-6);
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  will-change: transform;
}

.card--treatment:hover .card__img {
  transform: scale(1.08);
}

.card__veil {
  position: absolute;
  inset: 0;
  background: rgba(75,25,75,0.18);
  opacity: 0;
  transition: opacity var(--t-base);
}

.card--treatment:hover .card__veil {
  opacity: 1;
}

.card__body {
  padding-inline: var(--sp-2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: all var(--t-base);
}

.card--treatment:hover .card__body {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(75, 25, 75, 0.15);
}

/* Ativar efeito da setinha ao hovear o card */
.card--treatment:hover .subtle-card-cta {
  opacity: 1;
}

.card--treatment:hover .subtle-card-cta .material-symbols-outlined {
  transform: translateX(4px);
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: var(--c-secondary-faint);
  color: var(--c-secondary);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
  transition: color var(--t-fast);
}
.card--treatment:hover .card__title { color: var(--c-primary-light); }

.card__text {
  font-size: 0.9rem;
  color: var(--c-on-surface-muted);
  line-height: 1.65;
}

/* ── BEFORE / AFTER ─────────────────────────────────────────── */
.ba-section {
  background: var(--c-primary);
  color: var(--c-surface);
}

.ba-head {
  text-align: center;
  margin-bottom: var(--sp-20);
}

.ba-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.125rem);
  font-weight: 700;
  color: var(--c-surface);
  margin-bottom: var(--sp-5);
  line-height: 1.15;
}
.ba-title em { font-weight: 400; font-style: italic; }

@media (min-width: 768px) {
  .ba-title {
    line-height: 1.1;
  }
}

.ba-desc {
  font-size: 1rem;
  color: rgba(252,249,248,0.65);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.65;
}

.ba-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

/* ── BA Slider ── */
.ba-slider-wrap { position: relative; }

.ba-slider {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-3xl);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--shadow-xl);
}

.ba-slider__before,
.ba-slider__after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 10;
  cursor: col-resize;
  will-change: left;
}

.ba-slider__line {
  width: 2px;
  flex: 1;
  background: rgba(255,255,255,0.9);
  pointer-events: none;
}

.ba-slider__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.ba-slider__btn:hover { transform: translate(-50%, -50%) scale(1.12); }

.ba-label {
  position: absolute;
  bottom: 1.25rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  color: var(--c-white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--r-full);
  pointer-events: none;
}
.ba-label--left  { left: 1rem; }
.ba-label--right { right: 1rem; }

/* BA Info */
.ba-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.ba-protocol {
  border-left: 2px solid var(--c-secondary);
  padding-left: var(--sp-8);
  padding-block: var(--sp-2);
}

.ba-protocol__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-surface);
  margin-bottom: var(--sp-3);
}

.ba-protocol__text {
  font-size: 0.9rem;
  color: rgba(252,249,248,0.6);
  line-height: 1.65;
}

.ba-tags {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.ba-tag {
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-surface);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--t-fast);
}
.ba-tag:hover { background: rgba(255,255,255,0.18); }

.ba-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-surface);
  border-bottom: 1px solid rgba(252,249,248,0.3);
  padding-bottom: var(--sp-2);
  transition: border-color var(--t-fast), gap var(--t-base);
  width: fit-content;
}
.ba-cta:hover {
  border-color: var(--c-secondary-dim);
  gap: var(--sp-5);
}
.ba-cta .material-symbols-outlined { font-size: 1.1em; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: var(--c-surface); }

.testimonials__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
  align-items: center;
}

.testimonials__content { position: relative; }

.testimonials__mark {
  position: absolute;
  top: -3rem;
  left: -3rem;
  font-family: var(--font-serif);
  font-size: 12rem;
  color: rgba(75,25,75,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.15;
  margin-bottom: var(--sp-8);
}

/* Carousel */
.testi-carousel {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.testi-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  pointer-events: none;
}

.testi-item.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testi-item.exit {
  opacity: 0;
  transform: translateX(-32px);
}

.testi-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--c-on-surface-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-surface-high);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-primary);
}

.testi-since {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary);
}

/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.testi-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(75,25,75,0.2);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.testi-arrow:hover {
  background: rgba(75,25,75,0.05);
  border-color: rgba(75,25,75,0.4);
  transform: scale(1.06);
}

.testi-dots {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(75,25,75,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), width var(--t-base);
}

.testi-dot.active {
  background: var(--c-primary);
  width: 22px;
  border-radius: var(--r-full);
}

/* Visual */
.testimonials__visual {
  position: relative;
}

.testimonials__img {
  width: 100%;
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.testimonials__glow {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 260px;
  height: 260px;
  background: rgba(0,106,101,0.08);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

/* ── MEDICAL TEAM ───────────────────────────────────────────── */
.team { background: var(--c-surface-low); overflow: hidden; }

.team-carousel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-12);
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.doctor {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--t-slow);
}

.doctor:hover {
  transform: translateY(-4px);
}

.doctor__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.doctor__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.doctor__crm {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary-faint);
  background: rgba(0, 106, 101, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 106, 101, 0.5);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: var(--sp-1);
}

.doctor__name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--c-white);
  margin: 0;
  line-height: 1.2;
}

.doctor__role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 219, 219, 0.8);
  margin: 0;
}

.doctor__bio {
  font-size: 0.8rem;
  color: rgba(252, 249, 248, 0.9);
  line-height: 1.5;
  margin: 0;
}

.team__dots { display: none; }

@media (max-width: 768px) {
  .team-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--sp-4);
    padding-bottom: var(--sp-2);
  }
  .team-carousel::-webkit-scrollbar { display: none; }

  .doctor {
    flex: 0 0 85%;
    scroll-snap-align: center;
    aspect-ratio: 9/12;
    background-size: cover;
    background-position: center;
  }

  .doctor:first-child { margin-left: 7.5%; }
  .doctor:last-child  { margin-right: 7.5%; }

  .doctor__content {
    padding: var(--sp-5) var(--sp-4) var(--sp-4);
    gap: var(--sp-2);
  }

  .doctor__crm {
    font-size: 0.55rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: var(--sp-1);
  }

  .doctor__name {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .doctor__role {
    font-size: 0.65rem;
  }

  .doctor__bio {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* Dots */
  .team__dots {
    display: flex;
    justify-content: center;
    gap: var(--sp-2);
    margin-top: var(--sp-5);
  }

  .team__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-surface-highest);
    border: none;
    cursor: pointer;
    transition: background var(--t-fast), width var(--t-fast);
    padding: 0;
  }

  .team__dot--active {
    background: var(--c-primary);
    width: 24px;
    border-radius: 4px;
  }
}

/* ── SANCTUARY ──────────────────────────────────────────────── */
.sanctuary { background: var(--c-surface); }

#treatments {
  background: var(--c-surface-low);
}

.sanctuary__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

/* Mosaic */
.sanctuary__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.sanctuary__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.sanctuary__col--b { margin-top: var(--sp-12); }

.sanctuary__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  object-fit: cover;
  display: block;
  width: 100%;
  transition: transform var(--t-slow);
}
.sanctuary__img:hover { transform: scale(1.025); }

.sanctuary__img--sq   { aspect-ratio: 1; }
.sanctuary__img--tall { aspect-ratio: 3/4; }

/* Text */
.sanctuary__text { display: flex; flex-direction: column; gap: var(--sp-6); }

.sanctuary__desc {
  font-size: 1.0625rem;
  color: var(--c-on-surface-muted);
  line-height: 1.7;
}

.sanctuary__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}

.sanctuary__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-primary);
}

.sanctuary__icon {
  color: var(--c-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ── ETHOS ──────────────────────────────────────────────────── */
.ethos {
  position: relative;
  padding-block: var(--sp-32);
  background: var(--c-primary);
  overflow: hidden;
}

.ethos__decor {
  position: absolute;
  right: 0;
  top: 0;
  width: 33%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.ethos__body {
  max-width: 50rem;
  position: relative;
  z-index: 1;
}

.ethos__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--sp-10);
}

.ethos__quote {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-style: italic;
  color: rgba(252,249,248,0.75);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: var(--sp-12);
  border: none;
  padding: 0;
}

.ethos__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
}

.ethos__pillar-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.ethos__pillar-text {
  font-size: 0.875rem;
  color: rgba(252,249,248,0.55);
  line-height: 1.65;
}


/* ── REVIEWS CAROUSEL ───────────────────────────────────────── */
.reviews { background: var(--c-surface-low); }

.reviews__track-wrapper {
  overflow: hidden;
  margin-top: var(--sp-16);
  margin-bottom: var(--sp-8);
  cursor: grab;
  user-select: none;
}
.reviews__track-wrapper:active { cursor: grabbing; }

.reviews__track {
  display: flex;
  gap: var(--sp-6);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-card {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  box-shadow: 0 2px 16px rgba(75,25,75,0.06);
  border: 1px solid rgba(75,25,75,0.06);
  transition: box-shadow var(--t-mid), transform var(--t-mid);
  /* make all cards the same height */
  min-height: 360px;
  align-self: stretch;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(75,25,75,0.12);
  transform: translateY(-3px);
}

.review-card__stars {
  color: #f5a623;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--c-on-surface);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  border-top: 1px solid var(--c-surface-high);
  padding-top: var(--sp-5);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--c-surface-high);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23bbb'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center 55%;
  flex-shrink: 0;
  overflow: hidden;
}
/* quando tiver foto real, ela cobre o ícone genérico */
.review-card__avatar[style*="url('http"],
.review-card__avatar[style*="url(\"http"] {
  background-size: cover;
  background-position: center;
}

/* Mostra iniciais para avatares sem foto */
.review-card__avatar[data-initial]::before {
  content: attr(data-initial);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-on-surface);
  background-color: var(--c-surface-high);
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-on-surface);
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--c-on-surface-faint);
  margin-top: 2px;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-surface-highest);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), width var(--t-fast);
}
.reviews__dot--active {
  background: var(--c-primary);
  width: 24px;
  border-radius: 4px;
}

.reviews__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-8);
}

@media (max-width: 768px) {
  .review-card {
    padding: var(--sp-8);
    gap: var(--sp-5);
    min-height: 420px;
  }

  .review-card__stars {
    font-size: 1.25rem;
  }

  .review-card__text {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .review-card__author {
    padding-top: var(--sp-5);
    gap: var(--sp-4);
    margin-top: auto;
  }

  .review-card__avatar {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .review-card__name {
    font-size: 0.9375rem;
  }

  .review-card__meta {
    font-size: 0.8125rem;
  }
}

/* ── VISIT ──────────────────────────────────────────────────── */
.visit { background: var(--c-primary); }

.visit__title { color: var(--c-white) !important; }

.visit__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: stretch;
}

.visit__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.visit__lead {
  font-size: 1rem;
  color: rgba(252,249,248,0.75);
  line-height: 1.65;
}

.visit__contacts {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.visit__contact {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.visit__icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: background var(--t-fast);
}
.visit__contact:hover .visit__icon-box { background: rgba(255,255,255,0.2); }

.visit__contact-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-1);
}

.visit__contact-text {
  font-size: 0.875rem;
  color: rgba(252,249,248,0.65);
  line-height: 1.6;
}

.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--c-white);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--c-white);
}

.visit__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.visit__media {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  max-width: 500px;
  margin-inline: auto;
  height: 100%;
}

.visit__media-item {
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  flex: 1;
  min-height: 0;
}

.visit__map {
  position: relative;
}

.visit__image {
  aspect-ratio: auto;
  height: 100%;
}

.visit__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}

.visit__image:hover .visit__image-img {
  transform: scale(1.03);
}


.visit__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.visit__map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--sp-4);
  text-decoration: none;
}

.visit__map-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: #1a1a1a;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background var(--t-fast), box-shadow var(--t-fast);
  pointer-events: none;
}
.visit__map-overlay:hover .visit__map-overlay-btn {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.cta-band {
  background: var(--c-surface-highest);
  padding-block: var(--sp-32);
}

.cta-band__inner {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.1;
}
.cta-band__title em { font-weight: 400; font-style: italic; }

.cta-band__sub {
  font-size: 1.125rem;
  color: var(--c-on-surface-muted);
  max-width: 32rem;
}

.cta-band__btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-4);
}

.cta-band__note {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-on-surface-faint);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--c-primary);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-10);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: var(--sp-12);
  padding-inline: var(--sp-12);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-bottom: var(--sp-16);
}

.footer__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-4);
  display: block;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(252,249,248,0.5);
  line-height: 1.65;
  max-width: 22rem;
}

.footer__heading {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: var(--sp-6);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(252,249,248,0.55);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--c-white); }

.footer__socials {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(252,249,248,0.7);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.footer__social:hover {
  background: rgba(255,255,255,0.18);
  color: var(--c-white);
  transform: translateY(-2px);
}
.footer__social .material-symbols-outlined { font-size: 1.25rem; }

/* Footer bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-12);
  padding-top: var(--sp-10);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__copy,
.footer__legal-link {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252,249,248,0.35);
}

.footer__ziadevs-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(252,249,248,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.footer__ziadevs-pill strong { font-weight: 600; color: rgba(252,249,248,0.4); }
.footer__ziadevs-pill:hover {
  color: rgba(252,249,248,0.7);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}
.footer__ziadevs-pill:hover strong { color: rgba(252,249,248,0.9); }

/* ── MOBILE TREATMENT CAROUSEL ──────────────────────────────── */
.mob-tc { display: none; }

@media (max-width: 767px) {
  .desktop-italic { font-style: italic; font-weight: 400; }

  .stepper-carousel { display: none !important; }

  .mob-tc {
    display: block;
    margin-top: var(--sp-6);
  }

  .mob-tc__wrapper {
    overflow: hidden;
    border-radius: var(--r-2xl);
    position: relative;
  }

  .mob-tc__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .mob-tc__card {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    border-radius: var(--r-2xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--c-surface-highest);
  }

  .mob-tc__img {
    position: absolute;
    inset: 0;
  }

  .mob-tc__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* gradient overlay */
  .mob-tc__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 35%,
      rgba(30, 5, 30, 0.5) 65%,
      rgba(30, 5, 30, 0.88) 100%
    );
    pointer-events: none;
  }

  .mob-tc__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-6);
    z-index: 2;
  }

  .mob-tc__tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-secondary-dim);
    margin-bottom: var(--sp-2);
  }

  .mob-tc__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-white);
    line-height: 1.15;
    margin-bottom: var(--sp-2);
  }

  .mob-tc__desc {
    font-size: 0.875rem;
    color: rgba(252, 249, 248, 0.7);
    line-height: 1.4;
  }

  /* dots */
  .mob-tc__dots {
    display: flex;
    justify-content: center;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
  }

  .mob-tc__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-surface-highest);
    border: none;
    cursor: pointer;
    transition: background var(--t-fast), width var(--t-fast), border-radius var(--t-fast);
  }

  .mob-tc__dot--active {
    background: var(--c-primary);
    width: 22px;
    border-radius: 4px;
  }

  /* progress bar */
  .mob-tc__progress-bar {
    height: 2px;
    background: var(--c-surface-high);
    border-radius: 2px;
    margin-top: var(--sp-3);
    overflow: hidden;
  }

  .mob-tc__progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--c-primary), var(--c-secondary));
    border-radius: 2px;
    transition: width 0.1s linear;
  }

  .mob-tc__progress-fill.running {
    width: 100%;
    transition: width 3s linear;
  }
}

/* ── TREATMENTS TABS & CAROUSEL (DESKTOP) ───────────────────── */
.tabs-section { padding-block: var(--sp-24); background: var(--c-surface-low); }

/* Ensure tabs-container acts as a vertical stack centering the nav */
.tabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Premium Segmented Control (Pill Menu) Top Tabs */
.tabs-nav-top {
  display: inline-flex; justify-content: center; gap: 4px;
  background: rgba(75, 25, 75, 0.05);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: var(--sp-16);
}
.tab-btn-top {
  background: transparent; border: none; font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 500; color: var(--c-on-surface-muted);
  padding: 0.65rem 1.75rem; cursor: pointer; position: relative;
  transition: all var(--t-fast);
  border-radius: 999px;
}
.tab-btn-top:hover {
  color: var(--c-primary);
}
.tab-btn-top.active { 
  color: var(--c-primary); 
  font-weight: 600; 
  background: var(--c-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.tab-pane { display: none; width: 100%; }
.tab-pane.active { display: block; animation: fadeX 0.4s ease forwards; }
@keyframes fadeX { from { opacity: 0; } to { opacity: 1; } }

.tabs-content { width: 100%; }

/* ══ INNER STEPPER CAROUSEL — Premium Unified Card (Desktop) ══ */
.stepper-carousel {
  display: grid;
  /* Image: 55% | List: 45% */
  grid-template-columns: 55% 45%;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  background: var(--c-white);
  border-radius: 28px;
  box-shadow:
    0 32px 80px rgba(75, 25, 75, 0.12),
    0 0 0 1px rgba(75, 25, 75, 0.06);
  overflow: hidden;
  min-height: 520px;
}

/* LEFT: IMAGE PANEL ─────────────────────────────── */
.stepper-content {
  position: relative;
  overflow: hidden;
  background: var(--c-surface-highest);
}

/* All cards stacked on top of each other */
.stepper-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.stepper-card.active {
  opacity: 1;
  pointer-events: auto;
}

/* Full-bleed image */
.stepper-card__img {
  position: absolute;
  inset: 0;
}
.stepper-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stepper-card.active .stepper-card__img img {
  animation: kbZoom 6s ease-out forwards;
}
@keyframes kbZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

/* Gradient overlay bottom-left for text legibility */
.stepper-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(55,10,55,0.55) 0%, transparent 60%),
    linear-gradient(to top, rgba(30,5,30,0.7) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Text overlay on image */
.stepper-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stepper-card__info h4 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.stepper-card__info p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.5;
}

/* Category pill badge on image */
.stepper-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  width: fit-content;
  z-index: 2;
  position: relative;
  margin: 1.5rem 2rem 0;
}

/* RIGHT: PROCEDURE LIST ─────────────────────────── */
.stepper-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--c-white);
  overflow: hidden;
}

/* Each procedure row */
.stepper-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(75, 25, 75, 0.06);
  padding: 1.1rem 1.75rem;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background 0.25s ease;
  flex: 1;
  justify-content: center;
}
.stepper-btn:last-child {
  border-bottom: none;
}
.stepper-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  border-radius: 0 3px 3px 0;
  transition: background 0.3s ease;
}
.stepper-btn:hover {
  background: rgba(75, 25, 75, 0.025);
}
.stepper-btn.active {
  background: rgba(75, 25, 75, 0.04);
}
.stepper-btn.active::before {
  background: linear-gradient(180deg, var(--c-primary), var(--c-secondary));
}

/* Procedure number */
.stepper-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-on-surface-faint);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  transition: color 0.25s;
}
.stepper-btn.active .stepper-num {
  color: var(--c-secondary);
}

/* Procedure title */
.stepper-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-on-surface-muted);
  line-height: 1.2;
  margin: 0 0 0.55rem 0;
  transition: color 0.25s ease, font-weight 0.25s ease;
}
.stepper-btn.active .stepper-title {
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Progress bar — horizontal, directly below title */
.stepper-progress {
  width: 100%;
  height: 2px;
  background: rgba(75, 25, 75, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.stepper-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
  border-radius: 2px;
}
.stepper-btn.active .stepper-bar {
  animation: fillProgressWidth 5s linear forwards;
}

@keyframes fillProgressWidth {
  0%   { width: 0%; }
  100% { width: 100%; }
}
@keyframes fillProgressHeight {
  0%   { height: 0%; }
  100% { height: 100%; }
}

/* ── SOFT CTA (TREATMENTS) ─────────────────────────────────── */
/* ══ SOFT CTA (TREATMENTS) — Premium Desktop Redesign ══ */
.soft-cta-section {
  padding-bottom: var(--sp-24);
  padding-top: 0;
  background: var(--c-surface-low);
}

.soft-cta-box {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin-inline: auto;
  border-radius: 28px;
  padding: 4rem 5rem;

  /* Rich dark background matching the brand */
  background:
    linear-gradient(135deg,
      hsl(300, 50%, 14%) 0%,
      hsl(290, 40%, 10%) 50%,
      hsl(280, 55%, 12%) 100%);

  /* Premium glow shadow */
  box-shadow:
    0 40px 100px rgba(75, 25, 75, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05);

  /* Horizontal split */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;

  text-align: left;
}

/* Subtle radial orb top-left */
.soft-cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(180, 80, 180, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle radial orb bottom-right */
.soft-cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(120, 40, 160, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

/* Left: copy block */
.soft-cta__left {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Thin accent line above eyebrow */
.soft-cta__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, var(--c-secondary), rgba(180, 130, 200, 0.3));
  margin-bottom: 0.25rem;
}

/* Eyebrow label */
.soft-cta__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-secondary-dim);
}

/* Main headline */
.soft-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: -0.01em;
}

.soft-cta-title strong {
  font-weight: 700;
}

/* Supporting copy */
.soft-cta__sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 36ch;
  margin: 0;
}

/* Right: CTA block */
.soft-cta__right {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

/* Decorative corner element */
.soft-cta__deco {
  position: absolute;
  bottom: 2.5rem;
  right: 5rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 1;
}

/* CTA Button — elegant outline with glow */
.soft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.875rem 2.25rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--c-white);
  background: #28D3C3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(40, 211, 195, 0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  white-space: nowrap;
}
.soft-cta-btn svg {
  opacity: 0.9;
  transition: transform 0.3s ease;
}
.soft-cta-btn:hover {
  background: #2ee0cf;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(40, 211, 195, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.soft-cta-btn:hover svg {
  transform: scale(1.1);
}

/* Privacy note */
.soft-cta__note {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
  text-align: right;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sp-32: 5rem; --sp-24: 4rem; }

  .container { padding-inline: var(--sp-8); }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card--offset-sm { margin-top: 0; }
  .card--offset-md { margin-top: var(--sp-12); }

  .ba-layout { gap: var(--sp-12); }
  .testimonials__layout { gap: var(--sp-12); }
  .sanctuary__layout { gap: var(--sp-10); }
  .visit__layout { gap: var(--sp-12); }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    padding-inline: var(--sp-8);
  }
  .footer__bottom { padding-inline: var(--sp-8); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .container { padding-inline: var(--sp-6); }

  .nav { background-color: #381238; }
  .nav.scrolled {
    background-color: #381238;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav__inner {
    justify-content: center;
    padding-inline: var(--sp-6);
  }
  .nav__brand { color: var(--c-white); }
  .nav__links { display: none; }
  .nav__burger { display: none; }
  .nav__inner > .btn { display: none; }

  .hero__layout {
    padding-top: var(--sp-16);
    padding-bottom: var(--sp-8);
    min-height: calc(100svh - var(--nav-h));
    justify-content: space-between;
  }
  .hero__body {
    max-width: 100%;
    gap: var(--sp-12);
  }

  /* Headline 15% bigger */
  .hero__title {
    font-size: clamp(2.81rem, 5.6vw, 4.33rem);
    margin-top: -0.6rem;
  }

  /* Subheadline + CTAs: text shadow for readability */
  .hero__sub {
    font-size: 1.03rem;
    text-shadow: 0 1px 8px rgba(255,255,255,0.7);
  }

  /* Doctor image: bigger, more to the right */
  .hero__portrait {
    display: block;
    width: 110%;
    height: 105%;
    right: -12%;
    z-index: 0;
  }
  .hero__portrait-img {
    opacity: 0.8;
    object-position: 70% 35%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 20%, black 75%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 20%, black 75%);
  }

  /* Bottom gradient for subheadline/CTA readability */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, var(--c-surface) 0%, rgba(252,249,248,0.85) 40%, transparent 100%);
    z-index: 0;
    pointer-events: none;
  }

  .hero__actions {
    flex-wrap: nowrap;
    gap: var(--sp-2);
    position: relative;
    z-index: 1;
    margin-top: -0.6rem;
  }
  .hero__actions .btn--pill-dark {
    padding: 0.825rem 1.265rem;
    font-size: 0.6875rem;
  }
  .hero__actions .hero__text-link {
    font-size: 0.6875rem;
  }

  .hero__em {
    text-shadow: 0px 4px 16px rgba(255, 255, 255, 0.8),
                 0px 1px 4px rgba(255, 255, 255, 0.9);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat:first-child { display: none; }
  .stat { 
    border-right: 1px solid rgba(255,255,255,0.07) !important; 
    border-bottom: none !important; 
    padding-block: var(--sp-4) !important;
    padding-inline: 0.25rem;
  }
  .stat:last-child { border-right: none !important; }
  .stat__row { margin-bottom: 4px; }
  .stat__num { font-size: 2.25rem; }
  .stat__unit { font-size: 1.5rem; }
    /* ─── Mobile: reset dark CTA back to light compact bar ─── */
  .soft-cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: var(--sp-5);
    padding: var(--sp-5) var(--sp-6);
    border-radius: var(--r-xl);
    max-width: 100%;
    /* Restore light background on mobile */
    background: var(--c-white);
    box-shadow: 0 4px 24px rgba(75,25,75,0.06);
    border: 1px solid rgba(75,25,75,0.06);
  }
  .soft-cta-box::before,
  .soft-cta-box::after { display: none; }

  /* Hide desktop-only elements */
  .soft-cta__eyebrow,
  .soft-cta__rule,
  .soft-cta__sub,
  .soft-cta__note,
  .soft-cta__deco { display: none; }

  /* Restore left/right to simple flex children */
  .soft-cta__left {
    flex: 1;
    gap: 0;
  }
  .soft-cta__right {
    flex-shrink: 0;
    align-items: center;
    gap: 0;
  }

  .soft-cta-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--c-on-surface);
    line-height: 1.4;
    font-family: var(--font-sans);
  }
  .soft-cta-title strong { font-weight: 600; }

  .soft-cta-btn {
    flex-shrink: 0;
    width: auto;
    padding: 0.55rem 1.1rem;
    font-size: 0.8125rem;
    gap: 6px;
    box-shadow: none;
    border: 1.5px solid #29D2C6;
    background: #29D2C6;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: var(--c-white);
    font-weight: 600;
  }
  .soft-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    z-index: -1;
    transition: left 0.7s ease;
    pointer-events: none;
  }
  .soft-cta-btn:hover {
    background: #29D2C6;
    color: var(--c-white);
    border-color: #29D2C6;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(40, 211, 195, 0.35);
  }
  .soft-cta-btn:hover::before {
    left: 200%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }
  
  .tabs-section { padding-block: var(--sp-12); }
  
  .tabs-container {
    align-items: center;
  }
  .tabs-nav-top {
    justify-content: center;
    width: auto;
    display: inline-flex;
  }
  .tab-btn-top { white-space: nowrap; font-size: 0.95rem; padding: 0.65rem 1.25rem; }
  
  /* ─── MOBILE: stepper vira carousel fullscreen ─── */
  .stepper-carousel {
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    grid-template-columns: none;
    min-height: unset;
  }

  /* Hide the right-side menu on mobile (replaced by mob-tc) */
  .stepper-menu { display: none; }

  /* Image panel: restore to stacked flow on mobile */
  .stepper-content {
    position: relative;
    height: 480px;
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }

  /* Badge hidden on mobile */
  .stepper-card__badge { display: none; }

  /* Info text on mobile */
  .stepper-card__info {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .stepper-card__info h4 { font-size: 1.35rem; }
  .stepper-card__info p  { font-size: 0.9rem; }
  .card--offset-md,
  .card--offset-sm { margin-top: 0; }

  .ba-layout,
  .testimonials__layout,
  .sanctuary__layout,
  .visit__layout,
  .ethos__pillars {
    grid-template-columns: 1fr;
  }

  .testimonials__visual { display: none; }
  .testimonials__mark { font-size: 6rem; top: -1.5rem; left: -1rem; }

  .sanctuary__media {
    display: block;
    width: 100%;
    margin-bottom: var(--sp-8);
  }
  .sanctuary__col--b { display: none; }
  .sanctuary__col--a {
    display: block;
    width: 100%;
  }
  .sanctuary__col--a .sanctuary__img:not(:first-child) { display: none; }
  .sanctuary__col--a .sanctuary__img:first-child {
    width: 100%;
    height: 380px;
    aspect-ratio: unset;
    object-fit: cover;
    border-radius: var(--r-2xl);
    transform: none !important;
  }

  .visit__map { min-height: 300px; }
  .visit__title { font-size: clamp(2.4rem, 4.8vw, 3.75rem); }

  .cta-band__btns { flex-direction: column; align-items: center; }

  .footer__top {
    grid-template-columns: 1fr;
    padding-inline: var(--sp-6);
    gap: var(--sp-10);
  }

  /* hide Tratamentos and Clínica columns on mobile */
  .footer__col:nth-child(2),
  .footer__col:nth-child(3) {
    display: none;
  }

  /* center the socials column */
  .footer__col:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* center the brand col too */
  .footer__brand-col {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-inline: var(--sp-6);
  }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: var(--sp-4); }


  .soft-cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: var(--sp-5);
    padding: var(--sp-5) var(--sp-6);
    border-radius: var(--r-xl);
    max-width: 100%;
  }
  .soft-cta-box::before { display: none; }
  .soft-cta-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--c-on-surface);
    line-height: 1.4;
    flex: 1;
    font-family: var(--font-sans);
  }
  .soft-cta-btn {
    flex-shrink: 0;
    width: auto;
    padding: 0.55rem 1.1rem;
    font-size: 0.8125rem;
    gap: 6px;
    box-shadow: none;
    border: 1.5px solid #29D2C6;
    background: #29D2C6;
    color: var(--c-white);
    font-weight: 600;
  }
  .soft-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    z-index: -1;
    transition: left 0.7s ease;
    pointer-events: none;
  }
  .soft-cta-btn:hover {
    background: #29D2C6;
    color: var(--c-white);
    border-color: #29D2C6;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(40, 211, 195, 0.35);
  }
  .soft-cta-btn:hover::before {
    left: 200%;
  }
}

@media (max-width: 480px) {
  .hero__body { padding-block: var(--sp-4) var(--sp-6); }
  .ba-slider { aspect-ratio: 3/4; }
  .ba-slider { aspect-ratio: 3/4; }
}

/* ── BUTTON BASE OVERRIDE (data-magnetic now CSS-only) ──────── */
[data-magnetic] { will-change: auto; }

/* ── GLASS MORPHISM UTILITY ─────────────────────────────────── */
.glass {
  background: rgba(252,249,248,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ── SELECTION ──────────────────────────────────────────────── */
::selection {
  background: rgba(75,25,75,0.15);
  color: var(--c-primary);
}

/* ── FOCUS VISIBLE ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── FLOATING WHATSAPP BUTTON ────────────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 9000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

/* ═══════════════════════════════════════════════
   UTILITY: Desktop-only elements & styling
═══════════════════════════════════════════════ */
.desktop-only {
  display: none;
}

.desktop-italic {
  font-style: normal;
}

@media (min-width: 768px) {
  .desktop-only {
    display: inline;
  }

  .desktop-italic {
    font-style: italic;
    font-weight: 400;
  }

  /* Hero CTAs — +20% size */
  .hero__actions .btn--pill-dark {
    font-size: 0.825rem;
    padding: 0.96rem 2.1rem;
  }

  .hero__actions .hero__text-link {
    font-size: 0.825rem;
  }
}

/* ═══════════════════════════════════════════════
   VIDEO MODAL (YouTube carousel)
═══════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.video-modal.is-open {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: videoModalFade 0.25s ease;
}

.video-modal__dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100vh - 2rem);
  background: #13091a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-2xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  overflow: hidden;
  animation: videoModalRise 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.06);
}

.video-modal__title {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--c-white);
  margin: 0;
  padding-right: 3rem;
}

.video-modal__stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.video-modal__frame {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.video-modal__frame-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  background: #000;
  border-radius: var(--r-lg, 1rem);
  overflow: hidden;
}

.video-modal__frame-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__frame-inner--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  text-align: center;
  padding: 1.5rem;
}

.video-modal__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.video-modal__nav:hover:not(:disabled) {
  background: var(--c-secondary);
  transform: scale(1.08);
}

.video-modal__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.video-modal__caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.25em;
}

.video-modal__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.video-modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal__dot.is-active {
  background: var(--c-secondary);
  transform: scale(1.25);
}

body.video-modal-open {
  overflow: hidden;
}

@keyframes videoModalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes videoModalRise {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .video-modal__stage {
    flex-direction: column;
    gap: 0.5rem;
  }

  .video-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .video-modal__nav--prev { left: 0.5rem; }
  .video-modal__nav--next { right: 0.5rem; }

  .video-modal__nav:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.08);
  }
}

