/* ============================================================
   Jayr Santos Psicanalista
   Paleta: azul-petróleo + tons terrosos (areia / sálvia)
   ============================================================ */
:root {
  --azul:    #2C5E93;
  --noturno: #1B3A5C;
  --noturno-2:#142B45;
  --offwhite:#F7F5F0;
  --areia:   #E8DFD2;
  --salvia:  #8FA68E;
  --grafite: #2A2E33;
  --erro:    #B4524A;

  --ff-title: 'Playfair Display', Georgia, serif;
  --ff-body:  'Inter', system-ui, -apple-system, sans-serif;

  --pad-y: clamp(80px, 11vw, 150px);
  --pad-x: clamp(20px, 5vw, 72px);
  --max:   1180px;
  --ease:  cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--offwhite);
  color: var(--grafite);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--salvia); color: #fff; }

.wrap { max-width: var(--max); margin: 0 auto; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12.5px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600; color: var(--salvia); margin: 0 0 22px;
}
.eyebrow__line { width: 36px; height: 1px; background: var(--salvia); flex: none; }
.eyebrow__line--azul { background: var(--azul); }
.eyebrow--azul { color: var(--azul); }
.eyebrow--salvia { color: var(--salvia); }
.eyebrow--light { color: #C9DAEC; }
.eyebrow--center { justify-content: center; }

.section-title {
  font-family: var(--ff-title); font-weight: 500;
  font-size: clamp(32px, 4.8vw, 58px); line-height: 1.08;
  letter-spacing: -.01em; color: var(--noturno);
  margin: 0 0 clamp(40px, 6vw, 72px); max-width: 18ch;
}
.section-title--center { margin-left: auto; margin-right: auto; text-align: center; max-width: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: 16px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 44px; transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn__arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--solid { background: var(--azul); color: #fff; padding: 16px 30px; }
.btn--solid:hover { background: var(--noturno); }
.btn--lg { box-shadow: 0 12px 30px rgba(44,94,147,.25); }
.btn--lg:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(44,94,147,.34); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; padding: 16px; }
.btn--white { background: #fff; color: var(--noturno); padding: 15px 26px; }
.btn--white:hover { background: var(--areia); }
.btn--link {
  background: none; color: var(--noturno); padding: 16px 12px;
  border-bottom: 1px solid transparent; border-radius: 0;
}
.btn--link:hover { border-color: var(--salvia); }

/* ---------- Navbar ---------- */
/* Estado inicial da Navbar */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--max);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px; /* Mantém o mesmo tamanho de padding vertical fixo */
  background: rgba(247, 245, 240, 0.16); /* Transparência na Hero */
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  border: 1px solid rgba(27, 58, 92, 0.04);
  border-radius: 12px;
  box-shadow: none; /* Sem sombra no topo para fusão limpa */
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

@media (min-width: 1024px) {
  .nav {
    top: 24px; /* Mantém a mesma altura de posicionamento fixa */
    width: calc(100% - 48px);
    padding: 16px 28px; /* Mantém o mesmo tamanho de padding vertical fixo desktop */
  }
}

/* Estado ativo pós-scroll */
.nav.is-scrolled {
  background: rgba(247, 245, 240, 0.85); /* Fundo vidro fosco denso de alta legibilidade */
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-color: rgba(27, 58, 92, 0.08);
  box-shadow: 0 12px 30px rgba(27, 58, 92, 0.06);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  transition: transform 0.3s var(--ease);
}

.nav__brand:hover {
  transform: translateY(-1px);
}

.nav__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--azul);
  flex: none;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav__brand:hover .nav__mark {
  background: var(--noturno);
}

.nav__mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__name strong {
  font-family: var(--ff-title);
  font-size: 17.5px;
  font-weight: 500; /* Letras mais leves e elegantes de grife */
  letter-spacing: -0.015em;
  color: var(--noturno);
}

.nav__name em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--salvia);
  font-weight: 600;
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

/* Links da navbar com animação de sublinhado a partir da esquerda no hover */
.nav__links > a:not(.btn) {
  position: relative;
  font-size: 13.5px;
  color: var(--grafite);
  text-transform: lowercase; /* Visual minúsculo editorial */
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.nav__links > a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--salvia);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav__links > a:not(.btn):hover {
  color: var(--noturno);
}

.nav__links > a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Botão exclusivo de agendamento na navbar (outline discreto e de grife) */
.nav__links .btn {
  background: transparent;
  color: var(--noturno);
  border: 1px solid rgba(27, 58, 92, 0.25);
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: none;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.nav__links .btn:hover {
  background: var(--noturno);
  color: var(--offwhite);
  border-color: var(--noturno);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  height: 44px;
  width: 44px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--noturno);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== DRAWER MOBILE ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 58, 92, 0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--offwhite);
  z-index: 9999;
  box-shadow: -10px 0 30px rgba(27, 58, 92, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 32px);
  border-bottom: 1px solid rgba(27, 58, 92, 0.08);
}
.drawer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.drawer__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--azul);
  padding: 4px;
}
.drawer__brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.drawer__brand-name strong {
  font-family: var(--ff-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--noturno);
}
.drawer__brand-name em {
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--salvia);
  font-weight: 600;
  margin-top: 1px;
}

