/* ===================================================
   KORPI SAÚDE & ESTÉTICA — Design System v2
   Direção: Luxury Editorial Spa
   Fontes: Cormorant Garamond + Josefin Sans
=================================================== */

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

/* ── VARIÁVEIS ──────────────────────────────────── */
:root {
  --cor-principal:    #8D6DB0;
  --cor-acento:       #B59ACB;
  --cor-clara:        #EDE5F4;
  --cor-fundo:        #FAFAFE;
  --cor-texto:        #1E1528;
  --cor-texto-suave:  #6B5C7A;
  --cor-branco:       #FFFFFF;
  --cor-ouro:         #C9A96E;
  --cor-ouro-claro:   #E8D5B0;
  --cor-whatsapp:     #25D366;

  --font-titulo:  'Playfair Display', Georgia, serif;
  --font-corpo:   'Josefin Sans', system-ui, sans-serif;

  --raio:        10px;
  --raio-grande: 20px;
  --raio-pill:   50px;

  --sombra-suave: 0 4px 30px rgba(141,109,176,.08);
  --sombra-media: 0 12px 50px rgba(141,109,176,.16);
  --sombra-forte: 0 24px 80px rgba(141,109,176,.24);
  --sombra-ouro:  0 8px 32px rgba(201,169,110,.25);

  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --max-width:    1300px;

  /* Gradientes */
  --grad-roxo: linear-gradient(135deg, #8D6DB0 0%, #6a4d8f 100%);
  --grad-hero: linear-gradient(135deg, #1E1528 0%, #3d2a5a 40%, #8D6DB0 100%);
  --grad-ouro: linear-gradient(135deg, #C9A96E, #e8c98a, #C9A96E);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-corpo);
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain texture sutil */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--cor-principal); text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }

/* ── TIPOGRAFIA ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  color: var(--cor-texto);
  font-weight: 400;
  line-height: 1.15;
}

.titulo-hero  { font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 300; }
.titulo-secao { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: .4em; }
.subtitulo-secao {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: var(--cor-texto-suave);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: .03em;
}
.titulo-secao em, .titulo-hero em {
  font-style: italic;
  color: var(--cor-principal);
}

/* Gradient text animado */
.texto-gradiente {
  background: linear-gradient(90deg, #C9A96E, #e8c98a, #C9A96E, #b8903d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.label-secao {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cor-acento);
  display: block;
  margin-bottom: 12px;
}

/* ── LAYOUT ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

.secao { padding: 36px 0; }
@media (min-width: 1024px) { .secao { padding: 48px 0; } }

.secao-clara  { background: var(--cor-clara); }
.secao-escura { background: var(--cor-texto); }
.texto-centro { text-align: center; }

.cabecalho-secao {
  max-width: 660px;
  margin: 0 auto 64px;
  text-align: center;
}

/* ── ANIMAÇÕES ──────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

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

@keyframes float-y-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(8deg); }
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.08); }
  66%  { transform: translate(-20px, 25px) scale(.94); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-35px, 30px) scale(1.06); }
  66%  { transform: translate(25px, -20px) scale(.96); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

@keyframes reveal-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal — base */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1),
              transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1),
              transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1),
              transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Delays escalonados */
[data-delay="100"] { transition-delay: .1s !important; }
[data-delay="150"] { transition-delay: .15s !important; }
[data-delay="200"] { transition-delay: .2s !important; }
[data-delay="300"] { transition-delay: .3s !important; }
[data-delay="400"] { transition-delay: .4s !important; }
[data-delay="500"] { transition-delay: .5s !important; }
[data-delay="600"] { transition-delay: .6s !important; }
[data-delay="700"] { transition-delay: .7s !important; }
[data-delay="800"] { transition-delay: .8s !important; }

