/* =============================================
   Espaço Sprada — style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ── Variáveis ─────────────────────────────── */
:root {
  --primary:    #1E3673;
  --dark:       #08256F;
  --dark-deep:  #051840;
  --brand-gradient: linear-gradient(135deg, #315AC4 0%, #102966 100%);
  --light-blue: #EAF0FF;
  --white:      #F8FAFC;
  --beige:      #EFE7DD;
  --gray:       #4B5563;
  --gray-light: #6B7280;
  --border:     #D1D5DB;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(30, 54, 115, 0.10);
  --shadow-lg: 0 8px 40px rgba(30, 54, 115, 0.18);

  --max-w: 1160px;
  --section-pad: 80px 24px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilitários ────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  box-shadow: none;
  isolation: isolate;
  background-clip: padding-box;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  backface-visibility: hidden;
  transition: opacity 0.25s, transform 0.2s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -115%;
  width: 40%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  animation: btn-shine 5s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--brand-gradient);
  transform: translateY(-2px);
  opacity: 0.88;
  box-shadow: none;
  filter: none;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
}

/* ── TOP BAR ─────────────────────────────────── */
.top-bar {
  height: 6px;
  background: linear-gradient(to right, var(--primary), var(--dark-deep));
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

/* ── SCROLL REVEAL DIRECIONAL ───────────────── */
.reveal-item {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 1;
  --reveal-blur: 0px;
  opacity: 0;
  filter: blur(var(--reveal-blur));
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal-item[data-reveal="left"]  { --reveal-x: -42px; --reveal-y: 0px; }
.reveal-item[data-reveal="right"] { --reveal-x: 42px;  --reveal-y: 0px; }
.reveal-item[data-reveal="up"]    { --reveal-y: 34px; }
.reveal-item[data-reveal="zoom"]  { --reveal-y: 20px; --reveal-scale: 0.965; --reveal-blur: 3px; }
.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; filter: none; transform: none; transition: none; will-change: auto; }
}

/* Compatibilidade retroativa com .reveal antigo */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BTN-CTA ANIMADO ─────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--brand-gradient);
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  height: 60px;
  padding: 0 40px;
  border-radius: 50px;
  transition: opacity 0.25s, transform 0.2s;
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -115%;
  width: 40%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  animation: btn-shine 5s ease-in-out infinite;
  pointer-events: none;
}
.btn-cta:hover { opacity: 0.88; transform: translateY(-2px); }