.drawer__close {
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: var(--noturno);
  cursor: pointer;
  padding: 4px 8px;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.drawer__close:hover {
  transform: rotate(90deg);
  color: var(--azul);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px clamp(20px, 5vw, 32px);
}
.drawer__nav > a:not(.btn) {
  font-family: var(--ff-title);
  font-size: 24px;
  color: var(--noturno);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  width: fit-content;
}
.drawer__nav > a:not(.btn):hover {
  opacity: 1;
  transform: translateX(4px);
}
.drawer__nav .btn {
  margin-top: 16px;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--offwhite);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    height: 100vh;
    min-height: 720px;
    padding: 0;
    display: flex;
    align-items: stretch;
  }
}

/* Marca d'água do glifo Psi (Ψ) */
.hero__psi-watermark {
  position: absolute;
  top: 38%;
  left: 38%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-title);
  font-style: italic;
  font-size: clamp(300px, 45vw, 680px);
  color: var(--azul);
  opacity: 0.02;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Linha ativa horizontal */
.hero__line-h {
  position: absolute;
  top: 92px; /* Posicionada exatamente abaixo da navbar para atuar como teto divisor */
  left: 0;
  height: 1px;
  width: 0;
  background: rgba(27, 58, 92, 0.08);
  z-index: 4;
  animation: drawWidthMobile 1.5s var(--ease) forwards;
}

@media (min-width: 1024px) {
  .hero__line-h {
    animation: drawWidthDesktop 1.5s var(--ease) forwards;
  }
}

/* Linha ativa vertical */
.hero__line-v {
  display: none;
}

@media (min-width: 1024px) {
  .hero__line-v {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: rgba(27, 58, 92, 0.08);
    z-index: 5;
    animation: drawHeight 1.8s var(--ease) 0.3s forwards;
  }
}

.hero__word {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(180px, 30vw, 420px);
  color: var(--azul);
  opacity: 0.015;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-width: none;
    height: 100%;
    align-items: stretch;
    gap: 0;
  }
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x);
}

@media (min-width: 1024px) {
  .hero__copy {
    padding: 100px clamp(48px, 6vw, 80px) 100px clamp(72px, 10vw, 140px);
  }
}

.hero__title {
  font-family: var(--ff-title);
  font-weight: 300; /* Base leve para contraste editorial */
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.035em; /* Fechamento elegante das letras */
  color: var(--noturno);
  margin: 0 0 36px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero__title {
    width: 114%; /* Sobreposição tipográfica elegante no painel direito */
  }
}

.hero__title em {
  font-style: italic;
  color: var(--salvia);
  font-weight: 400;
}

/* Contraste de pesos nas linhas do título monumental */
.hero__title-line-mask:first-child .hero__title-line-text {
  font-weight: 350; /* A cura acontece (leve) */
}
.hero__title-line-mask:nth-child(2) .hero__title-line-text {
  font-weight: 500; /* pela fala (imponente) */
}

.hero__title-line-mask {
  display: block;
  overflow: hidden;
  line-height: 1.1;
  padding-bottom: 0.05em;
}