/* ── BOTÕES ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--raio-pill);
  font-family: var(--font-corpo);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s ease;
}
.btn:hover::before { background: rgba(255,255,255,.1); }

.btn-primario {
  background: var(--grad-roxo);
  color: white;
  box-shadow: 0 4px 20px rgba(141,109,176,.3);
}
.btn-primario:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(141,109,176,.45);
}
.btn-primario:active { transform: translateY(0); }

.btn-secundario {
  background: transparent;
  color: var(--cor-principal);
  border: 1.5px solid var(--cor-principal);
}
.btn-secundario:hover {
  background: var(--cor-principal);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--sombra-media);
}

.btn-branco {
  background: white;
  color: var(--cor-principal);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-branco:hover {
  background: rgba(255,255,255,.95);
  color: var(--cor-principal);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.15);
}

.btn-ouro {
  background: var(--grad-ouro);
  background-size: 200% auto;
  color: #5a3d00;
  font-weight: 600;
  animation: shimmer 3s linear infinite;
}
.btn-ouro:hover {
  color: #3d2800;
  transform: translateY(-3px);
  box-shadow: var(--sombra-ouro);
}

.btn-whatsapp {
  background: var(--cor-whatsapp);
  color: white;
  animation: pulse-whatsapp 2.5s ease infinite;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: white;
  transform: translateY(-3px);
}

.btn-sm  { padding: 10px 22px; font-size: .8rem; min-height: 40px; }
.btn-lg  { padding: 17px 38px; font-size: .95rem; }
.btn-xl  { padding: 20px 48px; font-size: 1rem; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.navbar.scrolled {
  background: rgba(250,250,254,.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(141,109,176,.12), var(--sombra-suave);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  font-family: var(--font-titulo);
  font-size: 1.5rem;
  color: var(--cor-texto);
}
.navbar-logo:hover { color: var(--cor-texto); }

.navbar-links { display: none; gap: 36px; }
.navbar-links a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  position: relative;
  padding-bottom: 4px;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--cor-ouro-claro);
  transition: width .35s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
.navbar-links a:hover::after { width: 100%; }
.navbar-links a:hover { color: var(--cor-ouro-claro); }

/* Quando scrolled — links escuros sobre fundo claro */
.navbar.scrolled .navbar-links a { color: var(--cor-texto); }
.navbar.scrolled .navbar-links a::after { background: var(--cor-principal); }
.navbar.scrolled .navbar-links a:hover { color: var(--cor-principal); }

/* Páginas internas (não home) — navbar já nasce com fundo claro */
.navbar.navbar-pagina {
  background: rgba(250,248,254,.96);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 20px rgba(72,45,110,.08);
}
.navbar.navbar-pagina .navbar-links a {
  color: var(--cor-principal);
}
.navbar.navbar-pagina .navbar-links a::after { background: var(--cor-principal); }
.navbar.navbar-pagina .navbar-links a:hover { color: var(--cor-ouro); }
.navbar.navbar-pagina .navbar-hamburger span { background: var(--cor-principal); }

.navbar-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.navbar-hamburger span {
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar.scrolled .navbar-hamburger span { background: var(--cor-texto); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(30,21,40,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .35s ease;
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: linear-gradient(160deg, #1E1030 0%, #2D1B52 55%, #48296E 100%);
  padding: 28px 24px;
  transform: translateX(105%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -24px 0 60px rgba(0,0,0,.4);
  overflow-y: auto;
}
/* Ornamento decorativo no topo */
.drawer-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(141,109,176,.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.drawer.aberto { pointer-events: all; }
.drawer.aberto .drawer-overlay { opacity: 1; }
.drawer.aberto .drawer-panel { transform: translateX(0); }

/* Botão fechar */
.drawer-fechar {
  align-self: flex-end;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: background .2s;
  flex-shrink: 0;
}
.drawer-fechar:hover { background: rgba(255,255,255,.22); }

/* Logo no drawer */
.drawer-logo {
  margin: 20px 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.drawer-logo img { height: 44px; width: auto; }

/* Links */
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.drawer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: background .2s, color .2s, padding-left .2s;
  border-left: 2px solid transparent;
}
.drawer-links a::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(141,109,176,.6);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.drawer-links a:hover {
  background: rgba(255,255,255,.08);
  color: white;
  padding-left: 20px;
  border-left-color: var(--cor-acento);
}
.drawer-links a:hover::before {
  background: var(--cor-acento);
  transform: scale(1.4);
}

/* Divisor antes do WhatsApp */
.drawer-divisor {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 20px 0 16px;
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-hamburger { display: none; }
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: #160D22;
  z-index: 0;
}
.hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .58;
  will-change: transform;
  transition: transform .1s linear;
}

/* Orbs decorativos flutuantes */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(141,109,176,.35);
  top: -100px; right: -80px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(201,169,110,.2);
  bottom: -60px; left: 10%;
  animation: orb-drift-2 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: rgba(181,154,203,.25);
  top: 30%; left: -50px;
  animation: orb-drift 18s ease-in-out infinite reverse;
}

/* Linha decorativa hero */
.hero-linha {
  position: absolute;
  top: 0; right: 20%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.08), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
  max-width: 720px; /* elegante no mobile e desktop */
}

@media (min-width: 1024px) {
  .hero-content { padding: 100px 0; }
  .hero { min-height: 100svh; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cor-ouro-claro);
  margin-bottom: 20px;
  opacity: 0;
  animation: count-up .8s .2s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--cor-ouro);
}

.hero-titulo {
  color: white;
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: count-up .9s .35s ease forwards;
}
.hero-titulo em {
  font-style: italic;
  display: block;
}

.hero-subtitulo {
  color: rgba(255,255,255,.75);
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: .03em;
  opacity: 0;
  animation: count-up .9s .5s ease forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
  opacity: 0;
  animation: count-up .9s .65s ease forwards;
}

/* Badges hero glassmorphism */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 460px;
  opacity: 0;
  animation: count-up .9s .8s ease forwards;
}
@media (min-width: 768px) {
  .hero-badges { grid-template-columns: repeat(4, auto); max-width: none; gap: 10px; }
}