@keyframes cta-gradient {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
@keyframes btn-shine {
  0%   { left: -115%; opacity: 0; }
  18%  { left: -115%; opacity: 0; }
  28%  { opacity: 1; }
  58%  { left: 135%; opacity: 0; }
  100% { left: 135%; opacity: 0; }
}

/* ── HEADER / NAV ───────────────────────────── */
.site-header {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.4);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(30, 54, 115, 0.10);
}
.site-header--home {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.site-header--home.scrolled {
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(209, 213, 219, 0.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img {
  height: 54px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── NAV DROPDOWN ───────────────────────────── */
.nav-dropdown { position: relative; list-style: none; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.nav-dropdown-btn:hover { color: var(--primary); }
.nav-dropdown-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-btn svg,
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: var(--light-blue);
  color: var(--primary);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 104px 24px 48px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.mobile-menu .btn-primary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: none;
  filter: none;
}
.mobile-menu .btn-primary::after {
  display: none;
}
.mobile-menu .btn-primary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  box-shadow: none;
  filter: none;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  --hero-gutter: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  --hero-menu-offset: 0px;
  height: 80vh;
  min-height: 460px;
  padding-top: 0;
  background: url('assets/bg-hero.jpg') center right / cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: var(--hero-gutter);
}
/* Sem overlay no background */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 660px;
  margin-left: var(--hero-menu-offset);
}
.hero-content .logo-mark {
  height: 84px;
  width: auto;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 16px;
}
.hero-content h1 strong { font-weight: 600; }
.hero-content .hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-sub-brand {
  color: var(--primary);
  font-weight: 600;
}
.hero-content .hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-content .hero-actions .btn {
  padding: 16px 44px;
  font-size: 15px;
}
.hero-content .hero-note {
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.02em;
}

/* Hamburger no hero */
.hero-ham {
  position: absolute;
  top: 80px;
  left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 10px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background 0.2s;
}
.hero-ham:hover { background: rgba(30, 54, 115, 0.08); }
.hero-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── INTRO STRIP ────────────────────────────── */
.intro-strip {
  background: var(--brand-gradient);
  padding: 56px 24px;
}
.intro-strip .container {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Stamp giratório */
.intro-stamp-wrap {
  flex-shrink: 0;
  width: 148px;
  height: 148px;
  position: relative;
}
.intro-stamp-spin {
  position: absolute;
  inset: 0;
  width: 148px;
  height: 148px;
  filter: brightness(0) invert(1);
  animation: spin-stamp 18s linear infinite;
  transform-origin: center center;
}
.intro-stamp-iso {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  filter: brightness(0) invert(1);
}
@keyframes spin-stamp {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
}
.intro-text h2 strong {
  font-weight: 700;
}
.intro-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 820px;
  line-height: 1.7;
}

/* ── NOSSA HISTÓRIA ─────────────────────────── */
.historia {
  background: #F5F5F5;
  padding: 120px 24px;
}
.historia .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.historia-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(30, 54, 115, 0.06);
  box-shadow: var(--shadow);
}
.historia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.historia-text .label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.historia-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.historia-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}
.historia-text p:last-child { margin-bottom: 0; }
.historia-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.historia-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.historia-instagram svg { flex-shrink: 0; }
.historia-instagram:hover { color: var(--dark); }

/* ── TRATAMENTOS ────────────────────────────── */
.tratamentos {
  background: var(--white);
  padding: var(--section-pad);
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.trat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 0;
  gap: 64px;
  align-items: center;
}
.trat-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(30, 54, 115, 0.30);
}
.trat-divider::before,
.trat-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(30, 54, 115, 0.18);
}
.trat-divider svg {
  width: 38px;
  height: 28px;
  flex-shrink: 0;
}
.trat-row-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(30, 54, 115, 0.06);
  box-shadow: var(--shadow);
}
.trat-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trat-row-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  overflow: hidden;
}
.trat-row-panel::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 164px;
  height: 164px;
  background: url('assets/stamp-iso.svg') center/contain no-repeat;
  pointer-events: none;
}
.trat-row-panel--reab {
  background: var(--brand-gradient);
  color: #fff;
}
.trat-row-panel--reab::after {
  filter: brightness(0) invert(1);
  opacity: 0.12;
}
.trat-row-panel--estetica {
  background: linear-gradient(160deg, #f5f5f5 0%, #e8eefc 100%);
  color: var(--dark);
}
.trat-row-panel--estetica::after {
  opacity: 0.1;
}
.trat-panel-kicker {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.trat-panel-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.trat-panel-copy {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.7;
  max-width: 440px;
}
.trat-panel-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trat-panel-tags li {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trat-row-panel--reab .trat-panel-tags li {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.trat-row-panel--estetica .trat-panel-tags li {
  background: rgba(30, 54, 115, 0.06);
  border: 1px solid rgba(30, 54, 115, 0.12);
  color: var(--primary);
}
.trat-row-body h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 8px;
}
.trat-row-body .trat-sub {
  font-size: 15px;
  color: var(--primary);
  font-style: italic;
  opacity: 0.75;
  margin-bottom: 20px;
}
.trat-row-body > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 28px;
}
.trat-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: -4px 0 24px;
  padding: 0;
}
.trat-feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
}
.trat-feature-list li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.85;
}
.trat-row-body .trat-terapeuta {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: 20px;
}