.hero__title-line-text {
  display: block;
  transform: translateY(105%);
  animation: revealTextUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-line-mask:nth-child(2) .hero__title-line-text {
  animation-delay: 0.18s;
}

@keyframes revealTextUp {
  to {
    transform: translateY(0);
  }
}

.hero__lead {
  max-width: 440px;
  font-size: clamp(15px, 1.05vw, 17.5px);
  line-height: 1.85; /* Maior espaçamento vertical para conforto de leitura */
  color: var(--grafite);
  opacity: 0.8;
  margin: 0 0 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

/* Botão primário sólido editorial da Hero (cantos suavizados, sem pulsação de marketing genérico) */
.hero__cta .btn--solid {
  background: var(--noturno);
  color: var(--offwhite);
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(27, 58, 92, 0.08);
  animation: none;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero__cta .btn--solid:hover {
  background: var(--noturno);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(27, 58, 92, 0.16);
}

/* Botão secundário outline editorial da Hero (par simétrico do primário) */
.hero__cta .btn--link {
  background: transparent;
  color: var(--noturno);
  border: 1px solid rgba(27, 58, 92, 0.25);
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero__cta .btn--link:hover {
  background: transparent;
  color: var(--noturno);
  border-color: rgba(27, 58, 92, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(27, 58, 92, 0.05);
}

/* Retrato Split */
.hero__portrait {
  position: relative;
  overflow: hidden;
  background: var(--areia);
  width: 100%;
}

/* Sobrescreve reveal padrão para usar a revelação por cortina na imagem */
.hero__portrait.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (min-width: 1024px) {
  .hero__portrait {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .hero__portrait {
    aspect-ratio: 4 / 5;
    max-width: 580px;
    margin: 32px auto 0;
    border-radius: 4px;
    box-shadow: 0 20px 48px rgba(27, 58, 92, 0.08);
  }
}

/* Revelação por cortina geométrica e parallax na foto de retrato */
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transform: translateY(var(--hero-translate, 0px)) scale(1.06);
  animation: revealCurtain 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  transition: transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.hero__portrait:hover img {
  transform: translateY(var(--hero-translate, 0px)) scale(1.03);
}

/* Indicador de scroll editorial no rodapé da coluna de texto */
.hero__scroll {
  display: none;
}

@media (min-width: 1200px) {
  .hero__scroll {
    display: flex;
    position: absolute;
    bottom: 40px;
    left: clamp(72px, 10vw, 140px);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--salvia);
    z-index: 10;
  }
  
  .hero__scroll span {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .hero__scroll i {
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--salvia), transparent);
  }
}

/* Animações da Hero */
@keyframes drawWidthMobile {
  to {
    width: 100%;
  }
}

@keyframes drawWidthDesktop {
  to {
    width: 54.55%;
  }
}

@keyframes drawHeight {
  to {
    height: 100%;
  }
}

@keyframes revealCurtain {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(var(--hero-translate, 0px)) scale(1);
  }
}



/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--noturno); padding: 18px 0; overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marqueeX 32s linear infinite; }
.marquee__track span { font-family: var(--ff-title); font-style: italic; font-size: 22px; color: var(--offwhite); white-space: nowrap; }
@keyframes marqueeX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   IMPACTO
   ============================================================ */
.impacto { background: var(--noturno); color: var(--offwhite); padding: var(--pad-y) var(--pad-x); }
.impacto .wrap { max-width: 1100px; }
/* ============================================================
   IMPACTO — DIAGRAMAÇÃO EDITORIAL PREMIUM
   Layout de alto padrão: cabeçalho dividido em grid e grid inferior
   com colunas niveladas e insights clínicos revelados interativamente no hover.
   ============================================================ */
.impacto {
  background: var(--noturno);
  color: var(--offwhite);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}

/* Marca d'água de fundo */
.impacto__bg-text {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(220px, 32vw, 480px);
  color: var(--azul);
  opacity: 0.02;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
}

.impacto .wrap {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

/* Cabeçalho Editorial */
.impacto__header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 48px;
  margin-bottom: 72px;
}

.impacto__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--salvia);
  margin-bottom: 24px;
  position: relative;
  padding-left: 56px;
}

.impacto__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: var(--salvia);
  opacity: 0.4;
}

.impacto__title {
  font-family: var(--ff-title);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  margin: 0;
  max-width: 18ch;
  color: #fff;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.impacto__title em {
  font-style: italic;
  color: var(--areia);
  font-weight: 400;
}

.impacto__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.impacto__quote p {
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: #A8B5C4;
  margin: 0;
  position: relative;
}

/* Grid de Dores Clínicas */
.impacto__tessitura {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Wrapper do Grid para suportar a animação reveal do JS */
.impacto__card-wrapper {
  display: flex;
  flex-direction: column;
}

/* Cards com deslocamento vertical */
.impacto__card-premium {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 36px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: transform 0.6s var(--ease), background-color 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
  overflow: hidden;
}

.impacto__card-premium:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(143, 166, 142, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(-12px);
}

/* Número Romano de fundo */
.card-premium__num {
  font-family: var(--ff-title);
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -10px;
  right: 24px;
  z-index: 1;
  transition: color 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}

.impacto__card-premium:hover .card-premium__num {
  color: rgba(143, 166, 142, 0.18);
  transform: translateY(-4px);
}

.card-premium__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Tag de Catalogação */
.card-premium__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--salvia);
  margin-bottom: 24px;
  transition: color 0.4s var(--ease);
}

.impacto__card-premium:hover .card-premium__tag {
  color: var(--areia);
}

/* Texto descritivo */
.card-premium__text {
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--offwhite);
  opacity: 0.85;
  margin: 0 0 24px;
  transition: opacity 0.4s var(--ease);
}

.impacto__card-premium:hover .card-premium__text {
  opacity: 1;
}

/* Insight complementar */
.card-premium__insight {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--areia);
  opacity: 0.35;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: auto;
  transition: opacity 0.5s var(--ease), border-color 0.5s var(--ease);
}

.impacto__card-premium:hover .card-premium__insight {
  opacity: 0.85;
  border-color: rgba(143, 166, 142, 0.25);
}

@media (max-width: 1024px) {
  .impacto__tessitura {
    gap: 24px;
  }
  
  .impacto__card-premium {
    padding: 40px 28px;
  }
}

