/* ============================================================
   Residencial Geriátrico Sagrada Família — Design System v3.0
   PIVOT SANTA INÊS · 2026-05-20
   Paleta: azul-marinho #1F3A5F + dourado sutil #B8860B + branco
   Tipografia: Allura (logo script) + Cormorant Garamond (títulos) + Inter (body)
   Layout: topbar tel+sociais · logo central · nav em faixa azul ·
           hero full-width foto · galeria 4x2 · cards com foto ·
           sticky WhatsApp redondo
   ============================================================ */

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

:root {
  /* NAVY — institucional Santa Inês */
  --navy:         #1F3A5F;
  --navy-dark:    #14283F;
  --navy-light:   #2E5A88;
  --navy-soft:    rgba(31, 58, 95, 0.08);

  /* GOLD — acento dos títulos de cards (mantido) */
  --gold:         #B8860B;
  --gold-light:   #D4AF37;
  --gold-dark:    #8B6508;

  /* NEUTROS limpos (não bege-osso · branco corporativo) */
  --bg:           #FFFFFF;
  --bg-soft:      #F8F8F6;
  --bg-alt:       #F2F2EE;
  --bg-deep:      #E8E8E4;

  --text:         #2A2A2A;
  --text-muted:   #6B6B6B;
  --text-light:   #9B9B9B;

  --ink:          #1A1A1A;
  --white:        #FFFFFF;

  --border:       #E0E0DC;
  --border-light: #EFEFEC;
  --border-dark:  #C5C5C0;

  /* TIPOGRAFIA */
  --font-script: 'Allura', cursive;
  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ESCALA */
  --fs-logo-script: clamp(2.6rem, 5vw, 4rem);
  --fs-logo-sub:    0.9rem;
  --fs-h1:          clamp(2rem, 3.5vw, 3rem);
  --fs-h2:          clamp(1.7rem, 2.8vw, 2.3rem);
  --fs-h3:          1.25rem;
  --fs-body:        1rem;
  --fs-small:       0.875rem;
  --fs-tiny:        0.78rem;
  --fs-eyebrow:     0.72rem;

  /* ESPAÇOS */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* LAYOUT */
  --max:     1280px;
  --narrow:  760px;
  --radius:    4px;
  --radius-pill: 999px;
  --radius-lg: 6px;

  /* SHADOWS */
  --shadow:       0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:    0 6px 18px rgba(0, 0, 0, 0.10);
  --shadow-deep:  0 18px 40px rgba(0, 0, 0, 0.18);

  /* TRANSITIONS */
  --t-fast: 0.2s ease-out;
  --t-base: 0.35s ease;
  --t-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: var(--navy-light); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }

/* Modos de acessibilidade */
body.contraste-alto { background: #000 !important; color: #FFF !important; }
body.contraste-alto a { color: #FFD700 !important; }
body.escala-cinza { filter: grayscale(100%); }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: 0;
}
h1 { font-size: var(--fs-h1); margin-bottom: var(--space-md); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); font-weight: 600; }
h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); font-weight: 600; }
h4 { font-size: 1rem; margin-bottom: var(--space-xs); font-weight: 600; }

p { margin: 0 0 var(--space-md) 0; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

a:not(.btn):not(.brand):not(.nav-link):focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  color: var(--navy);
}

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: var(--space-xs); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--navy);
}

.muted    { color: var(--text-muted); }
.muted-sm { color: var(--text-muted); font-size: var(--fs-small); }

/* ============================================================
   ORNAMENTO DECORATIVO (sob títulos · estilo Santa Inês)
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: var(--space-md) auto var(--space-xl);
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.ornament-icon {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container        { max-width: var(--max);    margin: 0 auto; padding: 0 var(--space-lg); }
.container-narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 var(--space-lg); }
.container-wide   { max-width: 1440px; margin: 0 auto; padding: 0 var(--space-md); }
section           { padding: var(--space-2xl) 0; }
section.alt       { background: var(--bg-soft); }
section.deep      { background: var(--bg-alt); }
.text-center      { text-align: center; }
.stack > * + *    { margin-top: var(--space-md); }

/* ============================================================
   A11Y BAR · discreta (acima do topbar)
   ============================================================ */