/* ── DIFERENCIAIS ───────────────────────────── */
.diferenciais {
  background: var(--light-blue);
  padding: var(--section-pad);
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.dif-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(11,51,168,0.08);
}
.dif-card .dif-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.dif-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.dif-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── AGENDAMENTO / CONTATO ──────────────────── */
.contato {
  background: var(--white);
  padding: var(--section-pad);
}
.contato-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
}
.contato-header .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.contato-header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.15;
}
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.unit-card {
  background: var(--white);
  border: 1px solid rgba(30,54,115,0.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.unit-card:hover {
  border-color: rgba(30,54,115,0.22);
  box-shadow: var(--shadow-lg);
}
.unit-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.unit-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.unit-card-icon svg { width: 24px; height: 24px; }
.unit-card-kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3px;
}
.unit-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}
.unit-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.unit-card-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  background: var(--light-blue);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.unit-card-detail {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  align-items: baseline;
}
.unit-card-detail strong {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.unit-card-detail span {
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
}
.unit-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}
.unit-card-link {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  white-space: nowrap;
}
.unit-card-link:hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--brand-gradient);
  padding: 48px 24px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social-link svg { flex-shrink: 0; opacity: 0.85; }
.footer-social-link:hover svg { opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.70); }
.footer-bottom a:hover { color: #fff; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-credit span {
  font-size: 10px;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}
.footer-credit-logo {
  display: block;
  width: auto;
  height: 22px;
}

/* ── PÁGINAS INTERNAS (Massoterapia / Holísticas) ── */
.inner-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-deep) 100%);
  padding: 120px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/bg-hero.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.inner-hero > * { position: relative; }
.inner-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 20px;
}
.inner-hero .breadcrumb a { color: rgba(255,255,255,0.60); }
.inner-hero .breadcrumb a:hover { color: #fff; }
.inner-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.inner-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 800px;
  margin: 0 auto;
}

.terapeuta-intro {
  background: var(--beige);
  padding: 56px 24px;
}
.terapeuta-intro .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.terapeuta-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(11,51,168,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed rgba(11,51,168,0.25);
  font-size: 40px;
}
.terapeuta-info h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 4px;
}
.terapeuta-info .since {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
}
.terapeuta-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}

.tecnicas {
  background: var(--white);
  padding: var(--section-pad);
}
.tecnicas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tecnica-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--primary);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tecnica-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.tecnica-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.tecnica-card p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--gray);
}

.inner-cta {
  background: var(--light-blue);
  padding: 72px 24px;
  text-align: center;
}
.inner-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 12px;
}
.inner-cta p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.inner-cta .btn-primary { font-size: 15px; }

/* ── RESPONSIVO ─────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .tecnicas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --section-pad: 60px 20px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    --hero-gutter: 24px;
    --hero-menu-offset: 0px;
    height: auto;
    min-height: 85svh;
    background-position: center center;
    padding-left: var(--hero-gutter);
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 56px;
  }
  .hero-ham { top: 28px; }
  .hero-content .logo-mark { height: 64px; margin-bottom: 18px; }
  .hero-content h1 { font-size: clamp(32px, 7vw, 48px); }
  .hero-content .hero-sub { max-width: 100%; }

  .intro-strip .container { gap: 24px; }
  .intro-stamp { width: 70px; height: 70px; }

  .historia { padding: 80px 20px; }
  .historia .container { grid-template-columns: 1fr; gap: 36px; }
  .historia-img { aspect-ratio: 16/9; }

  .trat-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .trat-feature-list { grid-template-columns: 1fr; }
  .trat-row-panel { min-height: 320px; }

  .contato-layout { grid-template-columns: 1fr; gap: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .terapeuta-intro .container { flex-direction: column; text-align: center; }
  .tecnicas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px 16px; }

  .hero-content { padding: 36px 16px 48px; }

  .intro-strip { padding: 40px 16px; }
  .intro-strip .container { flex-direction: column; text-align: center; }
  .intro-stamp { width: 60px; height: 60px; }

  .tecnicas-grid { grid-template-columns: 1fr; }
}

/* ── DEPOIMENTOS ────────────────────────────── */
.depoimentos {
  position: relative;
  background: var(--brand-gradient);
  padding: 80px 0 72px;
  overflow: hidden;
}
.depoimentos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: soft-light;
  opacity: 0.45;
  pointer-events: none;
}
.depoimentos-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.depoimentos-header { text-align: center; }
.depoimentos-tagline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 14px;
}
.depoimentos-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
}
.depoimentos-title strong { font-weight: 800; }