@media (max-width: 768px) {
  .impacto__header {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
    margin-bottom: 48px;
  }
  
  .impacto__tessitura {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .impacto__card-premium:hover {
    transform: translateY(-8px) !important;
  }
  
  .card-premium__num {
    font-size: 70px;
    right: 18px;
    top: -5px;
  }
}

/* ============================================================
   SERVIÇOS (ATENDIMENTO DINÂMICO FLEX)
   ============================================================ */
.servicos { 
  padding: var(--pad-y) var(--pad-x); 
  background: var(--offwhite);
  position: relative;
}

.servicos__header {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.servicos__header .section-title {
  margin-bottom: 0;
  max-width: 22ch;
}

.servicos__header .section-title em {
  font-style: italic;
  color: var(--azul);
}

/* Flex Container que abriga as colunas expansíveis */
.servicos__flex-container {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

/* Base da Coluna Editorial */
.servico-col {
  position: relative;
  border-radius: 2px;
  transition: flex 0.7s var(--ease), background-color 0.7s var(--ease), border-color 0.7s var(--ease), box-shadow 0.7s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 92, 0.08);
}

/* Proporções iniciais (Tamanho Simétrico) */
.col-individual {
  flex: 1;
  background: #ffffff;
}

.col-casal {
  flex: 1;
  background: rgba(232, 223, 210, 0.22); /* Areia sutil de fundo */
}

/* Comportamento no hover (Sem alterar proporções) */
.servicos__flex-container:hover .col-individual:hover {
  box-shadow: 0 25px 55px rgba(27, 58, 92, 0.06);
}

.servicos__flex-container:hover .col-casal:hover {
  background: rgba(232, 223, 210, 0.35);
  box-shadow: 0 25px 55px rgba(27, 58, 92, 0.06);
}

/* Afeta a coluna não-focada ao focar em uma */
.servicos__flex-container:hover .servico-col:not(:hover) {
  opacity: 0.85;
}

/* Preenchimento interno */
.servico-col__inner {
  padding: clamp(40px, 5vw, 64px) clamp(30px, 4vw, 56px);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Efeito Passe-partout elegante apenas na coluna individual */
.col-individual .servico-col__inner::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(143, 166, 142, 0.15); /* Sálvia fina interna */
  pointer-events: none;
  z-index: 1;
}

/* Ordinal gigante em marca d'água no fundo */
.servico-col__num {
  font-family: var(--ff-title);
  font-size: clamp(80px, 8vw, 120px);
  font-weight: 300;
  font-style: italic;
  color: var(--areia);
  line-height: 0.8;
  position: absolute;
  bottom: 40px;
  right: 48px;
  opacity: 0.3;
  transition: color 0.5s var(--ease), transform 0.5s var(--ease);
  user-select: none;
  z-index: 1;
}

.servico-col:hover .servico-col__num {
  color: var(--salvia);
  transform: scale(1.05) translateY(-4px);
  opacity: 0.45;
}

/* Rótulo superior */
.servico-col__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--salvia);
  margin-bottom: 24px;
}

/* Títulos */
.servico-col h3 {
  font-family: var(--ff-title);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  color: var(--noturno);
  margin: 0 0 20px;
  max-width: 14ch;
  transition: color 0.4s var(--ease);
  position: relative;
  z-index: 2;
}

.servico-col h3 em {
  font-style: italic;
  font-weight: 400;
}

.servico-col:hover h3 {
  color: var(--azul);
}

/* Insight Psicanalítico no topo */
.servico-col__concept {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.65;
  color: #556270;
  margin: 0 0 28px;
  max-width: 38ch;
  position: relative;
  z-index: 2;
}

/* Descritivo do serviço */
.servico-col__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grafite);
  margin: 0 0 32px;
  max-width: 44ch;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Tags de catalogação tipo arquivo */
.servico-col__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  margin-top: auto; /* Garante alinhamento na base */
  border-top: 1px solid rgba(27, 58, 92, 0.06);
  padding-top: 24px;
  position: relative;
  z-index: 2;
}

.servico-col__tags span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--noturno);
  background: var(--offwhite);
  border: 1px solid var(--areia);
  padding: 6px 12px;
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

.servico-col:hover .servico-col__tags span {
  background: #fff;
  border-color: rgba(44, 94, 147, 0.2);
  color: var(--azul);
}

/* Botão de Conversa WhatsApp */
.servico-col__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 44px;
  transition: all 0.3s var(--ease);
  width: fit-content;
  position: relative;
  z-index: 2;
  background: transparent;
}

.servico-col__link span {
  position: relative;
}

.servico-col__link svg {
  transition: transform 0.3s var(--ease);
  stroke: currentColor;
  flex-shrink: 0;
}

/* Individual (Azul) */
.col-individual .servico-col__link {
  border: 1.5px solid var(--azul);
  color: var(--azul);
}

.col-individual .servico-col__link:hover {
  background: var(--azul);
  color: #ffffff;
}

/* Casal (Verde Sálvia) */
.col-casal .servico-col__link {
  border: 1.5px solid var(--salvia);
  color: var(--salvia);
}

.col-casal .servico-col__link:hover {
  background: var(--salvia);
  color: #ffffff;
}

.servico-col__link:hover svg {
  transform: translateX(4px);
}

/* Ajustes de responsividade para telas menores */
@media (max-width: 768px) {
  .servicos__flex-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .servico-col {
    flex: none !important; /* Desativa a mecânica elástica no mobile */
    opacity: 1 !important;
  }

  .col-individual .servico-col__inner::before {
    inset: 12px;
  }
  
  .servico-col__num {
    bottom: auto;
    top: 40px;
    right: 32px;
  }
  
  .servico-col__inner {
    padding: 40px 28px;
  }
}