.a11y-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  padding: 4px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
}
.a11y-bar .a11y-label {
  margin-right: 4px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: var(--text-light);
}
.a11y-bar button {
  padding: 2px 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.7rem;
  border-radius: var(--radius);
  transition: all var(--t-fast);
  min-height: 24px;
}
.a11y-bar button:hover { border-color: var(--navy); color: var(--navy); }
.a11y-bar button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   TOPBAR institucional (modelo Santa Inês: tel à esq · ícones sociais à dir)
   ============================================================ */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  padding: 10px var(--space-lg);
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.topbar-contact-left {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.topbar-contact-left a {
  color: var(--text-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-contact-left a:hover { color: var(--navy); }
.topbar-sep { color: var(--border-dark); }

.topbar-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--t-fast);
  border: 1px solid var(--border);
}
.topbar-social a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   HEADER · LOGO CENTRALIZADO (modelo Santa Inês)
   ============================================================ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-md) 0 0;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }

.brand-block {
  text-align: center;
  padding: var(--space-md) var(--space-md) var(--space-lg);
}
.brand-block .brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  gap: 4px;
}
.brand-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-logo-sub);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.brand-logo {
  font-family: var(--font-script);
  font-size: var(--fs-logo-script);
  color: var(--navy);
  line-height: 1;
  margin-top: -8px;
}
.brand-emblem {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.brand-emblem img { width: 100%; height: auto; }

/* NAV em faixa azul-marinho (modelo Santa Inês) */
.nav-bar {
  background: var(--navy);
  border-top: 1px solid var(--navy-dark);
  border-bottom: 1px solid var(--navy-dark);
}
.nav-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-sm) var(--space-md);
}
.nav-bar a {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 4px;
  transition: color var(--t-fast);
  position: relative;
}
.nav-bar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t-base), left var(--t-base);
}
.nav-bar a:hover,
.nav-bar a[aria-current="page"] { color: var(--gold-light); }
.nav-bar a:hover::after,
.nav-bar a[aria-current="page"]::after { width: 100%; left: 0; }

.nav-toggle {
  display: none;
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius);
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
  margin: 4px 0;
}

/* ============================================================
   HERO FULL-WIDTH com foto (modelo Santa Inês)
   ============================================================ */
.hero-full {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  aspect-ratio: 16 / 6;
  background: linear-gradient(135deg, #4a5d6e 0%, #2d4356 50%, #4a5d6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  padding: var(--space-xl);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image.placeholder::after {
  content: '— fotografia autoral da fachada em produção —';
  opacity: 0.6;
}

/* HERO PITCH (texto centralizado abaixo da foto) */
.hero-pitch {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}
.hero-pitch-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
}
.hero-pitch-text strong,
.hero-pitch-text .accent {
  color: var(--navy-light);
  font-weight: 500;
}

/* 3 CTAs outline rounded (modelo Santa Inês) */
.hero-cta-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-xl);
}

/* ============================================================
   BOTÕES (modelo Santa Inês: outline rounded-full)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--t-base);
  min-height: 44px;
  text-decoration: none;
}
.btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-large { padding: 14px 32px; font-size: 0.94rem; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* ============================================================
   SEÇÕES institucionais (título centralizado + ornamento)
   ============================================================ */
