/* ============================================================
   Dra. Paola Teruya | Clínica Médica & Geriatria
   Identidade: paleta da marca (creme + bege + taupe + vermelho)
   Tipografia: Lora (títulos) + Nunito Sans (texto/labels)
   Assinatura: tsuru (grou) da marca, símbolo de longevidade,
   como selo giratório e marca-d'água; molduras retas com sombra
   deslocada vermelha (linguagem do material gráfico original).
   ============================================================ */

:root {
  /* Paleta do manual (CMYK convertido), com tons AA derivados */
  --cream-50: #F7F3E9;      /* C7 M7 Y16 K0 */
  --sand-200: #D9C9B8;      /* C16 M21 Y27 K0 */
  --taupe-500: #917D67;     /* C38 M46 Y56 K8 */
  --taupe-700: #5E4E40;     /* taupe escurecido p/ texto AA */
  --red-500: #C0272D;       /* C16 M100 Y100 K9, vermelho do tsuru */
  --red-600: #A81F24;       /* CTA terra / hover */
  --red-700: #8C171B;       /* títulos e texto AA sobre creme */
  --ink-800: #3A322B;       /* texto corrido */

  /* WhatsApp: exclusivo de conversão */
  --wpp-green: #25D366;
  --wpp-green-deep: #0F7A3D; /* AA sobre branco p/ botões */

  --font-title: 'Lora', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;

  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --dur-fast: 0.25s;
  --dur-base: 0.6s;
  --dur-slow: 1.1s;

  --radius-card: 14px;
  --maxw: 1160px;
  --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-800);
  background: var(--cream-50);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red-700); text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; }

/* Transição de página (fade) */
body { opacity: 0; transition: opacity var(--dur-base) var(--ease); }
body.is-loaded { opacity: 1; }
body.is-leaving { opacity: 0; }

::selection { background: var(--sand-200); color: var(--ink-800); }

/* ---------- Tipografia ---------- */
h1, h2, h3, .serif {
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--red-700);
  line-height: 1.18;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 4.5vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h1 em, h2 em { font-style: italic; color: var(--taupe-700); }

.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe-700);
  display: inline-block;
  margin-bottom: 1rem;
}
.lead { font-size: 1.15rem; }
.muted { color: #6B5F53; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; overflow: hidden; }
.section--tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.grid-2 {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

/* ---------- Formas decorativas (círculos sol/enso da marca) ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.blob--sand  { background: var(--sand-200); opacity: 0.4; }
.blob--cream { background: #EFE6D2; }
.blob--red   { background: var(--red-500); opacity: 0.08; }
.blob--taupe { background: var(--taupe-500); opacity: 0.14; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--red-500); outline-offset: 3px; }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--wpp {
  background: var(--wpp-green-deep);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}
.btn--wpp:hover { background: #0C6A34; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.38); }

.btn--red {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(168, 31, 36, 0.22);
}
.btn--red:hover { background: var(--red-700); }

.btn--ghost {
  background: transparent;
  color: var(--red-700);
  box-shadow: inset 0 0 0 1.5px var(--red-500);
}
.btn--ghost:hover { background: rgba(192, 39, 45, 0.06); }

.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 233, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--dur-fast) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(58, 50, 43, 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(--red-700);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.brand-text { line-height: 1.2; }
.brand-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--red-700);
  display: block;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-700);
  display: block;
}
.brand-crm { display: none; }
@media (min-width: 1100px) {
  .brand-crm {
    display: block;
    font-size: 0.7rem;
    color: var(--taupe-700);
    letter-spacing: 0.06em;
    margin-top: 2px;
  }
}

.nav-main { margin-left: auto; }
.nav-main > ul { display: flex; align-items: center; gap: 0.25rem; }
.nav-main a.nav-link,
.has-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-800);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav-main a.nav-link:hover,
.has-dropdown > button:hover { background: rgba(145, 125, 103, 0.12); }
.nav-main a[aria-current="page"] { color: var(--red-700); background: rgba(192, 39, 45, 0.08); }
.nav-main a:focus-visible,
.has-dropdown > button:focus-visible { outline: 3px solid var(--red-500); outline-offset: 2px; }
.has-dropdown { position: relative; }
.has-dropdown svg { width: 14px; height: 14px; 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: 240px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 40px rgba(58, 50, 43, 0.14);
  padding: 0.5rem;
  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,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-800);
}
.dropdown a:hover { background: var(--cream-50); color: var(--red-700); }
.dropdown a[aria-current="page"] { color: var(--red-700); }

.header-cta { display: none; }
@media (min-width: 1180px) { .header-cta { display: inline-flex; } }
.nav-mobile-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--red-700);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle:focus-visible { outline: 3px solid var(--red-500); outline-offset: 2px; }

@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  /* Nota: backdrop-filter no header cria containing block p/ fixed;
     por isso o painel usa absolute relativo ao header sticky. */
  .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;
    transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease);
    margin-left: 0;
  }
  .site-header { position: sticky; }
  body.nav-open .nav-main { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  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.1rem; 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 { display: inline-flex; margin-top: 1.5rem; width: 100%; justify-content: center; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem); position: relative; overflow: hidden; }