.hero-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 18px;
  color: white;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  backdrop-filter: blur(12px);
  transition: all .35s ease;
}
.hero-badge:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-3px);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cor-ouro-claro);
  line-height: 1;
  margin-bottom: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 1;
  animation: float-y 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}

/* ── DIFERENCIAIS ───────────────────────────────── */
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.diferencial-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 24px;
  background: white;
  border-radius: var(--raio-grande);
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(141,109,176,.07);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.diferencial-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-roxo);
  opacity: 0;
  transition: opacity .4s ease;
}
.diferencial-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-media);
  border-color: transparent;
}
.diferencial-item:hover::before { opacity: 1; }
.diferencial-item:hover .diferencial-icone { background: rgba(255,255,255,.15); color: white; }
.diferencial-item:hover .diferencial-titulo { color: white; }
.diferencial-item:hover .diferencial-texto { color: rgba(255,255,255,.8); }

.diferencial-icone {
  width: 48px; height: 48px;
  background: var(--cor-clara);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cor-principal);
  transition: all .4s ease;
  position: relative; z-index: 1;
}
.diferencial-titulo {
  font-family: var(--font-titulo);
  font-size: 1.15rem;
  margin-bottom: 6px;
  position: relative; z-index: 1;
  transition: color .4s ease;
}
.diferencial-texto {
  font-size: .85rem;
  color: var(--cor-texto-suave);
  line-height: 1.65;
  position: relative; z-index: 1;
  transition: color .4s ease;
}

@media (min-width: 640px)  { .diferenciais-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(5, 1fr); }
  .diferencial-item { flex-direction: column; align-items: flex-start; }
}

/* ── CARDS TRATAMENTOS ──────────────────────────── */
.grid-tratamentos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .grid-tratamentos { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-tratamentos { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: white;
  border-radius: var(--raio-grande);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(141,109,176,.07);
}
.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--sombra-forte);
  border-color: rgba(141,109,176,.15);
}
.card-body { padding: 24px 26px; }

.card-tratamento .card-img-wrap {
  overflow: hidden;
  height: 230px;
  background: var(--cor-clara);
  position: relative;
}
.card-tratamento .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.card-tratamento:hover .card-img-wrap img { transform: scale(1.08); }

/* Overlay no hover do card */
.card-tratamento .card-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(141,109,176,.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.card-tratamento:hover .card-img-wrap::after { opacity: 1; }

.card-categoria {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--cor-acento);
  margin-bottom: 8px;
}
.card-nome {
  font-family: var(--font-titulo);
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: var(--cor-texto);
}
.card-desc {
  font-size: .85rem;
  color: var(--cor-texto-suave);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.card-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cor-principal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s ease;
}
.card-link svg { transition: transform .3s ease; }
.card-tratamento:hover .card-link svg { transform: translateX(4px); }