/* ============================================================
   ACOLHIMENTO (ESPAÇO SEGURO)
   ============================================================ */
.acolhe {
  background: var(--areia);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}

/* Marca d'água tipográfica de fundo */
.acolhe__watermark {
  position: absolute;
  bottom: -8%;
  right: -4%;
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(200px, 28vw, 520px);
  color: var(--noturno);
  opacity: 0.025;
  line-height: 0.85;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.03em;
}

/* Grid principal assimétrico */
.acolhe__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Coluna Esquerda: Conteúdo ---- */
.acolhe__content {
  position: relative;
}

/* Label com filete decorativo */
.acolhe__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 28px;
  position: relative;
  padding-left: 56px;
}

.acolhe__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: var(--azul);
  opacity: 0.5;
}

/* Título editorial com destaque */
.acolhe__heading {
  font-family: var(--ff-title);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--noturno);
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}

.acolhe__heading em {
  font-style: italic;
  color: var(--salvia);
  font-weight: 400;
}

/* Lead text */
.acolhe__lead {
  font-size: 17px;
  line-height: 1.78;
  margin: 0 0 40px;
  max-width: 48ch;
  color: #4A5660;
}

/* ---- Valores: Lista editorial limpa com linhas horizontais ---- */
.acolhe__values {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.acolhe__value-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(27, 58, 92, 0.12);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.acolhe__value-item:last-of-type {
  border-bottom: 1px solid rgba(27, 58, 92, 0.12);
}

.acolhe__value-item:hover {
  transform: translateX(8px);
  border-color: rgba(27, 58, 92, 0.25);
}

/* Numeral romano */
.acolhe__value-num {
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--azul);
  opacity: 0.45;
  min-width: 30px;
  text-align: left;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
}

.acolhe__value-item:hover .acolhe__value-num {
  opacity: 1;
  color: var(--noturno);
}

/* Corpo do valor */
.acolhe__value-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.acolhe__value-body strong {
  font-size: 17px;
  font-weight: 600;
  color: var(--noturno);
  letter-spacing: 0.01em;
}

.acolhe__value-body em {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.6;
  color: #556270;
  transition: color 0.4s var(--ease);
}

.acolhe__value-item:hover .acolhe__value-body em {
  color: var(--grafite);
}

/* ---- Coluna Direita: Imagem monumental ---- */
/* Imagem mobile (duplicada entre título e texto): oculta no desktop */
.acolhe__visual-mobile {
  display: none;
}

.acolhe__visual {
  position: relative;
}

/* Frame com passe-partout duplo */
.acolhe__frame {
  position: relative;
  padding: 14px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(27, 58, 92, 0.1),
              0 12px 28px rgba(27, 58, 92, 0.06);
}

.acolhe__img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--offwhite);
}

.acolhe__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.acolhe__frame:hover .acolhe__img-wrapper img {
  transform: scale(1.04);
}

/* Accent deslocado em sálvia — moldura decorativa */
.acolhe__frame-accent {
  position: absolute;
  top: 28px;
  right: -18px;
  bottom: -18px;
  left: 28px;
  border: 1px solid var(--salvia);
  opacity: 0.3;
  z-index: -1;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.acolhe__frame:hover .acolhe__frame-accent {
  opacity: 0.55;
  transform: translate(4px, 4px);
}

.acolhe__caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.acolhe__caption span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A8B96;
  font-weight: 500;
}

.acolhe__caption-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--salvia);
  flex-shrink: 0;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .acolhe__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* Oculta a imagem original da coluna direita no mobile */
  .acolhe__visual {
    display: none;
  }

  /* Mostra a imagem mobile entre título e texto descritivo */
  .acolhe__visual-mobile {
    display: block;
    max-width: 480px;
    margin: 0 auto 28px;
  }

  /* Estilo Polaroid para imagem da seção no mobile/tablet */
  .acolhe__visual-mobile .acolhe__frame {
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(27, 58, 92, 0.09), 0 4px 12px rgba(27, 58, 92, 0.04);
    border-radius: 0;
  }

  .acolhe__frame-accent {
    display: none;
  }
}

@media (max-width: 768px) {
  .acolhe__heading {
    font-size: clamp(26px, 6.5vw, 34px);
    max-width: none;
  }

  .acolhe__value-item {
    padding: 20px 0;
  }

  .acolhe__value-item:hover {
    transform: translateX(4px);
  }

  .acolhe__watermark {
    font-size: clamp(120px, 30vw, 240px);
    bottom: -4%;
    right: -8%;
  }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { padding: var(--pad-y) var(--pad-x); }
.sobre__grid { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.sobre__photo { position: relative; }
.sobre__plate {
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: linear-gradient(135deg, rgba(232, 223, 210, 0.35) 0%, rgba(247, 245, 240, 0.05) 100%);
  border: 1px solid rgba(232, 223, 210, 0.6);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(27, 58, 92, 0.02);
  z-index: 0;
}
.sobre__carousel {
  position: relative;
  background: #ffffff;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid rgba(27, 58, 92, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sobre__carousel-container {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 16px;
  width: 100%;
}
.sobre__carousel-main {
  position: relative;
  width: 100%;
}
.sobre__carousel-track {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  background: var(--areia);
}
.sobre__carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
}
.sobre__carousel-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.sobre__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre__carousel-num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--ff-title);
  font-size: 72px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  z-index: 3;
  pointer-events: none;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