.hero-credential {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--taupe-700);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-credential .dot { color: var(--sand-200); }
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-note { margin-top: 0.9rem; font-size: 0.88rem; color: #6B5F53; }

/* Moldura reta com sombra deslocada vermelha (assinatura da marca) */
.photo-card { position: relative; max-width: 460px; margin-inline: auto; }
.card-shadow {
  position: absolute;
  inset: 8% -14px -14px 8%;
  background: var(--red-500);
  opacity: 0.85;
  border-radius: var(--radius-card);
  z-index: 0;
  will-change: transform;
}
.photo-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(58, 50, 43, 0.18);
  background: #fff;
}
.photo { width: 100%; height: auto; }

/* Selo tsuru sobreposto: gira lentamente */
.selo-overlay {
  position: absolute;
  z-index: 2;
  width: clamp(96px, 12vw, 140px);
  height: auto;
  right: -28px;
  bottom: -24px;
  filter: drop-shadow(0 10px 24px rgba(58, 50, 43, 0.25));
}
.selo-spin { animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Cards de pilares ---------- */
.cards-3 {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 900px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 10px 34px rgba(58, 50, 43, 0.07);
  border-top: 3px solid var(--red-500);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(58, 50, 43, 0.12); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-50);
  display: grid;
  place-items: center;
  color: var(--red-600);
}
.card-icon svg { width: 28px; height: 28px; }
.card p { flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--red-700);
}
.card-link svg { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease); }
.card-link:hover svg { transform: translateX(4px); }
.card .btn { align-self: flex-start; }

/* ---------- Como funciona (passos) ---------- */
.steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: passo;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem 1.8rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(58, 50, 43, 0.06);
}
.step::before {
  counter-increment: passo;
  content: counter(passo, decimal-leading-zero);
  font-family: var(--font-title);
  font-style: italic;
  font-size: 2rem;
  color: var(--sand-200);
  display: block;
  margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; }

/* ---------- Modalidades (pills) ---------- */
.regions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1.5px solid var(--sand-200);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  color: var(--taupe-700);
  font-size: 0.95rem;
}
.region-pill svg { width: 18px; height: 18px; color: var(--red-600); }

/* ---------- Faixa CTA final ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--red-700), var(--red-500));
  border-radius: calc(var(--radius-card) + 8px);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band h2 em { color: var(--sand-200); }
.cta-band p { max-width: 560px; margin: 1rem auto 2rem; color: rgba(255, 255, 255, 0.92); }
.band-selo {
  position: absolute;
  width: 240px;
  height: auto;
  right: -60px;
  bottom: -70px;
  opacity: 0.14;
  pointer-events: none;
}

/* ---------- Faixa manifesto / citação ---------- */
.quote-band { text-align: center; position: relative; }
.quote-band blockquote {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  font-weight: 500;
  color: var(--red-700);
  line-height: 1.4;
  max-width: 820px;
  margin-inline: auto;
}
.quote-band blockquote em { font-style: italic; color: var(--taupe-700); }
.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-700);
}

