/* ============================================================
   Yasmim Pimenta — Fisioterapia Pélvica · Design System
   Paleta rosé/nude da logomarca (#A87484 + #505A63) · Rufina + Mukta
   Nomes de variáveis mantidos p/ compatibilidade:
   --vinho → cinza-ardósia da logo · --terracota → rosé da logo
   Molduras de foto em 2:3 = mesma proporção dos arquivos originais
   (nada é cortado); foto horizontal usa .landscape (contain)
   ============================================================ */

:root {
  --bg: #fdf9f8;
  --surface: #f7edeb;
  --surface-2: #f2e2e0;
  --card: #ffffff;
  --vinho: #505a63;
  --ardosia-suave: #626e79;
  --marrom: #5d4a4f;
  --terracota: #a87484;
  --salmao: #c094a1;
  --pessego: #d8b4bc;
  --pessego-claro: #ead3d8;
  --text: #4a4448;
  --text-soft: #6e6266;
  --text-muted: #99898d;
  --border: rgba(80, 90, 99, 0.1);
  --wa: #25d366;
  --accent-rgb: 168, 116, 132;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-lg: clamp(1.25rem, 2vw, 2rem);
  --radius-xl: clamp(1.5rem, 2.5vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

/* âncoras não ficam escondidas atrás do cabeçalho fixo */
[id] { scroll-margin-top: 96px; }

body {
  font-family: 'Mukta', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(var(--accent-rgb), 0.25); color: var(--vinho); }

* { scrollbar-width: thin; scrollbar-color: rgba(var(--accent-rgb), 0.3) transparent; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(var(--accent-rgb), 0.3); border-radius: 4px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: 'Rufina', serif;
  font-weight: 400;
  color: var(--vinho);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

h1 em, h2 em { font-style: normal; color: var(--terracota); }

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

.label {
  font-family: 'Mukta', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terracota);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

section { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .label { display: block; margin-bottom: 0.9rem; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Reveal on scroll (fade + blur + rise, staggered) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), filter 1s var(--ease-out-expo);
    will-change: opacity, transform;
  }
  .reveal.active { opacity: 1; transform: translateY(0); filter: blur(0); }
  .stagger-1 { transition-delay: 100ms; }
  .stagger-2 { transition-delay: 200ms; }
  .stagger-3 { transition-delay: 300ms; }
  .stagger-4 { transition-delay: 400ms; }
  .stagger-5 { transition-delay: 500ms; }
  .stagger-6 { transition-delay: 600ms; }
}

/* ---------- Buttons ---------- */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--wa);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.28), 0 8px 30px rgba(37, 211, 102, 0.15);
  transition: all 0.3s var(--ease-out-quart);
}
.btn-wa:hover { transform: scale(1.03); box-shadow: 0 0 40px rgba(37, 211, 102, 0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vinho);
  border: 1px solid rgba(80, 90, 99, 0.35);
  background: transparent;
  transition: all 0.25s var(--ease-out-quart);
}
.btn-outline:hover { background: var(--vinho); color: #fff; border-color: var(--vinho); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.35s var(--ease-out-quart);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav.scrolled, .nav.menu-open {
  background: rgba(253, 249, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: block; line-height: 0; }
.nav-logo img { height: 56px; width: auto; display: block; transition: height 0.3s var(--ease-out-quart); }
.nav.scrolled .nav-logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; font-size: 0.92rem; font-weight: 500; color: var(--text-soft); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--terracota); }
.nav-cta {
  padding: 0.55rem 1.3rem;
  border-radius: 9999px;
  background: var(--vinho);
  color: #fff !important;
  font-weight: 600;
  transition: all 0.25s var(--ease-out-quart);
}
.nav-cta:hover { background: var(--terracota); transform: scale(1.04); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--vinho); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 900px 600px at 88% 12%, rgba(234, 211, 216, 0.55), transparent 60%),
    radial-gradient(ellipse 700px 500px at 8% 90%, rgba(168, 116, 132, 0.12), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 116, 132, 0.18);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--salmao); position: relative; }