/* Miniaturas Navegadoras */
.sobre__carousel-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sobre__thumb-item {
  flex: 1;
  border: 1.5px solid transparent;
  background: var(--areia);
  border-radius: 2px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  opacity: 0.55;
  transition: all 0.3s var(--ease);
  aspect-ratio: 3 / 4;
}
.sobre__thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre__thumb-item:hover {
  opacity: 0.85;
}
.sobre__thumb-item.is-active {
  opacity: 1;
  border-color: var(--azul);
  box-shadow: 0 4px 12px rgba(27, 58, 92, 0.15);
}
/* Barra de tempo */
.sobre__carousel-progress {
  width: 100%;
  height: 2px;
  background: rgba(27, 58, 92, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.sobre__carousel-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--salvia);
  transition: width 6s linear;
}
/* Rodapé da Galeria */
.sobre__carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 4px;
}
.sobre__carousel-caption {
  font-size: 13.5px;
  line-height: 1.4;
  color: #556270;
  margin: 0;
  font-weight: 500;
  flex: 1;
  transition: opacity 0.3s var(--ease);
}
.sobre__carousel-counter {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--noturno);
  letter-spacing: 0.05em;
  user-select: none;
  min-width: 48px;
  text-align: center;
}
/* Responsividade das miniaturas no mobile */
@media (max-width: 1024px) {
  .sobre__carousel-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sobre__carousel-thumbs {
    flex-direction: row;
    justify-content: center;
  }
  .sobre__thumb-item {
    flex: 0 0 68px;
    aspect-ratio: 3.2 / 3.8;
  }
}
.sobre__quote {
  position: absolute; right: -18px; bottom: 18px; max-width: 180px;
  background: var(--azul); color: #fff; padding: 16px 20px; border-radius: 14px;
  box-shadow: 0 16px 34px rgba(27,58,92,.28);
  font-family: var(--ff-title); font-style: italic; font-size: 15px; line-height: 1.4;
}
.sobre .section-title { margin: 20px 0 24px; }
.sobre__text { font-size: 17px; line-height: 1.78; margin: 0 0 18px; max-width: 56ch; }
.sobre__text:last-of-type { margin-bottom: 30px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.facts > div { border-left: 2px solid var(--salvia); padding-left: 16px; }
.facts span { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--salvia); font-weight: 600; margin-bottom: 6px; }
.facts strong { font-family: var(--ff-title); font-weight: 500; font-size: 20px; color: var(--noturno); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo {
  position: relative;
  background: var(--noturno-2); /* Fundo noturno ainda mais escuro para destaque */
  color: #fff;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}

.depo .wrap {
  position: relative;
  z-index: 1;
}

.depo__grid {
  display: grid;
  grid-template-columns: 1fr 1.38fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: center; /* Alinha verticalmente com o bloco da esquerda */
}

/* Coluna Esquerda: Intro */
.depo__intro {
  position: sticky;
  top: 130px;
}

.depo__intro .section-title {
  color: #fff;
  line-height: 1.1;
  margin: 18px 0 28px;
  max-width: 14ch;
}

.depo__intro .section-title em {
  font-style: italic;
  color: var(--salvia);
}

/* Selo Google minimalista */
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 14px 22px;
  margin-bottom: 32px;
}

.gbadge__icon {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.gbadge__icon svg {
  width: 100%;
  height: 100%;
}

.gbadge__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gbadge__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gbadge__rating strong {
  font-family: var(--ff-title);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.gbadge__rating .stars {
  color: var(--salvia);
  letter-spacing: 1.5px;
  font-size: 13px;
}

.gbadge__text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 1px;
}

.depo__note {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
  max-width: 36ch;
}

.depo__google-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--salvia);
  border: 1px solid rgba(143, 166, 142, 0.35);
  border-radius: 50px;
  padding: 13.5px 30px;
  text-decoration: none;
  background: transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  margin-top: 0;
  width: fit-content;
}

.depo__google-text {
  color: var(--salvia);
  transition: color 0.4s var(--ease);
}

.depo__google-arrow {
  display: inline-block;
  color: var(--salvia);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.depo__google-link:hover {
  background: var(--salvia);
  border-color: var(--salvia);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(143, 166, 142, 0.14);
}

.depo__google-link:hover .depo__google-text {
  color: var(--noturno-2);
}

.depo__google-link:hover .depo__google-arrow {
  transform: translateX(4px);
  color: var(--noturno-2);
}

.depo__nav-container {
  display: flex;
  justify-content: center; /* Centraliza a navegação horizontalmente */
  align-items: center;
  margin-top: 36px;
  border: none;
  padding: 0;
}

.depo__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.depo__arrow {
  background: none;
  border: none;
  padding: 8px;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s var(--ease);
}

.depo__arrow:hover {
  color: var(--salvia);
}

.depo__arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s var(--ease);
}

