/* ============================================================
   Dra. Andrezza Medina | Hematologia e Hemoterapia
   Paleta: navy amostrado da clínica (#213C5F), creme editorial,
   granada discreto como acento. Fontes: Marcellus + Figtree.
   ============================================================ */

:root {
  --navy-900: #282936;
  --navy-800: #0B3158;
  --navy-700: #A6455F;
  --navy-500: #C27F91;
  --navy-200: #E5D7D7;
  --navy-100: #F2E8E8;
  --cream-50: #FFFFFF;
  --cream-100: #E5D7D7;
  --garnet-700: #B4574D;
  --garnet-500: #C86A60;
  --garnet-100: #F6E4E1;
  --ink-800: #282936;
  --ink-700: #3F404D;
  --ink-500: #7A7B87;
  --wpp-green: #0F7A3D;
  --wpp-green-deep: #0C6432;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
  --radius-card: 20px;
  --header-h: 84px;
  --dur-fast: 0.25s;
  --dur-base: 0.5s;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip;
}
body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}

body { opacity: 0; transition: opacity var(--dur-base) var(--ease); }
body.is-loaded { opacity: 1; }
body.is-leaving { opacity: 0; }

::selection { background: var(--navy-200); color: var(--navy-900); }

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.22;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.15rem); }
h2 { font-size: clamp(1.65rem, 4vw, 2.4rem); }
h3 { font-size: 1.22rem; }
h1 em, h2 em { font-style: italic; color: var(--garnet-700); }
p + p { margin-top: 0.9rem; }
a { color: var(--navy-700); }
.muted { color: var(--ink-500); }
.center { text-align: center; }

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--garnet-700);
  margin-bottom: 0.9rem;
}
.label::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--garnet-500);
  margin-top: 0.5rem;
}
.center .label::after { margin-inline: auto; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  cursor: pointer;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn--wpp { background: var(--wpp-green); color: #fff; box-shadow: 0 10px 24px rgba(15, 122, 61, 0.25); }
.btn--wpp:hover { background: var(--wpp-green-deep); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid var(--navy-500); color: var(--navy-700); background: transparent; }
.btn--ghost:hover { background: var(--navy-100); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.1rem; font-size: 1.04rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(166, 69, 95, 0.12);
  transition: box-shadow var(--dur-fast) var(--ease);
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(40, 41, 54, 0.08); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy-800); color: #fff; padding: 0.6rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; line-height: 1.15; }
.logo-rc { width: 46px; height: 46px; flex: 0 0 auto; }
.wm-texto { display: flex; flex-direction: column; }
.wm-name { font-family: var(--font-title); font-size: 1.34rem; color: var(--navy-800); letter-spacing: 0.02em; }
.wm-sub { font-family: var(--font-body); font-weight: 700; font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--garnet-700); margin-top: 2px; }

.nav-main { margin-left: auto; }
.nav-main > ul { display: flex; align-items: center; gap: 0.05rem; list-style: none; }
.nav-link,
.has-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.nav-link:hover, .has-dropdown > button:hover { background: var(--navy-100); }
.nav-link[aria-current="page"] { background: var(--navy-100); color: var(--navy-900); }
.has-dropdown { position: relative; list-style: none; }
.has-dropdown > button svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease); }
.has-dropdown.is-open > button svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(40, 41, 54, 0.14);
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
}
.has-dropdown.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.6rem 0.9rem; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.93rem; color: var(--navy-800); }
.dropdown a:hover, .dropdown a[aria-current="page"] { background: var(--navy-100); }

.header-cta { display: none; margin-left: 0.5rem; }
@media (min-width: 1260px) { .header-cta { display: inline-flex; } }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--cream-50);
    padding: 2rem 1.5rem 3rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease);
    margin-left: 0;
  }
  body.nav-open .nav-main { transform: translateX(0); }
  body.nav-open .site-header { position: fixed; top: 0; left: 0; right: 0; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-main > ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .nav-main a.nav-link,
  .has-dropdown > button { width: 100%; justify-content: space-between; font-size: 1.08rem; padding: 0.9rem 1rem; }
  .dropdown { position: static; box-shadow: none; background: transparent; min-width: 0; opacity: 1; visibility: visible; transform: none; display: none; padding: 0 0 0 1rem; }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-mobile-cta { margin-top: 1.6rem; width: 100%; justify-content: center; }
  .header-cta { display: none; }
}
@media (min-width: 1081px) { .nav-mobile-cta { display: none; } }