.hero-badge .dot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--salmao); animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.hero h1 { margin-bottom: 1.4rem; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 34rem; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: 0.85rem; color: var(--text-muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust i { color: var(--terracota); font-size: 0.8rem; }

.hero-visual { position: relative; max-width: 400px; margin: 0 auto; width: 100%; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(155deg, var(--pessego-claro), var(--salmao) 55%, var(--terracota));
  box-shadow: 0 25px 60px -12px rgba(80, 90, 99, 0.28);
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo-ring {
  position: absolute; inset: -14px;
  border: 1px solid rgba(168, 116, 132, 0.25);
  border-radius: calc(var(--radius-xl) + 14px);
  pointer-events: none;
}
.hero-card {
  position: absolute; bottom: 6%; left: -8%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 116, 132, 0.14);
  border-radius: 1.1rem;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 20px 40px rgba(80, 90, 99, 0.12);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-card i { color: var(--terracota); font-size: 1.15rem; }
.hero-card .t { font-size: 0.8rem; font-weight: 700; color: var(--vinho); line-height: 1.3; }
.hero-card .s { font-size: 0.72rem; color: var(--text-muted); }

/* ---------- Tratamentos grid (primeira dobra) ---------- */
.treat-strip { padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: clamp(3.5rem, 6vw, 5.5rem); }
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.treat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.7rem 1.5rem;
  transition: all 0.35s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}
.treat-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--salmao); transition: height 0.45s var(--ease-out-quart);
}
.treat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(80, 90, 99, 0.09); }
.treat-card:hover::before { height: 100%; }
.treat-card i {
  font-size: 1.3rem; color: var(--terracota); margin-bottom: 0.85rem;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.treat-card:hover i { background: var(--pessego-claro); transform: scale(1.08); }
.treat-card h3 { font-family: 'Mukta', sans-serif; font-size: 1.12rem; font-weight: 700; color: var(--vinho); margin-bottom: 0.35rem; }
.treat-card p { font-size: 0.97rem; line-height: 1.6; color: var(--text-soft); }

/* ---------- "Você se identifica?" ---------- */
.identify { background: var(--surface); border-radius: var(--radius-xl); margin: 0 clamp(0.75rem, 2vw, 2rem); }
.identify-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.identify-card {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1.9rem 1.7rem;
  border: 1px solid rgba(80, 90, 99, 0.05);
  transition: all 0.4s var(--ease-out-quart);
}
.identify-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(80, 90, 99, 0.08); }
.identify-card i { color: var(--salmao); font-size: 1.3rem; margin-bottom: 1rem; }
.identify-card blockquote {
  font-family: 'Rufina', serif;
  font-size: 1.06rem;
  font-style: italic;
  color: var(--marrom);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}
.identify-card p { font-size: 0.9rem; color: var(--text-muted); }
.identify-note { text-align: center; margin-top: 2.6rem; }
.identify-note p { font-family: 'Rufina', serif; font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--terracota); font-style: italic; }

/* ---------- O que é ---------- */
.about-fisio .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.about-fisio .visual {
  border-radius: var(--radius-xl);
  aspect-ratio: 2 / 3;
  background: linear-gradient(155deg, var(--surface-2), var(--pessego-claro));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.about-fisio .visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-fisio p { font-size: 1.1rem; line-height: 1.75; }
.about-fisio p + p { margin-top: 1rem; }
.check-list { margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 1.02rem; color: var(--text-soft); }
.check-list li span {
  flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: rgba(168, 116, 132, 0.12); color: var(--terracota);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
}

/* ---------- Tratamentos individuais (chess) ---------- */
.treatments { background: var(--bg); }
.chess-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.2rem, 4vw, 3.5rem) 0;
}
.chess-row + .chess-row { border-top: 1px solid var(--border); }
.chess-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 2 / 3;
  background: linear-gradient(150deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  max-width: 390px;
  justify-self: center;
  width: 100%;
}
.chess-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chess-row:nth-child(even) .chess-visual { order: -1; }
.chess-num { font-family: 'Rufina', serif; font-size: 1rem; color: var(--salmao); letter-spacing: 0.1em; margin-bottom: 0.7rem; display: block; }
.chess-row h3 { margin-bottom: 1rem; font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
.chess-row p { font-size: 1.1rem; line-height: 1.75; }
.chess-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.3rem; font-size: 0.98rem; font-weight: 600; color: var(--terracota); transition: gap 0.25s; }
.chess-link:hover { gap: 0.8rem; }