.depo__arrow#depoPrev:hover svg {
  transform: translateX(-3px);
}

.depo__arrow#depoNext:hover svg {
  transform: translateX(3px);
}

.depo__counter {
  font-family: var(--ff-title);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.depo__counter-current {
  color: var(--salvia);
  font-weight: 500;
}

.depo__counter-sep {
  color: rgba(255, 255, 255, 0.15);
}

.depo__counter-total {
  color: rgba(255, 255, 255, 0.45);
}

/* Coluna Direita: Slider com Transição Cross-Fade */
.depo__content {
  position: relative;
  width: 100%;
}

.depo__stage {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center; /* Centraliza a citação verticalmente */
  position: relative;
}

/* Slides de Citação Editorial (Empilhados na mesma célula) */
.t-slide {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
  pointer-events: none;
  
  border-left: 2px solid var(--salvia);
  padding: 10px 0 10px clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.t-slide blockquote {
  font-family: var(--ff-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.55;
  color: var(--offwhite);
  margin: 0 0 24px 0;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}

.t-slide cite {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  font-style: normal;
  margin-top: 4px;
}

.t-slide cite .stars {
  color: var(--areia); /* Estrelas discretas e sofisticadas cor areia */
  font-size: 11px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
  opacity: 0.9;
}

.t-slide cite strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  font-family: var(--ff-body);
}

.t-slide cite span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4); /* Data discreta em offwhite sutil */
  margin-top: 4px;
  font-family: var(--ff-title);
  font-style: italic;
}

/* ============================================================
   RESPONSIVIDADE DEPOIMENTOS
   ============================================================ */
@media (max-width: 1024px) {
  .depo__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .depo__intro {
    position: static;
  }

  .depo__note {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .t-slide {
    padding-left: 20px;
  }
  .depo__nav-container {
    padding-left: 0;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--offwhite);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}

.faq__wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* Cabeçalho */
.faq__head {
  margin-bottom: clamp(48px, 6vw, 72px);
  text-align: center;
}

.faq__head .section-title {
  margin-bottom: 18px;
}

.faq__head .section-title em {
  font-style: italic;
  color: var(--azul);
  font-weight: 400;
}

.faq__lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: #6B7885;
  margin: 0 auto;
  max-width: 48ch;
}

/* Lista */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item individual */
.faq__item {
  background: #fff;
  border: 1px solid rgba(27, 58, 92, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.faq__item:hover {
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.06);
  border-color: rgba(27, 58, 92, 0.1);
}

.faq__item.is-open {
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.1);
  border-color: rgba(44, 94, 147, 0.15);
  transform: translateY(-2px);
}

/* Pergunta */
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  text-align: left;
  font-family: var(--ff-title);
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--noturno);
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.3s var(--ease);
}

.faq__q:hover {
  color: var(--azul);
}

.faq__item.is-open .faq__q {
  color: var(--azul);
}

/* Ícone + */
.faq__icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 58, 92, 0.15);
  background: transparent;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  transition: all 0.35s var(--ease);
}

.faq__item.is-open .faq__icon {
  background: var(--azul);
  border-color: var(--azul);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(44, 94, 147, 0.25);
}

/* Resposta */
.faq__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease);
}

.faq__item.is-open .faq__a {
  opacity: 1;
}

.faq__a p {
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
  padding: 0 28px 26px 28px;
  color: #556270;
  max-width: 68ch;
}

/* Footer CTA */
.faq__footer {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq__footer p {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 18px;
  color: var(--salvia);
  margin: 0;
}

.faq__footer .btn {
  padding: 14px 32px;
  font-size: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
  .faq__q {
    padding: 20px 22px;
    font-size: 16.5px;
  }
  .faq__a p {
    padding: 0 22px 22px 22px;
    font-size: 15px;
  }
  .faq__icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  position: relative;
  background: url('assets/bg-contato-psicanalise.webp') repeat center center;
  color: #fff;
  padding: clamp(60px, 8vh, 100px) var(--pad-x);
}
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.contato__title { font-family: var(--ff-title); font-weight: 500; font-size: clamp(32px, 4.6vw, 58px); line-height: 1.08; color: #fff; margin: 20px 0 22px; }
.contato__lead { font-size: 17px; line-height: 1.78; color: #E4ECF4; margin: 0 0 30px; max-width: 46ch; }
 
.card { background: var(--offwhite); border-radius: 20px; padding: clamp(26px, 3.4vw, 40px); box-shadow: 0 30px 60px rgba(15,33,54,.3); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--noturno); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--ff-body); font-size: 15px; color: var(--grafite);
  background: #fff; border: 1px solid #D9D2C6; border-radius: 12px; padding: 14px 16px; outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232A2E33' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(44, 94, 147, 0.15); background-color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #9aa3ab; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #C98A82; }

/* Grid de campos para formulário */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.field-grid .field {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .field-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.err { display: block; font-size: 12.5px; color: var(--erro); margin-top: 6px; min-height: 0; }
.card__note { font-size: 12px; color: #7a8894; text-align: center; margin: 14px 0 0; line-height: 1.6; }
.card__ok { text-align: center; padding: 30px 10px; }
.card__check { width: 56px; height: 56px; border-radius: 50%; background: var(--salvia); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; }
.card__ok h3 { font-family: var(--ff-title); font-size: 24px; color: var(--noturno); margin: 0 0 10px; }
.card__ok p { font-size: 15px; line-height: 1.7; margin: 0 0 20px; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: #102235; /* #1B3A5C (noturno) escurecido ~30% */
  color: rgba(255, 255, 255, 0.7);
  padding: 35px var(--pad-x) 20px;
  border-top: 1px solid rgba(44, 94, 147, 0.2); /* Borda com cor de destaque a 20% */
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Coluna 1: Marca */
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 1.2rem;
}
.footer-brand__logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--azul);
  padding: 7px;
}
.footer-brand__logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer-brand__logo strong {
  font-family: var(--ff-title);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.footer-brand__logo em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--salvia);
  font-weight: 600;
  margin-top: 3px;
}
.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
  max-width: 260px;
}
.footer-brand__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-brand__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.footer-brand__social a:hover {
  background: rgba(44, 94, 147, 0.15);
  color: var(--azul);
  transform: translateY(-2px);
}