/* ---------- Seções ---------- */
main { display: block; }
.section { position: relative; padding: clamp(3.4rem, 8vw, 6rem) 0; overflow: hidden; }
.section--tight { padding: clamp(2.2rem, 5vw, 3.4rem) 0; }
.section > .container, .hero > .container { position: relative; z-index: 1; }

.grid-2 { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.4rem) 0 clamp(3.2rem, 7vw, 5.6rem); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 420px at 90% 4%, rgba(166, 69, 95, 0.08), rgba(0, 0, 0, 0) 68%),
    radial-gradient(520px 400px at 4% 96%, rgba(200, 106, 96, 0.06), rgba(0, 0, 0, 0) 68%);
}
.hero .lead { font-size: 1.08rem; }
.credencial { font-weight: 700; font-size: 0.9rem; color: var(--navy-700); letter-spacing: 0.02em; margin-top: 1.3rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.hero-note { font-size: 0.85rem; color: var(--ink-500); margin-top: 1rem; }

.photo-card { position: relative; width: min(100%, 430px); margin-inline: auto; }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: calc(var(--radius-card) + 10px);
  background: linear-gradient(155deg, var(--navy-200), var(--navy-100));
  z-index: 0;
}
.photo-frame { position: relative; z-index: 1; border-radius: calc(var(--radius-card) + 8px); overflow: hidden; box-shadow: 0 24px 60px rgba(40, 41, 54, 0.16); background: #fff; }
.photo { width: 100%; height: auto; display: block; }

/* Anel celular decorativo (assinatura visual da hematologia, discreto) */
.cell-ring {
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.cell-ring::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
}

/* ---------- Pills de dores (frases dos pacientes) ---------- */
.perguntas { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin: 1.9rem 0; }
.pergunta {
  background: #fff;
  border: 1px solid rgba(166, 69, 95, 0.14);
  border-left: 3px solid var(--garnet-500);
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-style: italic;
  font-size: 0.96rem;
  color: var(--navy-800);
  box-shadow: 0 6px 16px rgba(40, 41, 54, 0.05);
}

/* ---------- Manifesto ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  line-height: 1.35;
  color: var(--navy-800);
  max-width: 21ch;
  margin: 0 auto;
}
.quote-band .q-rule { width: 54px; height: 2px; background: var(--garnet-500); margin: 1.3rem auto 0; }

/* ---------- Cards ---------- */
.cards-3, .cards-4 { display: grid; gap: 1.3rem; margin-top: 2.4rem; }
@media (min-width: 700px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-4 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 4px solid var(--navy-200);
  box-shadow: 0 10px 30px rgba(40, 41, 54, 0.06);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  text-decoration: none;
  color: inherit;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(40, 41, 54, 0.11); border-top-color: var(--garnet-500); }
.card-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--navy-100); display: grid; place-items: center; color: var(--navy-700); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-top: 0.2rem; }
.card p { font-size: 0.95rem; color: var(--ink-700); }
.card .card-link { margin-top: auto; font-weight: 700; font-size: 0.9rem; color: var(--garnet-700); }

/* ---------- Blocos de diferenciais ---------- */
.info-blocks { display: grid; gap: 1.6rem 2.2rem; margin-top: 2.4rem; }
@media (min-width: 700px) { .info-blocks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-blocks { grid-template-columns: repeat(3, 1fr); } }
.info-block { display: flex; gap: 1rem; align-items: flex-start; }
.mini-icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--garnet-100); color: var(--garnet-700); display: grid; place-items: center; }
.mini-icon svg { width: 21px; height: 21px; }
.info-block h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; color: var(--navy-800); }
.info-block p { font-size: 0.93rem; color: var(--ink-700); margin-top: 0.25rem; }

/* ---------- Passos ---------- */
.steps { display: grid; gap: 1.4rem; margin-top: 2.4rem; counter-reset: passo; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: #fff; border-radius: var(--radius-card); padding: 1.6rem 1.4rem; box-shadow: 0 8px 24px rgba(40, 41, 54, 0.05); }
.step::before {
  counter-increment: passo;
  content: counter(passo, decimal-leading-zero);
  font-family: var(--font-title);
  font-size: 1.7rem;
  color: var(--garnet-500);
  display: block;
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; }
.step p { font-size: 0.92rem; color: var(--ink-700); margin-top: 0.3rem; }

/* ---------- Listas de condições ---------- */
.cond-list { list-style: none; display: grid; gap: 0.55rem; margin: 1.2rem 0; }
.cond-list li { position: relative; padding-left: 1.5rem; font-size: 0.98rem; }
.cond-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--garnet-500);
}
.dot-list { list-style: none; display: grid; gap: 0.7rem; margin: 1.2rem 0; }
.dot-list li { position: relative; padding-left: 1.6rem; }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--navy-500); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 2.2rem auto 0; display: grid; gap: 0.8rem; }
details {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.3rem;
  box-shadow: 0 6px 18px rgba(40, 41, 54, 0.05);
  border: 1px solid rgba(166, 69, 95, 0.1);
}
summary { cursor: pointer; font-weight: 700; color: var(--navy-800); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--garnet-500); line-height: 1; transition: transform var(--dur-fast) var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 0.7rem; font-size: 0.96rem; color: var(--ink-700); }