/* Carousel */
.dep-carousel { position: relative; width: 100%; overflow: visible; }
.dep-viewport  { overflow: hidden; width: 100%; }
.dep-track     { display: flex; gap: 24px; }

/* Botões de nav */
.dep-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  z-index: 2;
  width: 48px;
  height: 48px;
}
.dep-btn--prev { left: -72px; }
.dep-btn--next { right: -72px; }
.dep-btn:hover circle { stroke: rgba(255,255,255,0.85); }

.dep-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -8px;
}
.dep-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.30);
  transition: transform 0.22s, background 0.22s;
}
.dep-dot:hover  { background: rgba(255,255,255,0.60); }
.dep-dot.active { background: #fff; transform: scale(1.25); }

/* Cards de depoimentos */
.dep-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.dep-header { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.dep-name  { font-size: 15px; font-weight: 700; color: var(--dark); display: block; }
.dep-label { font-size: 12px; color: #6B7280; display: block; margin-top: 2px; }
.dep-stars { display: flex; align-items: center; gap: 8px; }
.dep-stars-icons { color: #FBBC04; font-size: 17px; letter-spacing: 2px; line-height: 1; }
.dep-badge {
  width: 18px; height: 18px; border-radius: 50%; background: #4285F4;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dep-text { font-size: 14px; font-weight: 500; color: #4A5252; line-height: 1.65; }

/* Rodapé do bloco */
.dep-footer { display: flex; flex-direction: column; gap: 0; }
.dep-divider { height: 1px; background: rgba(255,255,255,0.20); margin-bottom: 28px; }
.dep-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dep-cta-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* ── FAQ ────────────────────────────────────── */
.faq {
  background: var(--light-blue);
  padding: var(--section-pad);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-tagline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.faq-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 12px;
}
.faq-subtitle {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(11,51,168,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.faq-item.is-open {
  border-color: rgba(11,51,168,0.5);
  box-shadow: 0 8px 28px rgba(11,51,168,0.08);
}
.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 20px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}
.faq-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: inline-flex;
  transition: transform 0.22s;
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-answer { max-height: 260px; }
.faq-answer p {
  margin: 0;
  padding: 0 20px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}
.faq-footer-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hero-content h1,
.historia-text h2,
.section-header h2,
.trat-row-body h3,
.contato-header h2,
.terapeuta-info h3,
.tecnica-card h3,
.inner-cta h2,
.faq-title {
  display: inline-block;
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ── WHATSAPP FLUTUANTE ─────────────────────── */
@keyframes wpp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%  { box-shadow: 0 0 0 14px rgba(37,211,102,0.10); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s;
  animation: wpp-pulse 2.4s ease-out infinite;
}
.wpp-float:hover { transform: scale(1.06); animation: none; }
.wpp-float svg { width: 32px; height: 32px; }

/* Responsivo ─ Depoimentos */
@media (max-width: 820px) {
  .depoimentos { padding: 60px 0 52px; }
  .depoimentos-inner { padding: 0 20px; gap: 32px; }
  .dep-carousel { padding: 0 44px; }
  .dep-btn--prev { left: 0; }
  .dep-btn--next { right: 0; }
  .dep-cta-row { flex-direction: column; align-items: flex-start; }
  .dep-cta-text { font-size: 16px; }
}
@media (max-width: 480px) {
  .dep-carousel { padding: 0 34px; }
  .dep-btn { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--dark); }