/* ── SOBRE ──────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) { .sobre-grid { grid-template-columns: 1fr 1fr; } }

.sobre-img {
  border-radius: var(--raio-grande);
  overflow: hidden;
  position: relative;
}
.sobre-img img {
  width: 100%; height: 500px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.sobre-img:hover img { transform: scale(1.04); }

/* Decoração sobre imagem */
.sobre-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--raio-grande);
  background: linear-gradient(135deg, var(--cor-ouro), transparent, var(--cor-principal));
  z-index: -1;
  opacity: .5;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px 0;
}
.sobre-stat {
  padding: 20px;
  background: var(--cor-fundo);
  border-radius: var(--raio);
  text-align: center;
  border: 1px solid var(--cor-clara);
  transition: all .35s ease;
}
.sobre-stat:hover {
  background: var(--cor-clara);
  border-color: var(--cor-acento);
  transform: translateY(-3px);
}
.sobre-stat strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 2.2rem;
  color: var(--cor-principal);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.sobre-stat span {
  font-size: .75rem;
  color: var(--cor-texto-suave);
  font-weight: 300;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Texto justificado nas seções "Sobre" */
.sobre-texto {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.85;
  color: var(--cor-texto-suave);
  margin-bottom: 16px;
}

/* ── DEPOIMENTOS ────────────────────────────────── */
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .depoimentos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .depoimentos-grid { grid-template-columns: repeat(3, 1fr); } }

.card-depoimento {
  background: white;
  border-radius: var(--raio-grande);
  padding: 30px 28px;
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(141,109,176,.08);
  position: relative;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.card-depoimento::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-titulo);
  font-size: 6rem;
  color: var(--cor-clara);
  line-height: 1;
  pointer-events: none;
}
.card-depoimento:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-media);
  border-color: rgba(141,109,176,.15);
}
.depoimento-estrelas {
  color: var(--cor-ouro);
  font-size: .9rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.depoimento-texto {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--cor-texto);
  margin-bottom: 22px;
  font-style: italic;
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.depoimento-autor { display: flex; gap: 12px; align-items: center; }
.depoimento-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cor-clara);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titulo);
  font-size: 1.2rem;
  color: var(--cor-principal);
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--cor-clara);
}
.depoimento-avatar img { width: 100%; height: 100%; object-fit: cover; }
.depoimento-nome { font-weight: 500; font-size: .875rem; color: var(--cor-texto); }
.depoimento-tratamento { font-size: .75rem; color: var(--cor-texto-suave); font-weight: 300; letter-spacing: .04em; }

/* ── CTA FINAL ──────────────────────────────────── */
.cta-final {
  background: var(--grad-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(141,109,176,.2);
  filter: blur(100px);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-final h2 { color: white; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-final p  { color: rgba(255,255,255,.75); margin-bottom: 44px; position: relative; z-index: 1; font-weight: 300; }
.cta-final-botoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--cor-texto);
  color: rgba(255,255,255,.65);
  padding: 80px 0 36px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141,109,176,.5), var(--cor-ouro), rgba(141,109,176,.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 56px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 52px; filter: brightness(0) invert(1); opacity: .85; }
.footer-desc {
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 22px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--cor-principal);
  border-color: var(--cor-principal);
  color: white;
  transform: translateY(-2px);
}
.footer-titulo-col {
  font-family: var(--font-titulo);
  font-size: .95rem;
  color: white;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: .05em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  letter-spacing: .03em;
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--cor-acento); padding-left: 6px; }
.footer-info { display: flex; flex-direction: column; gap: 12px; }
.footer-info-item { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; }
.footer-info-item svg { flex-shrink: 0; color: var(--cor-ouro); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
}

/* ── WHATSAPP FLUTUANTE ─────────────────────────── */
.whatsapp-flutuante {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 58px; height: 58px;
  background: var(--cor-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-whatsapp 3s ease infinite;
}
.whatsapp-flutuante:hover {
  transform: scale(1.12);
  color: white;
  box-shadow: 0 8px 36px rgba(37,211,102,.55);
  animation: none;
}

/* ── ALERTAS ────────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: var(--raio);
  margin-bottom: 16px;
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.alert-danger   { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; }
.alert-warning  { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }

/* ── UTILITÁRIOS ────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Linha decorativa dourada */
.linha-ouro {
  display: inline-block;
  width: 48px; height: 2px;
  background: var(--grad-ouro);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── ACESSIBILIDADE ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cor-principal);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Texto do tratamento justificado ── */
.detalhe-conteudo,
.detalhe-conteudo p,
.detalhe-conteudo li,
.detalhe-conteudo span,
.detalhe-conteudo div {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.85;
}