/* ---------- Galeria ---------- */
.galeria { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 700px) { .galeria { grid-template-columns: repeat(3, 1fr); } }
.galeria figure { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 12px 30px rgba(40, 41, 54, 0.08); margin: 0; }
.galeria img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA final ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  color: #fff;
  border-radius: calc(var(--radius-card) + 8px);
  padding: clamp(2.4rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--navy-200); }
.cta-band p { max-width: 640px; margin: 1rem auto 1.7rem; color: rgba(255, 255, 255, 0.88); }
.cta-band .cell-ring { color: #fff; }

/* ---------- Unidade / contato ---------- */
.unit-card { background: #fff; border-radius: var(--radius-card); padding: 2rem 1.8rem; box-shadow: 0 12px 32px rgba(40, 41, 54, 0.07); }
.unit-card h3 { margin-bottom: 0.6rem; }
.mapa-frame { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 12px 32px rgba(40, 41, 54, 0.1); line-height: 0; margin-top: 1.4rem; }
.mapa-frame iframe { width: 100%; height: 320px; border: 0; }
.contato-canais { display: grid; gap: 1.3rem; margin-top: 2.2rem; }
@media (min-width: 768px) { .contato-canais { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-500); margin-bottom: 1rem; text-transform: uppercase; font-weight: 600; }

/* ---------- Disclaimer clínico ---------- */
.disclaimer-clinico { font-size: 0.85rem; color: var(--ink-500); border-left: 3px solid var(--navy-200); padding-left: 1rem; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-700); color: rgba(255, 255, 255, 0.85); padding: clamp(3rem, 7vw, 4.6rem) 0 1.6rem; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--garnet-500), var(--navy-500)); }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 0.9fr 1.1fr 1.3fr; } }
.f-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; line-height: 1.2; margin-bottom: 1rem; }
.f-logo .logo-rc { width: 52px; height: 52px; }
.f-logo .wm-name { color: #fff; font-size: 1.35rem; }
.f-logo .wm-sub { color: #D9CCDD; }
.f-crm { font-size: 0.9rem; line-height: 1.7; }
.f-social { margin-top: 1rem; }
.f-social a { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: #fff; }
.f-social svg { width: 20px; height: 20px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.9rem; }
.site-footer ul { list-style: none; display: grid; gap: 0.55rem; font-size: 0.93rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.f-mapa-frame { border-radius: 14px; overflow: hidden; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22); line-height: 0; }
.f-mapa-frame iframe { width: 100%; height: 190px; border: 0; display: block; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 1.4rem; display: grid; gap: 0.5rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }
.footer-disclaimer { max-width: 720px; }

/* ---------- Botão flutuante ---------- */
.wpp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wpp-green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(15, 122, 61, 0.4);
  transition: transform var(--dur-fast) var(--ease);
}
.wpp-float:hover { transform: scale(1.07); }
.wpp-float svg { width: 30px; height: 30px; }

/* ---------- Animações ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-base) var(--ease) var(--reveal-delay, 0s), transform var(--dur-base) var(--ease) var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
.img-reveal { opacity: 0; transform: scale(1.04); transition: opacity 0.7s var(--ease), transform 0.9s var(--ease); }
.img-reveal.is-visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .img-reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ---------- Camada decorativa das seções creme ---------- */
body {
  background-image:
    radial-gradient(rgba(166, 69, 95, 0.045) 1px, transparent 1.3px),
    radial-gradient(rgba(194, 127, 145, 0.05) 1px, transparent 1.3px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
}
.site-header, .site-footer, .card, .step, .unit-card, details { background-image: none; }

.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}
.decor svg { width: 100%; height: 100%; display: block; }

.hero::before {
  background:
    radial-gradient(680px 460px at 92% 2%, rgba(166, 69, 95, 0.10), rgba(0, 0, 0, 0) 66%),
    radial-gradient(560px 420px at 2% 98%, rgba(200, 106, 96, 0.07), rgba(0, 0, 0, 0) 66%),
    radial-gradient(420px 320px at 55% 110%, rgba(194, 127, 145, 0.08), rgba(0, 0, 0, 0) 70%);
}

@media (max-width: 767px) {
  .decor { max-width: 130px; max-height: 130px; }
}
@media (prefers-reduced-motion: reduce) {
  .decor { transform: none !important; }
}

/* ---------- Carrossel de depoimentos ---------- */
.depo-carrossel { position: relative; margin-top: 2.4rem; }
.depo-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0.2rem 1.1rem;
  scrollbar-width: none;
}
.depo-track::-webkit-scrollbar { display: none; }
.depo {
  flex: 0 0 min(86%, 400px);
  scroll-snap-align: center;
  background: #fff;
  border-radius: var(--radius-card);
  border-top: 4px solid var(--navy-200);
  box-shadow: 0 10px 30px rgba(40, 41, 54, 0.07);
  padding: 1.8rem 1.6rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.depo-estrelas { color: #A0D8D6; letter-spacing: 0.2em; font-size: 1rem; }
.depo blockquote { font-size: 0.95rem; color: var(--ink-700); line-height: 1.65; }
.depo figcaption { margin-top: auto; font-weight: 700; font-size: 0.86rem; color: var(--navy-700); }
.depo-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(166, 69, 95, 0.16);
  background: #fff;
  color: var(--navy-700);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(40, 41, 54, 0.12);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.depo-seta:hover { background: var(--navy-100); transform: translateY(-50%) scale(1.06); }
.depo-seta svg { width: 20px; height: 20px; }
.depo-seta--prev { left: -10px; }
.depo-seta--next { right: -10px; }
@media (max-width: 767px) {
  .depo-seta { display: none; }
  .depo-track { padding-inline: 0; }
}

/* ---------- Decor em faixas navy e rodapé ---------- */
.site-footer { overflow: hidden; }
.site-footer > .container { position: relative; z-index: 1; }
.cta-band > *:not(.decor):not(.cell-ring) { position: relative; z-index: 1; }


/* ---------- Cartão-símbolo (enquanto não há fotos profissionais) ---------- */
.symbol-card { position: relative; width: min(100%, 430px); margin-inline: auto; }
.symbol-card::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: calc(var(--radius-card) + 10px);
  background: linear-gradient(155deg, var(--navy-200), var(--garnet-100));
  z-index: 0;
}
.symbol-frame {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-card) + 8px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #6E2436, #431521);
  box-shadow: 0 24px 60px rgba(40, 41, 54, 0.22);
  display: grid;
  place-items: center;
}
.symbol-frame .logo-rc { width: 44%; height: auto; }
.symbol-frame .logo-rc circle { stroke: rgba(200, 106, 96, 0.9); }
.symbol-frame .logo-rc text { fill: #F9F5F1; }
.symbol-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(340px 260px at 88% 8%, rgba(200, 106, 96, 0.18), rgba(0, 0, 0, 0) 70%),
    radial-gradient(300px 240px at 8% 94%, rgba(227, 198, 201, 0.16), rgba(0, 0, 0, 0) 70%);
}
.symbol-legenda {
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Pilares da filosofia */
.pilares { display: grid; gap: 1.3rem; margin-top: 2.4rem; }
@media (min-width: 700px) { .pilares { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pilares { grid-template-columns: repeat(4, 1fr); } }
.pilar {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--garnet-500);
  box-shadow: 0 10px 30px rgba(40, 41, 54, 0.06);
}
.pilar h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-700); }
.pilar p { font-size: 0.93rem; color: var(--ink-700); margin-top: 0.5rem; }