/* ---------- FAQ (details/summary) ---------- */
.faq { max-width: 820px; margin: 3rem auto 0; display: grid; gap: 0.9rem; }
.faq details {
  background: var(--cream-50);
  border: 1px solid #EDE3D0;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow var(--dur-fast) var(--ease);
}
.faq details[open] { box-shadow: 0 12px 30px rgba(58, 50, 43, 0.08); background: #fff; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 3.2rem 1.2rem 1.4rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--red-700);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--red-500);
  transition: transform var(--dur-fast) var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:focus-visible { outline: 3px solid var(--red-500); outline-offset: -3px; }
.faq details p { padding: 0 1.4rem 1.3rem; }

/* ---------- Página interna: hero curto ---------- */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--taupe-700);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.breadcrumb a { color: var(--taupe-700); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--red-700); }

/* ---------- Blocos informativos ---------- */
.info-blocks {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .info-blocks { grid-template-columns: 1fr 1fr; } }
.info-block {
  background: var(--cream-50);
  border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
  border-left: 3px solid var(--sand-200);
}
.info-block:hover { border-left-color: var(--red-500); }
.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--red-600);
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 16px rgba(58, 50, 43, 0.08);
}
.mini-icon svg { width: 22px; height: 22px; }
.info-block h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.info-block p { font-size: 0.98rem; }

/* Lista com marcadores tsuru/ponto */
.dot-list { display: grid; gap: 0.9rem; }
.dot-list li { padding-left: 1.6rem; position: relative; }
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-500);
}

/* ---------- Selo marca-d'água ---------- */
.selo-watermark {
  position: absolute;
  width: 560px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ---------- Atendimento (modalidades) ---------- */
.city-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .city-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .city-cards { grid-template-columns: repeat(4, 1fr); } }
.city-card {
  background: var(--cream-50);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem;
  text-align: center;
  border-top: 3px solid var(--sand-200);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.city-card:hover { border-top-color: var(--red-500); transform: translateY(-4px); }
.city-card > svg { width: 34px; height: 34px; color: var(--red-600); margin: 0 auto 0.8rem; }
.city-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.city-card p { font-size: 0.95rem; }

.map-placeholder {
  margin-top: 2.5rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(58, 50, 43, 0.1);
}
.map-placeholder iframe { display: block; width: 100%; height: 380px; border: 0; }

.address-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: 0 12px 34px rgba(58, 50, 43, 0.08);
  border-left: 3px solid var(--red-500);
}

/* ---------- Contato ---------- */
.contact-channels { display: grid; gap: 1rem; margin-top: 2rem; }
.channel {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 8px 24px rgba(58, 50, 43, 0.06);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.channel:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(58, 50, 43, 0.11); }
.ch-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--cream-50);
  color: var(--red-600);
}
.ch-icon svg { width: 26px; height: 26px; }
.channel--wpp .ch-icon { background: rgba(37, 211, 102, 0.12); color: var(--wpp-green-deep); }
.channel h3 { font-size: 1.1rem; }
.channel p { font-size: 0.92rem; color: #6B5F53; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--taupe-700);
  color: #EFE8DC;
  padding: clamp(3rem, 7vw, 4.5rem) 0 1.5rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.f-logo img { width: 230px; height: auto; }
.f-crm { margin-top: 1.2rem; font-size: 0.92rem; line-height: 1.8; color: #DCD2C2; }
.f-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.f-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #F3EDE1;
  transition: background var(--dur-fast) var(--ease);
}
.f-social a:hover { background: var(--red-500); }
.f-social svg { width: 20px; height: 20px; }
.site-footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-200);
  margin-bottom: 1rem;
}
.site-footer ul { display: grid; gap: 0.5rem; }
.site-footer ul a { color: #EFE8DC; font-size: 0.95rem; }
.site-footer ul a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #CFC4B2;
}
.footer-disclaimer { font-size: 0.8rem; }

/* ---------- Botão flutuante WhatsApp ---------- */
.wpp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wpp-green-deep);
  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.08); }
.wpp-float:focus-visible { outline: 3px solid var(--red-500); outline-offset: 3px; }
.wpp-float svg { width: 30px; height: 30px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.img-reveal { opacity: 0; transform: scale(1.04); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.img-reveal.is-visible { opacity: 1; transform: scale(1); }

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