/* Colunas de Links e Contato */
.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--salvia);
  margin: 0 0 1.5rem 0;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-links a:hover {
  color: var(--azul);
}

/* Coluna de Contato */
.footer-contact li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}
.footer-contact li a:hover {
  color: var(--azul);
}
.footer-contact svg {
  flex-shrink: 0;
  color: var(--salvia);
}

/* Separador */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px auto 20px;
  max-width: 1280px;
}

/* Bottom Legal */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-credits-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-credits-left > span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-legal-links a:hover {
  color: var(--azul);
}
.footer-legal-links__sep {
  margin: 0 10px;
  opacity: 0.3;
}
.footer-legal-link--cookies {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.footer-credits-right {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-credits-right a {
  color: var(--azul);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.footer-credits-right a:hover {
  color: #5E97D6;
}

/* Responsividade do footer-bottom */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .footer-credits-left {
    align-items: flex-start;
  }
  
  .footer-credits-right {
    align-self: flex-start;
  }
}

/* Responsividade Mobile e Tablet */
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 25px 30px !important;
  }
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-brand__desc {
    max-width: 100% !important;
  }
}

/* ========================================
   WHATSAPP
   ======================================== */
.wa-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--ff-body), sans-serif;
}

.wa-bubble {
  width: 300px;
  position: absolute;
  bottom: 75px;
  right: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(27,58,92,0.08);
  padding-bottom: 10px;
}

.wa-avatar-wrapper {
  position: relative;
  display: flex;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #25d366;
}

.wa-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.wa-name {
  font-family: var(--ff-title);
  font-weight: 600;
  color: var(--noturno);
  font-size: 15px;
}

.wa-message-text p {
  margin: 0;
  font-size: 14px;
  color: var(--grafite);
  line-height: 1.5;
}

.wa-message-text strong {
  color: var(--noturno);
  font-weight: 600;
}

.wa-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.wa-float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.wa-float-btn svg {
  width: 28px;
  height: 28px;
}

.wa-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.wa-close:hover {
  color: var(--noturno);
}

@media (max-width: 480px) {
  .wa-container {
    bottom: 20px;
    right: 20px;
  }
  .wa-bubble {
    width: 260px;
    bottom: 70px;
  }
}

.serv__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--azul);
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.serv__link:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

/* ============================================================
   SEPARADOR
   ============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(27, 58, 92, 0.06) 20%, rgba(27, 58, 92, 0.06) 80%, transparent 100%);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.local {
  background: var(--offwhite);
  padding: var(--pad-y) var(--pad-x);
}

.local__header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.local__header .section-title {
  margin-bottom: 0;
}

.local__header .section-title em {
  font-style: italic;
  color: var(--azul);
  font-weight: 400;
}

.local__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 3.5vw, 44px);
  align-items: stretch;
}

/* Mapa */
.local__map-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(27, 58, 92, 0.1);
  height: 100%;
  min-height: 280px;
}

.local__map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  border: 0;
}

/* Info card */
.local__info {
  background: #fff;
  border-radius: 12px;
  padding: clamp(24px, 2.8vw, 36px);
  box-shadow: 0 16px 40px rgba(27, 58, 92, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.local__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.local__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.local__row > svg {
  color: var(--azul);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.local__row div {
  flex: 1;
}

.local__row span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salvia);
  font-weight: 600;
  margin-bottom: 3px;
}

.local__row p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grafite);
  margin: 0;
}

.local__cta {
  margin-top: 24px;
  justify-content: center;
  width: 100%;
  font-size: 14.5px;
  padding: 13px 24px;
}

/* Responsivo */
@media (max-width: 768px) {
  .local__grid {
    grid-template-columns: 1fr;
  }
  .local__map-frame {
    min-height: 240px;
  }
  .local__map-frame iframe {
    min-height: 240px;
  }
  .local__info {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .local__header {
    text-align: center;
  }
  .local__header .eyebrow {
    justify-content: center;
  }
}