/* ---------- Sobre ---------- */
.about-me { background: var(--ardosia-suave); border-radius: var(--radius-xl); margin: 0 clamp(0.75rem, 2vw, 2rem); overflow: hidden; }
.about-me::before {
  content: "YASMIM";
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  font-family: 'Rufina', serif;
  font-size: clamp(7rem, 14vw, 15rem);
  color: rgba(255, 255, 255, 0.03);
  line-height: 1; pointer-events: none; user-select: none;
}
.about-me .grid-2 { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; position: relative; z-index: 1; }
.about-me .photo {
  border-radius: var(--radius-lg);
  aspect-ratio: 2 / 3;
  background: linear-gradient(160deg, var(--salmao), var(--terracota) 60%, var(--marrom));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.about-me .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-me .label { color: var(--pessego-claro); }
.about-me h2 { color: #fff; margin: 0.9rem 0 1.2rem; }
.about-me p { color: rgba(255, 255, 255, 0.82); }
.about-me p + p { margin-top: 1rem; }
.about-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.about-creds div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
}
.about-creds i { color: var(--pessego-claro); margin-bottom: 0.4rem; }
.about-creds .t { font-size: 0.9rem; font-weight: 600; color: #fff; line-height: 1.35; }
.about-creds .s { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Depoimentos ---------- */
.testimonials { background: var(--bg); }
.testi-google { margin-top: 1rem; font-size: 0.92rem; color: var(--text-muted); }
.testi-google .stars-inline { color: var(--terracota); letter-spacing: 0.15em; margin-right: 0.3rem; }
.testi-google a { color: var(--terracota); font-weight: 600; }
.testi-google a:hover { text-decoration: underline; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px;
  transition: box-shadow 0.5s;
}
.testi-card:hover { box-shadow: 0 20px 40px rgba(80, 90, 99, 0.07); }
.testi-card .stars { color: var(--pessego); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.testi-card blockquote { font-size: 0.96rem; color: var(--text-soft); font-style: italic; line-height: 1.65; }
.testi-card .who { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.8rem; }
.testi-card .who .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(140deg, var(--pessego-claro), var(--salmao));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rufina', serif; color: #fff; font-size: 0.95rem;
}
.testi-card .who .n { font-size: 0.86rem; font-weight: 700; color: var(--vinho); }
.testi-card .who .d { font-size: 0.75rem; color: var(--text-muted); }

/* ---------- Consultório ---------- */
.office { background: var(--surface); border-radius: var(--radius-xl); margin: 0 clamp(0.75rem, 2vw, 2rem); }
.office .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }

/* Carrossel de fotos do consultório */
.office-carousel { position: relative; max-width: 440px; margin: 0 auto; width: 100%; }
.carousel-track {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track img {
  flex: none;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border: 1px solid var(--border);
}
.carousel-track img.landscape {
  object-fit: contain;
  background: linear-gradient(150deg, var(--surface-2), var(--pessego-claro));
}
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  color: var(--terracota);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(80, 90, 99, 0.22);
  transition: all 0.25s var(--ease-out-quart);
  z-index: 2;
}
.car-btn:hover { background: var(--terracota); color: #fff; }
.car-btn.prev { left: 0.9rem; }
.car-btn.next { right: 0.9rem; }
.car-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 1rem; }
.car-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: var(--pessego);
  transition: all 0.25s;
}
.car-dots button.active { background: var(--terracota); transform: scale(1.35); }
.office-info li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 0.98rem; color: var(--text-soft); }
.office-info li:last-child { border-bottom: none; }
.office-info i { color: var(--terracota); margin-top: 0.3rem; width: 1.1rem; text-align: center; }
.office-info strong { color: var(--vinho); display: block; font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq .container { max-width: 820px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq details[open] { box-shadow: 0 15px 35px rgba(80, 90, 99, 0.07); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--vinho);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Rufina', serif;
  font-size: 1.4rem;
  color: var(--salmao);
  transition: transform 0.3s var(--ease-out-quart);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.5rem 1.35rem; font-size: 0.95rem; }

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--ardosia-suave);
  border-radius: var(--radius-xl);
  margin: 0 clamp(0.75rem, 2vw, 2rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; top: 50%; left: 30%; transform: translate(-50%, -50%);
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 148, 161, 0.28), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}
.cta-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; position: relative; z-index: 1; }
.cta-final h2 { color: #fff; margin: 0.9rem 0 1rem; }
.cta-final p { color: rgba(255, 255, 255, 0.82); max-width: 460px; margin-bottom: 2.2rem; }
.cta-final .label { color: var(--pessego-claro); }
.cta-final .small-note { margin-top: 1.5rem; margin-bottom: 0; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }
.cta-photo {
  border-radius: var(--radius-lg);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
  max-width: 340px;
  justify-self: center;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.cta-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer-brand { font-family: 'Rufina', serif; font-size: 1.15rem; color: var(--vinho); }
.footer-brand span { display: block; font-family: 'Mukta', sans-serif; font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--terracota); }
.footer-meta { font-size: 0.8rem; color: var(--text-muted); text-align: right; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social a:hover { color: #fff; background: var(--terracota); border-color: var(--terracota); transform: translateY(-2px); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa);
  color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out-quart);
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .identify-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  [id] { scroll-margin-top: 92px; }
  .nav-links {
    position: fixed; inset: 0; top: 79px;
    background: rgba(253, 249, 248, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; justify-content: flex-start;
    padding-top: 2.5rem; gap: 1.6rem; font-size: 1.1rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
  }
  .nav.scrolled .nav-links { top: 73px; }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; }
  .hero-card { left: 0; }
  .about-fisio .grid-2, .about-me .grid-2, .office .grid-2, .chess-row, .cta-grid { grid-template-columns: 1fr; }
  .chess-row:nth-child(even) .chess-visual { order: 0; }
  .chess-visual { max-width: 340px; }
  .about-fisio .visual { max-width: 340px; }
  .about-me .photo { max-width: 340px; margin: 0 auto; }
  .office-carousel { max-width: 360px; }
  .cta-photo { max-width: 300px; }
}
@media (max-width: 600px) {
  section { padding: 3.2rem 0; }
  .section-head { margin-bottom: 2.2rem; }
  .treat-grid, .identify-grid { grid-template-columns: 1fr; }
  .about-creds { grid-template-columns: 1fr; }
  .chess-row { padding: 1.9rem 0; gap: 1.6rem; }
  .hero { padding-top: 6.5rem; }
  .nav-logo img { height: 44px; }
  .nav.scrolled .nav-logo img { height: 38px; }
  .nav-links { top: 79px; }
  .nav.scrolled .nav-links { top: 73px; }
  .footer-meta { text-align: left; }
}