/* ---------- Fotos nos cartões ---------- */
.photo-card__inner {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: calc(var(--radius-card) + 8px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(40, 41, 54, 0.20);
  background: var(--garnet-100);
}
.photo-card__inner picture { display: block; }
.photo-card__inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------
   Camada award (GSAP + Lenis) — só ativa com html.gsap-on
   ---------------------------------------------------------------- */
.gsap-on .reveal { transition: none; }
.gsap-on .decor, .gsap-on .symbol-card { will-change: transform; }
.gsap-on .quote-band blockquote .q-word { display: inline-block; }
html.gsap-on { scroll-behavior: auto; }


/* ---------- Carrossel de fotos ---------- */
.fotos-carrossel { position: relative; margin-top: 2.2rem; }
.fotos-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 0.4rem 0.2rem 1.1rem; scrollbar-width: none;
}
.fotos-track::-webkit-scrollbar { display: none; }
.foto-slide {
  flex: 0 0 auto; height: 340px; scroll-snap-align: center; margin: 0;
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 12px 30px rgba(40, 41, 54, 0.10); background: #fff;
}
.foto-slide picture { display: block; height: 100%; }
.foto-slide img { height: 100%; width: auto; max-width: none; display: block; object-fit: cover; }
@media (max-width: 767px) { .foto-slide { height: 260px; } }