.section-title-block {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-title-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
.section-title-block .ornament {
  margin: var(--space-sm) auto var(--space-md);
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.75;
  margin: 0 auto;
}

/* ============================================================
   GALERIA 4x2 (modelo Santa Inês: 8 placeholders)
   ============================================================ */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: var(--space-lg) auto;
  max-width: 1280px;
}
.galeria-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #6a7e8f 0%, #4a5d6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  padding: var(--space-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
}
.galeria-item.t-fachada    { background: linear-gradient(135deg, #5a6e7f 0%, #3a4d5e 100%); }
.galeria-item.t-jardim     { background: linear-gradient(135deg, #5a7a4e 0%, #3e5a35 100%); }
.galeria-item.t-sala       { background: linear-gradient(135deg, #7a6a5a 0%, #5a4d3e 100%); }
.galeria-item.t-refeitorio { background: linear-gradient(135deg, #8a7a6a 0%, #6a5d4e 100%); }
.galeria-item.t-quarto     { background: linear-gradient(135deg, #6a6a8a 0%, #4d4d6a 100%); }
.galeria-item.t-externa    { background: linear-gradient(135deg, #4e6e7a 0%, #2d4d5a 100%); }
.galeria-item.t-cozinha    { background: linear-gradient(135deg, #7a5a4e 0%, #5a3e2d 100%); }
.galeria-item.t-areas      { background: linear-gradient(135deg, #4e7e6e 0%, #2d5a4d 100%); }

.galeria-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-deep);
}
.galeria-item img { width: 100%; height: 100%; object-fit: cover; }
.galeria-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================================
   CARDS COM IMAGEM (modelo Santa Inês: atividades com foto colorida)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.card-img {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.card-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img-top {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, #8a7a6a 0%, #5a4d3e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.86rem;
  text-align: center;
  padding: var(--space-md);
}
.card-img-top.t-jardim    { background: linear-gradient(135deg, #6e8a4e 0%, #4d6a35 100%); }
.card-img-top.t-musica    { background: linear-gradient(135deg, #8a6e4e 0%, #6a4d35 100%); }
.card-img-top.t-leitura   { background: linear-gradient(135deg, #6e6e8a 0%, #4d4d6a 100%); }
.card-img-top.t-fisio     { background: linear-gradient(135deg, #4e8a8e 0%, #2d6a6e 100%); }
.card-img-top.t-festa     { background: linear-gradient(135deg, #a07e5e 0%, #80604e 100%); }
.card-img-top.t-externo   { background: linear-gradient(135deg, #5a7a8e 0%, #3e5a6e 100%); }
.card-img-top.t-medico    { background: linear-gradient(135deg, #5a8e9e 0%, #3e6e7e 100%); }
.card-img-top.t-enfermagem{ background: linear-gradient(135deg, #5a7e9e 0%, #3e5e7e 100%); }
.card-img-top.t-nutricao  { background: linear-gradient(135deg, #7e9e5a 0%, #5e7e3e 100%); }
.card-img-top.t-cuidadora { background: linear-gradient(135deg, #9e7e5a 0%, #7e5e3e 100%); }
.card-img-top.t-servicos  { background: linear-gradient(135deg, #7e7e9e 0%, #5e5e7e 100%); }
.card-img-top.t-publicacao{ background: linear-gradient(135deg, #6e6e6e 0%, #4d4d4d 100%); }

.card-img-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-img-body h3 {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}
.card-img-body p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  flex: 1;
}
.card-img-body .btn {
  margin-top: var(--space-md);
  align-self: flex-start;
}
.card-img-meta {
  font-size: var(--fs-tiny);
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

/* ============================================================
   TABELA / TIMELINE / FAQ / FORM (mantidos do v2.0 · adaptados)
   ============================================================ */
.table-acomodacoes { width: 100%; border-collapse: collapse; margin: var(--space-lg) 0; font-size: var(--fs-body); background: var(--white); border: 1px solid var(--border); }
.table-acomodacoes th, .table-acomodacoes td { padding: var(--space-md) var(--space-lg); text-align: left; border-bottom: 1px solid var(--border-light); }
.table-acomodacoes th { font-family: var(--font-serif); font-weight: 600; background: var(--bg-soft); color: var(--text); }
.table-acomodacoes tbody tr:last-child td { border-bottom: none; }
.table-acomodacoes tbody tr:hover { background: var(--bg-soft); }
.table-acomodacoes .valor { font-family: var(--font-serif); font-weight: 600; color: var(--navy); }

.timeline { list-style: none; padding: 0; margin: var(--space-lg) 0; }
.timeline li { display: grid; grid-template-columns: 90px 1fr; gap: var(--space-md); padding: var(--space-md) 0; border-bottom: 1px solid var(--border-light); align-items: baseline; }
.timeline li:last-child { border-bottom: none; }
.timeline-time { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); }

.faq-list { border-top: 1px solid var(--border); margin-top: var(--space-lg); }
.faq-item { border-bottom: 1px solid var(--border); padding: var(--space-md) 0; }
.faq-item summary { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--text); cursor: pointer; list-style: none; position: relative; padding: var(--space-sm) 2rem var(--space-sm) 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--navy); }
.faq-item[open] summary { color: var(--navy); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item-body { padding: var(--space-md) 2rem var(--space-md) 0; color: var(--text-muted); }

.form { display: flex; flex-direction: column; gap: var(--space-md); max-width: 600px; background: var(--white); padding: var(--space-xl); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: var(--fs-small); font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea { padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); color: var(--text); font-family: var(--font-sans); font-size: var(--fs-body); min-height: 44px; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-soft); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--fs-small); color: var(--text-muted); }
.form-consent input[type="checkbox"] { margin-top: 0.2rem; min-height: 20px; min-width: 20px; accent-color: var(--navy); }
.form-status { font-size: var(--fs-small); padding: var(--space-sm) 0; color: var(--navy); font-weight: 500; }

.map-card { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-lg); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); text-decoration: none; color: var(--text); transition: all var(--t-base); }
.map-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--navy); }
.map-card__icon { font-size: 2.5rem; color: var(--navy); }
.map-card__title { font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem; color: var(--text); }
.map-card__sub { color: var(--text-muted); font-size: var(--fs-small); }
.map-card__cta { color: var(--navy); font-weight: 500; font-size: var(--fs-small); margin-top: 0.4rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============================================================
   STICKY WHATSAPP REDONDO FLUTUANTE (modelo Santa Inês)
   ============================================================ */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  font-size: 1.6rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
  text-decoration: none;
}
.whatsapp-floating:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: var(--white);
}
.whatsapp-floating::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: pulse-whatsapp 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-whatsapp {
  0%   { transform: scale(1); opacity: 0.4; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   FOOTER institucional (RT em destaque · modelo Santa Inês)
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-2xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}
.site-footer a { color: var(--gold-light); transition: color var(--t-fast); }
.site-footer a:hover { color: var(--white); }

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-brand {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
  line-height: 1;
}
.footer-brand-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}
.footer-rt {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--fs-small);
}
.footer-rt-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-rt-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 2px;
}
.footer-rt-cred {
  font-size: var(--fs-tiny);
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 760px) {
  :root {
    --fs-logo-script: clamp(2.2rem, 8vw, 3rem);
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }
  .a11y-bar { padding: 4px 12px; gap: 6px; flex-wrap: wrap; }
  .topbar { padding: 8px var(--space-md); font-size: 0.78rem; }
  .topbar-inner { flex-direction: column; gap: 8px; }
  .nav-bar-inner { gap: 0; flex-direction: column; padding: 0; display: none; }
  .nav-bar-inner.open { display: flex; }
  .nav-bar a { padding: 12px; width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
  .site-header { position: relative; }
  .container, .container-narrow { padding: 0 var(--space-md); }
  section { padding: var(--space-xl) 0; }
  .hero-image { aspect-ratio: 4 / 3; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .card-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline li { grid-template-columns: 70px 1fr; gap: var(--space-sm); }
  .form { padding: var(--space-lg); }
  .whatsapp-floating { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .a11y-bar { display: none; }
  .galeria-grid { grid-template-columns: 1fr; }
}

/* PRINT */
@media print {
  .a11y-bar, .topbar, .site-footer, .whatsapp-floating, .nav-toggle, .nav-bar { display: none; }
  body { background: var(--white); color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .whatsapp-floating::before { animation: none; }
}