/* ---------- Marca (wordmark provisória até a logo oficial) ---------- */
.wm-name { font-family: var(--font-title); font-weight: 600; font-size: 1.35rem; letter-spacing: 0.01em; }
.wm-sub { letter-spacing: 0.26em; }
.logo-img { height: 44px; width: auto; display: block; }
.f-logo .logo-img { height: 50px; }
@media (max-width: 420px) { .logo-img { height: 36px; } }

/* Faixa de fatos sob o hero */
.fatos { display: grid; gap: 1px; background: var(--navy-200); border-radius: var(--radius-card); overflow: hidden; margin-top: 2.6rem; }
@media (min-width: 700px) { .fatos { grid-template-columns: repeat(3, 1fr); } }
.fato { background: #fff; padding: 1.3rem 1.4rem; }
.fato strong { display: block; font-family: var(--font-title); font-size: 1.25rem; color: var(--navy-700); }
.fato span { font-size: 0.9rem; color: var(--ink-700); }

/* Medos: cartões em forma de pensamento */
.medos { display: grid; gap: 1rem; margin-top: 1.6rem; }
@media (min-width: 700px) { .medos { grid-template-columns: repeat(2, 1fr); } }
.medo { background: #fff; border-left: 3px solid var(--garnet-500); border-radius: 0 var(--radius-card) var(--radius-card) 0; padding: 1.1rem 1.3rem; font-family: var(--font-title); font-size: 1.15rem; color: var(--navy-800); font-style: italic; }

/* Linha do tempo do acompanhamento */
.timeline { display: grid; gap: 1.6rem; margin-top: 2.4rem; position: relative; }
@media (min-width: 900px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.tl-item { position: relative; padding-top: 1.2rem; border-top: 2px solid var(--navy-200); }
.tl-item::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--garnet-500); }
.tl-item small { display: block; font-weight: 700; letter-spacing: 0.2em; color: var(--garnet-700); font-size: 0.75rem; margin-bottom: 0.4rem; }
.tl-item h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.tl-item p { font-size: 0.95rem; color: var(--ink-700); }

/* Condições: cartões com sintomas */
.cond-cards { display: grid; gap: 1.2rem; margin-top: 2.2rem; }
@media (min-width: 760px) { .cond-cards { grid-template-columns: repeat(2, 1fr); } }
.cond-card { background: #fff; border-radius: var(--radius-card); padding: 1.6rem 1.6rem 1.4rem; box-shadow: 0 10px 30px rgba(40, 41, 54, 0.06); display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none; color: inherit; transition: transform var(--dur-fast) var(--ease); }
.cond-card:hover { transform: translateY(-3px); }
.cond-card h3 { font-size: 1.25rem; }
.cond-card .sint { font-size: 0.88rem; color: var(--ink-500); }
.cond-card .sint b { color: var(--garnet-700); font-weight: 700; }
.cond-card .card-link { margin-top: auto; }

/* Diferenciais em lista com réguas */
.difs { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--navy-200); }
@media (min-width: 760px) { .difs { grid-template-columns: repeat(2, 1fr); column-gap: 3rem; } }
.dif { padding: 1.3rem 0; border-bottom: 1px solid var(--navy-200); display: grid; grid-template-columns: 2.2rem 1fr; gap: 0.6rem; }
.dif b { font-family: var(--font-title); font-size: 1.4rem; color: var(--garnet-500); line-height: 1; }
.dif h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.dif p { font-size: 0.95rem; color: var(--ink-700); }

/* Educação: blocos curtos */
.edu { display: grid; gap: 1.2rem; margin-top: 2.2rem; }
@media (min-width: 900px) { .edu { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 600px) and (max-width: 899px) { .edu { grid-template-columns: repeat(2, 1fr); } }
.edu-item { background: var(--cream-100); border-radius: var(--radius-card); padding: 1.4rem; }
.edu-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.edu-item p { font-size: 0.93rem; color: var(--ink-700); }

/* Paleta oficial: seções alternadas em rosa claro sobre base branca */
.section[style*="background:#fff"] { background: #F7F0F0 !important; }
