/* ============================================
   RECONSTRUIR — Clínica de Recuperação
   Design System & Styles
============================================ */

:root {
  /* Brand palette — Grupo Recuperar Vidas (azul-marinho + verde)
     Os nomes --navy-* / --gold-* / --cream-* foram mantidos por compatibilidade;
     os VALORES é que mudaram: --navy = azul primário, --gold = verde, --cream = claro. */
  --navy-900: #0d2b4e;
  --navy-800: #103a63;
  --navy-700: #1a5390;
  --navy-600: #2879c4;
  --navy-50: #eaf2fb;

  --gold-500: #5cae34;
  --gold-600: #4a9329;
  --gold-400: #8bc34a;
  --gold-100: #ecf6e1;

  --cream-50: #f6f9fc;
  --cream-100: #eaf1f8;
  --cream-200: #d7e3ef;

  --ink-900: #16273a;
  --ink-700: #34465c;
  --ink-500: #64768a;
  --ink-300: #9fb0c2;

  --white: #ffffff;

  /* Type — tudo sans-serif */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: var(--font-sans);
  --font-body: var(--font-sans);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(13, 43, 78, 0.05);
  --shadow-md: 0 4px 14px rgba(13, 43, 78, 0.08);
  --shadow-lg: 0 14px 40px rgba(13, 43, 78, 0.12);
  --shadow-xl: 0 24px 60px rgba(13, 43, 78, 0.18);
  --shadow-gold: 0 8px 24px rgba(92, 174, 52, 0.3);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Transitions */
  --t-fast: 180ms cubic-bezier(.4, 0, .2, 1);
  --t-base: 280ms cubic-bezier(.4, 0, .2, 1);
  --t-slow: 500ms cubic-bezier(.4, 0, .2, 1);
}

/* ============================================
   Base
============================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--gold-600); }

.italic-accent {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 500;
}

/* Gold underline accent */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 1rem;
}

.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.kicker.centered::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.kicker.on-dark { color: var(--gold-400); }
.kicker.on-dark::before,
.kicker.on-dark::after { background: var(--gold-400); }

/* ============================================
   Buttons
============================================ */

.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: all var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--white);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(64, 145, 108, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-500);
  border-color: rgba(64, 145, 108, 0.5);
}

.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1eb858;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* ============================================
   Navbar
============================================ */

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0 12px;
  transition: all var(--t-base);
  background: transparent;
}

/* Pílula branca arredondada da navbar */
.navbar-custom .container {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  padding: 11px 14px 11px 26px;
  transition: all var(--t-base);
}

.navbar-custom.scrolled {
  padding: 8px 0;
  backdrop-filter: blur(20px);
}

.navbar-custom.scrolled .container {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(12, 42, 28, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 2px 8px rgba(64, 145, 108, 0.3);
}

.nav-logo:hover { color: var(--navy-700); }

.nav-logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-700);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--navy-700);
  background: var(--navy-50);
}

.nav-links a.active {
  color: var(--navy-700);
}

/* Pílula de contato "Atendimento 24h" à direita da navbar */
.nav-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 7px 22px 7px 8px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(12, 42, 28, 0.25);
  transition: all var(--t-base);
}
.nav-cta-pill:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12, 42, 28, 0.32);
}
.nav-cta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-cta-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-cta-text small {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}
.nav-cta-text strong { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em; }

/* Variante "Doe agora": pílula verde sólida */
.nav-cta-doar {
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--gold-600) 100%);
  box-shadow: var(--shadow-gold);
  padding: 9px 22px 9px 9px;
}
.nav-cta-doar:hover { box-shadow: 0 12px 26px rgba(92, 174, 52, 0.4); }
.nav-cta-doar .nav-cta-icon { background: rgba(255, 255, 255, 0.22); }
.nav-cta-doar .nav-cta-text strong { font-size: 1rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--navy-800);
  font-size: 1.5rem;
  padding: 8px;
}

/* ============================================
   Hero
============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 60px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #0d2b4e 0%, #103a63 50%, #2879c4 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(92, 174, 52, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(40, 121, 196, 0.4), transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-image-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--navy-800) 0%, transparent 30%),
    repeating-linear-gradient(135deg, rgba(92, 174, 52, 0.08) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #1a5390 0%, #5cae34 100%);
  opacity: 0.5;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero h1 {
  color: var(--white);
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Feature cards — faixa sobreposta ao hero */
.feature-strip-section {
  position: relative;
  z-index: 5;
  margin-top: -110px;
  padding-bottom: 70px;
  background: transparent;
}

.stats-band-section {
  padding: 10px 0 0;
}

.help-banner-section {
  padding: 26px 0 90px;
}

.stats-band-section .stats-band,
.help-banner-section .help-banner {
  margin-top: 0;
}

@media (max-width: 991px) {
  .feature-strip-section { margin-top: -70px; padding-bottom: 50px; }
}
@media (max-width: 640px) {
  .feature-strip-section { margin-top: -48px; padding-bottom: 40px; }
  .help-banner-section { padding: 20px 0 60px; }
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px 24px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
  border: 1px solid rgba(64, 145, 108, 0.08);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--navy-800);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  margin-bottom: 16px;
  transition: all var(--t-base);
}

.feature-icon svg{
  color: #FFFFFF;
}

.feature-card:hover .feature-icon {
  background: var(--gold-500);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}

.feature-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}

.feature-card .feature-dot {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--t-base);
}

.feature-card:hover .feature-dot {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Stats Section (dark band)
============================================ */

.stats-band {
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-lg);
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(64, 145, 108, 0.18) 0%, rgba(64, 145, 108, 0) 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(64, 145, 108, 0.12) 0%, rgba(64, 145, 108, 0) 70%);
  pointer-events: none;
}

.stats-band::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    linear-gradient(270deg, rgba(15, 31, 71, 0) 0%, var(--navy-800) 100%),
    repeating-linear-gradient(135deg, rgba(64, 145, 108, 0.06) 0 1px, transparent 1px 14px);
  opacity: 1;
  pointer-events: none;
}

.stats-band > * { position: relative; z-index: 1; }

.stats-band h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  max-width: 420px;
}

.stats-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.stat-item {
  border-left: 2px solid rgba(64, 145, 108, 0.4);
  padding-left: 16px;
}

.stat-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-400);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* ============================================
   Help Banner
============================================ */

.help-banner {
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-600) 100%);
  border-radius: var(--r-pill);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-gold);
}

.help-banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.help-banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 42, 28, 0.15);
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.help-banner strong {
  font-size: 0.95rem;
  display: block;
}

.help-banner small {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* ============================================
   Section: About / Story
============================================ */

.section {
  padding: 100px 0;
  position: relative;
}

.section-lg { padding: 120px 0; }

.about-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 460px;
  position: relative;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(135deg, rgba(92, 174, 52, 0.3) 0%, rgba(13, 43, 78, 0.4) 100%),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #2879c4 0%, #103a63 100%);
}
.about-image-seal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(12, 42, 28, 0.85);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold-400);
  border: 2px solid rgba(64, 145, 108, 0.3);
}

.about-image-seal strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold-400);
}

.about-image-seal span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  margin-top: 4px;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-200);
  transition: all var(--t-base);
}

.pillar-item:hover {
  border-color: var(--navy-600);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pillar-item:hover .pillar-icon {
  background: var(--gold-500);
  color: var(--white);
}

.pillar-item h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.pillar-item p {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   Sobre a Clínica (features + stats + foto)
============================================ */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-50);
  color: var(--navy-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 1.3rem;
}
.about-badge svg { color: var(--navy-600); }

.about-section .about-lead {
  margin-top: 1.2rem;
  color: var(--ink-500);
  max-width: 540px;
}
.about-section .about-lead p:last-child { margin-bottom: 0; }

/* Linha de 4 pilares (ícone + rótulo) */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.2rem;
}
.about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.af-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  transition: all var(--t-base);
}
.about-feature:hover .af-icon {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: var(--white);
  transform: translateY(-3px);
}
.af-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.3;
}

/* Linha de 4 indicadores (cards) */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 1.8rem;
}
.about-stat {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--t-base);
}
.about-stat:hover {
  border-color: var(--navy-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.as-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--white);
  color: var(--navy-600);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2px;
}
.about-stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy-800);
}
.about-stat small {
  font-size: 0.68rem;
  color: var(--ink-500);
  line-height: 1.3;
}
.about-stat small.as-only {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 2px;
}

/* Foto + faixa de citação */
.about-photo-wrap { position: relative; }
.about-photo {
  height: 460px;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-quote {
  position: relative;
  margin: -54px 0 0 auto;
  width: calc(100% - 40px);
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-quote .aq-mark {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 0.7;
  color: var(--gold-400);
  flex-shrink: 0;
}
.about-quote p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
}
.about-quote .accent { color: var(--gold-400); font-style: italic; }

@media (max-width: 991px) {
  .about-features { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-photo { height: 380px; }
}
@media (max-width: 575px) {
  .about-features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-quote { width: 100%; margin-top: -40px; }
}

/* ============================================
   Treatments (dark section)
============================================ */

.treatments-section {
  background: #f3f5f0;
  color: var(--ink-700);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.treatments-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(64, 145, 108, 0.06), transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(64, 145, 108, 0.06), transparent 40%);
  pointer-events: none;
}

.treatments-section .container { position: relative; z-index: 1; }

.treatments-section h2 {
  color: var(--navy-800);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 0.8rem;
}

.treatments-section h2 .accent,
.treatments-section h2 .italic-accent {
  color: var(--navy-600);
  font-style: italic;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 3rem 0;
}

/* Card horizontal: ícone à esquerda, texto, seta à direita */
.treatment-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-md);
  padding: 22px 22px;
  transition: all var(--t-base);
  cursor: pointer;
}

.treatment-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-600);
  box-shadow: var(--shadow-lg);
}

.treatment-ico {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--navy-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  transition: all var(--t-base);
}
.treatment-card:hover .treatment-ico {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: var(--white);
}

.treatment-body {
  flex: 1 1 auto;
  min-width: 0;
}
.treatment-body h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.treatment-body p {
  font-size: 0.8rem;
  color: var(--ink-500);
  line-height: 1.45;
  margin: 0;
}

.treatment-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-50);
  color: var(--navy-700);
  display: grid;
  place-items: center;
  transition: all var(--t-base);
}
.treatment-card:hover .treatment-arrow {
  background: var(--navy-700);
  color: var(--white);
  transform: translateX(3px);
}

.treatments-cta {
  text-align: center;
}

/* ============================================
   Blog
============================================ */

.blog-section {
  background: var(--cream-50);
  padding: 110px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.blog-header h2 {
  max-width: 620px;
  margin: 0 auto 1rem;
}

.blog-header p {
  color: var(--ink-500);
  max-width: 480px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--cream-200);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-600);
}

.blog-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-image-1 {
  background:
    linear-gradient(180deg, rgba(234, 242, 251, 0) 0%, rgba(234, 242, 251, 0.4) 100%),
    repeating-linear-gradient(45deg, rgba(40, 121, 196, 0.1) 0 3px, transparent 3px 16px),
    linear-gradient(135deg, #2879c4, #5cae34 60%, #1a5390);
}

.blog-image-2 {
  background:
    linear-gradient(180deg, rgba(13, 43, 78, 0.2) 0%, rgba(92, 174, 52, 0.3) 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #103a63, #5cae34 70%, #8bc34a);
}

.blog-image-3 {
  background:
    linear-gradient(180deg, rgba(92, 174, 52, 0.2) 0%, rgba(13, 43, 78, 0.3) 100%),
    repeating-linear-gradient(-30deg, rgba(40, 121, 196, 0.1) 0 3px, transparent 3px 16px),
    linear-gradient(135deg, #2879c4, #4a9329 50%, #1a5390);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-body { padding: 28px 26px; }

.blog-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy-800);
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 18px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--cream-200);
  font-size: 0.78rem;
  color: var(--ink-300);
}

.blog-read-more {
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}

.blog-read-more:hover {
  color: var(--gold-600);
  gap: 10px;
}

/* ============================================
   CTA Band
============================================ */

.cta-band {
  padding: 80px 0;
  background: var(--cream-50);
}

.cta-inner {
  background: linear-gradient(105deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border-radius: var(--r-lg);
  padding: 56px 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 145, 108, 0.15), transparent 70%);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cta-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.3);
}

.cta-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
  max-width: 380px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer
============================================ */

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--t-base);
}

.social-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h6 {
  font-family: var(--font-sans);
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all var(--t-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-contact svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover { color: var(--gold-400); }

/* ============================================
   Animations
============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.4, 0, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 100ms; }
.reveal.d2 { transition-delay: 200ms; }
.reveal.d3 { transition-delay: 300ms; }
.reveal.d4 { transition-delay: 400ms; }
.reveal.d5 { transition-delay: 500ms; }

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all var(--t-base);
  animation: pulse 2s infinite;
}

.float-wa:hover {
  transform: scale(1.08);
  color: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================
   Responsive
============================================ */

@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: var(--navy-800);
    padding: 20px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xl);
    margin-top: 8px;
  }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-band::after,
  .stats-band::before { display: none; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 0; }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    text-align: center;
    gap: 28px;
  }
  .cta-content { flex-direction: column; text-align: center; gap: 18px; }
  .cta-actions { align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Help banner: layout mobile mais compacto e centralizado */
  .help-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    border-radius: var(--r-lg);
    padding: 18px 20px;
    gap: 14px;
  }
  .help-banner-text {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .help-banner-icon { margin: 0 auto; }
  .help-banner .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 640px) {
  .hero { padding: 110px 0 40px; }
  .feature-strip { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .stats-band { padding: 32px 24px; }
  .about-image { height: 340px; }
  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }

  /* CTA band — garante visibilidade e legibilidade em telas pequenas */
  .cta-band { padding: 50px 0; }
  .cta-inner {
    padding: 32px 22px;
    border-radius: var(--r-md);
    gap: 22px;
  }
  .cta-inner::before { display: none; }
  .cta-mark { width: 60px; height: 60px; }
  .cta-mark svg { width: 26px; height: 26px; }
  .cta-content h3 { font-size: 1.2rem; line-height: 1.3; }
  .cta-content p { font-size: 0.85rem; }
  .cta-actions { width: 100%; gap: 10px; }
  .cta-actions .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.88rem;
  }

  /* Help banner ainda mais compacto em telas pequenas */
  .help-banner { padding: 16px; margin-top: 16px; }
  .help-banner strong { font-size: 0.95rem; }
  .help-banner small { font-size: 0.78rem; line-height: 1.4; }
}

/* ============================================
   Integrações com componentes legados
============================================ */

/* Logo real dentro da navbar */
.nav-logo-img {
  max-height: 46px;
  width: auto;
  display: block;
}
.navbar-custom.scrolled .nav-logo-img { max-height: 40px; }

/* Dropdown no menu desktop */
.nav-links .dropdown-menu {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-md);
  padding: 8px;
  margin-top: 12px;
  box-shadow: var(--shadow-lg);
}
.nav-links .dropdown-menu .dropdown-item {
  color: var(--ink-700);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--t-fast);
}
.nav-links .dropdown-menu .dropdown-item:hover {
  background: var(--navy-50);
  color: var(--navy-700);
}

/* Vídeo de fundo do hero */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(12,42,28,0.97) 0%,
      rgba(12,42,28,0.90) 28%,
      rgba(12,42,28,0.60) 55%,
      rgba(12,42,28,0.20) 80%,
      rgba(12,42,28,0.05) 100%),
    linear-gradient(180deg, rgba(12,42,28,0.35) 0%, rgba(12,42,28,0) 35%);
}
@media (max-width: 768px) {
  .hero-video-overlay {
    background:
      linear-gradient(90deg, rgba(12,42,28,0.92) 0%, rgba(12,42,28,0.78) 60%, rgba(12,42,28,0.55) 100%),
      linear-gradient(180deg, rgba(12,42,28,0.3) 0%, rgba(12,42,28,0) 40%);
  }
}

/* Seções utilitárias complementares */
.units-section {
  background: var(--cream-50);
  padding: 90px 0;
}
.unit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.unit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-600);
}
.unit-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 20px;
}
.unit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--navy-800);
}
.unit-card p {
  color: var(--ink-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Clinics (galeria) cards — usando imagens reais */
.clinics-section {
  padding: 100px 0;
  background: var(--white);
}
.clinics-header {
  text-align: center;
  margin-bottom: 3rem;
}
.clinics-header h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
}
.clinics-header p {
  color: var(--ink-500);
  max-width: 720px;
  margin: 0 auto;
}
.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 2.5rem;
}
.clinic-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--cream-200);
  display: flex;
  flex-direction: column;
}
.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-600);
}
.clinic-card .clinic-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.clinic-card .clinic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.clinic-card:hover .clinic-image img { transform: scale(1.05); }
.clinic-card .clinic-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.clinic-card .clinic-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.clinic-card .clinic-body h4 {
  font-size: 1.12rem;
  margin-bottom: 4px;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.clinic-pin { color: var(--navy-600); display: inline-flex; flex-shrink: 0; }
.clinic-card .clinic-body .clinic-loc {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-200);
}
.clinic-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.clinic-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--ink-700);
}
.clinic-feats li svg { color: var(--navy-600); flex-shrink: 0; }
.clinic-card .clinic-body .clinic-cta {
  margin-top: auto;
  justify-content: center;
  color: var(--navy-700);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--r-pill);
  transition: all var(--t-base);
}
.clinic-card .clinic-body .clinic-cta:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}

.clinics-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--t-base);
}
.clinics-all-link:hover { color: var(--navy-900); gap: 12px; }

/* Depoimentos */
.testimonials-section {
  background: var(--cream-50);
  padding: 100px 0;
}
.testimonial-card {
  background: var(--white) !important;
  border: 1px solid var(--cream-200) !important;
  border-radius: var(--r-md) !important;
}
.testimonial-card .rating { color: var(--gold-500); }

/* FAQ */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}
.faq-section .accordion-button {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy-800) !important;
  background: var(--cream-50) !important;
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 18px 20px;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--navy-800) !important;
  color: var(--white) !important;
}
.faq-section .accordion-button:focus { box-shadow: var(--shadow-md) !important; }
.faq-section .accordion-body {
  padding: 18px 20px;
  color: var(--ink-500);
  background: transparent;
}

/* Botão Bootstrap-like re-aplicado para compat com outros templates */
.btn-padrao-nova {
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--white);
  border: 1.5px solid var(--gold-500);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.btn-padrao-nova:hover {
  color: var(--white);
  transform: translateY(-2px);
}

/* Menu mobile — já existe no site, apenas atualizamos cores */
.mobile-menu-container {
  background: var(--navy-900);
  color: var(--white);
}
.mobile-menu-container .nav-link { color: rgba(255,255,255,0.85) !important; }
.mobile-menu-container .nav-link:hover { color: var(--gold-400) !important; }
.mobile-menu-container .btn-close { filter: invert(1); }
.mobile-menu-container .dropdown-item { color: rgba(255,255,255,0.7); }
.mobile-menu-container .dropdown-submenu { display: none; padding-left: 0; }
.mobile-menu-container .dropdown-submenu.open { display: block; }
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  display: none;
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu-container {
  position: fixed; top: 0; right: -100%;
  width: 86%; max-width: 380px; height: 100vh;
  z-index: 1050;
  overflow-y: auto;
  transition: right var(--t-base);
}
.mobile-menu-container.open { right: 0; }

/* Cookies + modal search: leves ajustes */
.box-cookies {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  border-top-color: rgba(255,255,255,0.1) !important;
}
.box-cookies a { color: var(--gold-400); }
.box-cookies .btn-primary {
  background: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
  color: var(--white) !important;
}

/* Formulário de contato */
.contact-form .form-control {
  border: 1px solid var(--cream-200);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
}
.contact-form .form-control:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(64, 145, 108,0.15);
}

@media (max-width: 991px) {
  .clinics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .clinics-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Páginas internas — hero compacto + breadcrumb
============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 70px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, #3a5a9e 100%);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(64, 145, 108, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 58, 122, 0.4), transparent 50%);
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: -1;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p.lead {
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  font-size: 1.05rem;
}
.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}
.page-hero .breadcrumb a { color: #fff!important; }
.page-hero .breadcrumb a:hover { color: var(--gold-400); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }

/* ============================================
   Article cards (blog-all)
============================================ */
.article-list-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-200);
  overflow: hidden;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: row;
}
.article-list-card:hover {
  border-color: var(--navy-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.article-list-card .thumb {
  flex: 0 0 38%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--cream-100);
}
.article-list-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.article-list-card:hover .thumb img { transform: scale(1.04); }
.article-list-card .body {
  flex: 1;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
}
.article-list-card .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--ink-300);
}
.article-list-card .meta .cat {
  background: var(--navy-800);
  color: var(--gold-400);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.68rem;
}
.article-list-card h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.article-list-card h2 a { color: var(--navy-800); }
.article-list-card h2 a:hover { color: var(--gold-600); }
.article-list-card p {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.article-list-card .read-link {
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.85rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}
.article-list-card .read-link:hover { gap: 10px; }
@media (max-width: 640px) {
  .article-list-card { flex-direction: column; }
  .article-list-card .thumb { flex: 0 0 200px; width: 100%; }
}

/* ============================================
   Article single (blog-info)
============================================ */
.article-single {
  background: var(--cream-50);
  padding: 60px 0 80px;
}
.article-hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}
.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-700);
}
.article-content p { margin-bottom: 1.25rem; }
.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy-800);
}
.article-content h2 { font-size: 1.6rem; }
.article-content h3 { font-size: 1.35rem; }
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}
.article-content a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 6px 0 6px 20px;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink-500);
}
.article-content ul,
.article-content ol { margin-bottom: 1.25rem; padding-left: 1.25rem; }

.share-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.share-row .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: transform var(--t-fast);
}
.share-row .share-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  z-index: 2000;
  transition: width 0.08s linear;
}

/* Sidebar blog */
.sidebar-box {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-200);
  padding: 24px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-box h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-800);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-400);
  display: inline-block;
}
.sidebar-box .cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-100);
  color: var(--ink-700);
  font-size: 0.9rem;
  transition: color var(--t-fast);
}
.sidebar-box .cat-item:hover { color: var(--gold-600); padding-left: 4px; }
.sidebar-box .cat-item:last-child { border-bottom: 0; }
.sidebar-box .cat-item svg { color: var(--gold-500); flex-shrink: 0; }

.sidebar-box .post-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-100);
}
.sidebar-box .post-item:last-child { border-bottom: 0; }
.sidebar-box .post-item img {
  width: 70px;
  height: 70px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-box .post-item .meta {
  font-size: 0.75rem;
  color: var(--ink-300);
  margin-bottom: 2px;
}
.sidebar-box .post-item h5 {
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
}
.sidebar-box .post-item h5 a { color: var(--navy-800); }
.sidebar-box .post-item h5 a:hover { color: var(--gold-600); }

/* ============================================
   Formulário de contato
============================================ */
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
}
.form-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.form-card label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}
.form-card .form-control,
.form-card .form-select {
  border: 1px solid var(--cream-200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  background: var(--cream-50);
  transition: all var(--t-fast);
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(64, 145, 108,0.15);
  background: var(--white);
}

.contact-info-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 145, 108,0.18), transparent 70%);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}
.contact-info-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  position: relative;
}
.contact-info-card .contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.contact-info-card .contact-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(64, 145, 108,0.15);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-card .contact-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  font-weight: 600;
}
.contact-info-card .contact-item a { color: rgba(255,255,255,0.85); }
.contact-info-card .contact-item a:hover { color: var(--gold-400); }

/* ============================================
   Clínica — info (single)
============================================ */
.clinic-gallery {
  padding: 40px 0 0;
}
.clinic-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.clinic-gallery-grid .main-img,
.clinic-gallery-grid .thumb-stack {
  min-height: 420px;
}
.clinic-gallery-grid .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.clinic-gallery-grid .thumb-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.clinic-gallery-grid .thumb-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .clinic-gallery-grid { grid-template-columns: 1fr; }
  .clinic-gallery-grid .thumb-stack { display: none; }
  .clinic-gallery-grid .main-img,
  .clinic-gallery-grid .thumb-stack { min-height: 280px; }
}

.clinic-body-section {
  background: var(--cream-50);
  padding: 60px 0 90px;
}
.clinic-content {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 44px;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
}
.clinic-content h1 { font-size: 2rem; margin-bottom: 1.25rem; }
.clinic-content .description {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.8;
}
.clinic-content .description h2 { font-size: 1.5rem; margin-top: 2rem; }
.clinic-content .description h3 { font-size: 1.25rem; margin-top: 1.5rem; }
.clinic-content .description img { border-radius: var(--r-md); margin: 1rem 0; }

/* ============================================
   Paginação customizada
============================================ */
.pagination-custom {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
}
.pagination-custom .page-item a,
.pagination-custom .page-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--cream-200);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--t-fast);
}
.pagination-custom .page-item a:hover {
  border-color: var(--navy-600);
  color: var(--gold-600);
}
.pagination-custom .page-item.active a,
.pagination-custom .page-item.active span {
  background: var(--navy-800);
  color: var(--gold-400);
  border-color: var(--navy-800);
}
.pagination-custom .page-item.disabled span {
  color: var(--ink-300);
  background: transparent;
  border-color: transparent;
}

/* ============================================
   GRUPO RECUPERAR VIDAS — Seções de doação
============================================ */

/* ---- Hero: faixa de selos de confiança ---- */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 2rem;
}
.hero-trust .ht-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-800);
}
.hero-trust .ht-item svg { color: var(--gold-500); flex: 0 0 auto; }
@media (max-width: 991px) {
  .hero-home .hero-trust .ht-item { color: rgba(255,255,255,.92); }
  .hero-home .hero-trust .ht-item svg { color: var(--gold-400); }
}

/* Destaques de cor reutilizáveis nos títulos */
.hl-blue  { color: var(--navy-600); }
.hl-green { color: var(--gold-500); }

/* ---- Passos (Doar é o primeiro passo) — texto à esq. + cards à dir. ---- */
.steps-section { padding: 96px 0; background: var(--white); }
.steps-layout {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  gap: 2.8rem;
  align-items: center;
}
.steps-intro .steps-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold-600); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
}
.steps-intro .steps-kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold-500); }
.steps-intro h2 { color: var(--navy-900); margin: 0 0 1rem; }
.steps-intro p { color: var(--ink-500); margin: 0; }

.steps-cards { display: flex; align-items: stretch; gap: .4rem; }
.step-card {
  flex: 1 1 0; min-width: 0;
  text-align: center;
}
.step-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  margin-bottom: 2.2rem;
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-num {
  position: absolute;
  top: 8px; left: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff; font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.step-card:nth-child(4n+1) .step-num { background: var(--navy-600); }
.step-card:nth-child(4n+3) .step-num { background: var(--navy-600); }
.step-card:nth-child(4n+5) .step-num,
.step-card:nth-child(4n+7) .step-num { background: var(--gold-500); }
.step-card:nth-child(even) .step-num { background: var(--gold-500); }
.step-ico {
  width: 58px; height: 58px; margin: -52px auto 1rem;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-md);
}
.step-card:nth-child(odd) .step-ico { color: var(--navy-600); }
.step-card:nth-child(even) .step-ico { color: var(--gold-600); }
.step-card h3 { font-size: 1.02rem; color: var(--navy-900); margin: 0 0 .5rem; }
.step-card:nth-child(3) h3 { color: var(--navy-600); }
.step-card p { font-size: .85rem; color: var(--ink-500); margin: 0; line-height: 1.55; }
.step-arrow {
  flex: 0 0 auto; align-self: flex-start;
  margin-top: 16%;
  color: var(--navy-600); opacity: .5;
}
@media (max-width: 991px) {
  .steps-layout { grid-template-columns: 1fr; gap: 2rem; }
  .steps-intro { text-align: center; max-width: 640px; margin: 0 auto; }
  .steps-intro .steps-kicker { justify-content: center; }
  .steps-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; }
  .step-arrow { display: none; }
}
@media (max-width: 520px) { .steps-cards { grid-template-columns: 1fr; } }

/* ---- Doação: PIX + Transparência ---- */
.donate-section { padding: 96px 0; background: var(--cream-50); }
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (max-width: 991px) { .donate-grid { grid-template-columns: 1fr; gap: 2rem; } }

.pix-card, .transp-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 2.2rem;
}
.pix-card h3, .transp-card h3 { color: var(--navy-900); font-size: 1.35rem; margin: 0 0 .4rem; }
.pix-card > p { color: var(--ink-500); margin: 0 0 1.6rem; }

.pix-flex { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; }
.pix-qr {
  flex: 0 0 auto; width: 168px; height: 168px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-50); border: 1px dashed var(--cream-200);
  border-radius: var(--r-md); overflow: hidden;
}
.pix-qr img { width: 100%; height: 100%; object-fit: contain; }
.pix-qr svg { color: var(--ink-300); }
.pix-info { flex: 1 1 220px; min-width: 220px; }
.pix-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-300); font-weight: 700; }
.pix-key-row {
  display: flex; align-items: center; gap: .5rem;
  background: var(--cream-50); border: 1px solid var(--cream-200);
  border-radius: var(--r-sm); padding: .65rem .8rem; margin: .4rem 0 1rem;
}
.pix-key-row code { font-size: .95rem; color: var(--navy-900); font-weight: 600; word-break: break-all; flex: 1; background: none; }
.pix-copy {
  flex: 0 0 auto; border: 0; cursor: pointer;
  background: var(--navy-600); color: #fff;
  border-radius: var(--r-sm); padding: .45rem .7rem; font-size: .8rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: background var(--t-fast);
}
.pix-copy:hover { background: var(--navy-700); }
.pix-copy.copied { background: var(--gold-500); }
.pix-titular { font-size: .82rem; color: var(--ink-500); }
.pix-titular strong { color: var(--navy-800); }
.pix-lock {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1.4rem;
  color: var(--gold-600); font-size: .82rem; font-weight: 600;
  background: var(--gold-100); border-radius: var(--r-pill);
  padding: .4rem .9rem;
}

/* Transparência */
.transp-card h3 { color: var(--navy-900); }
.transp-body { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: start; }
.transp-stats { display: flex; flex-direction: column; gap: 1.3rem; }
.transp-stat { display: flex; align-items: center; gap: .9rem; text-align: left; }
.transp-stat .ts-ico {
  width: 52px; height: 52px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid var(--navy-50);
}
.transp-stat:nth-child(odd) .ts-ico  { color: var(--navy-600); background: var(--navy-50); }
.transp-stat:nth-child(even) .ts-ico { color: var(--gold-600); background: var(--gold-100); border-color: var(--gold-100); }
.transp-stat strong { display: block; font-size: 1.3rem; color: var(--navy-900); line-height: 1.1; }
.transp-stat .ts-label { color: var(--ink-700); font-size: .82rem; font-weight: 600; }
.transp-stat .ts-sub { color: var(--ink-300); font-size: .72rem; }

.transp-dest { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-md); padding: 1.2rem; }
.transp-bars-title { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-800); font-weight: 700; margin-bottom: 1rem; }
.transp-bar { margin-bottom: .9rem; }
.transp-bar .tb-head { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ink-700); margin-bottom: .3rem; font-weight: 600; }
.tb-track { height: 8px; border-radius: var(--r-pill); background: var(--cream-100); overflow: hidden; }
.transp-bar:nth-child(odd) .tb-fill  { background: var(--navy-600); }
.transp-bar:nth-child(even) .tb-fill { background: var(--gold-500); }
.tb-fill { height: 100%; border-radius: var(--r-pill); }
.transp-report { display: inline-flex; align-items: center; gap: .35rem; margin-top: .6rem; font-size: .82rem; font-weight: 600; color: var(--navy-600); }
@media (max-width: 700px) { .transp-body { grid-template-columns: 1fr; } }

/* ---- Mural de apoiadores ---- */
.supporters-section { padding: 96px 0; background: var(--white); }
.supporters-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.supporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.4rem;
}
.supporter-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.supporter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sup-top { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.sup-avatar {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.supporter-card:nth-child(odd)  .sup-avatar { background: var(--gold-500); }
.supporter-card:nth-child(even) .sup-avatar { background: var(--navy-600); }
.sup-name { font-weight: 700; color: var(--navy-900); font-size: .98rem; line-height: 1.1; }
.sup-meta { font-size: .76rem; color: var(--ink-300); }
.sup-msg { color: var(--ink-500); font-size: .92rem; line-height: 1.6; margin: 0 0 .9rem; }
.sup-value {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; font-weight: 700;
  border-radius: var(--r-pill); padding: .25rem .7rem;
}
.supporter-card:nth-child(odd)  .sup-value { color: var(--gold-600); background: var(--gold-100); }
.supporter-card:nth-child(even) .sup-value { color: var(--navy-700); background: var(--navy-50); }

/* ============================================
   CTA grande + Rodapé (modelo cta-footer)
============================================ */

/* Pílula reutilizável (kicker) */
.kicker-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--cream-200);
  color: var(--navy-700); font-weight: 600; font-size: .9rem;
  padding: .5rem 1.1rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.kicker-pill svg { color: var(--gold-500); }
.kicker-pill .hl-green, .kicker-pill b { color: var(--gold-600); }

/* ---- CTA ---- */
.cta-section { padding: 80px 0; background: var(--white); }
.cta-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, var(--navy-50) 60%, #e3eefb 100%);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.cta-card-main { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; }
.cta-text { padding: 3rem; }
.cta-text h2 { color: var(--navy-900); margin: 0 0 1rem; }
.cta-text > p { color: var(--ink-500); max-width: 540px; margin: 0 0 1.8rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-btn {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .85rem 1.4rem; border-radius: var(--r-md);
  text-decoration: none; transition: all var(--t-base);
}
.cta-btn span { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.cta-btn strong { font-size: .98rem; }
.cta-btn small { font-size: .76rem; opacity: .85; font-weight: 500; }
.cta-btn-primary { background: linear-gradient(100deg, var(--navy-600), var(--gold-500)); color: #fff; box-shadow: var(--shadow-gold); }
.cta-btn-primary:hover { transform: translateY(-2px); color: #fff; }
.cta-btn-ghost { background: var(--white); color: var(--navy-800); border: 1px solid var(--cream-200); box-shadow: var(--shadow-sm); }
.cta-btn-ghost svg { color: var(--navy-600); }
.cta-btn-ghost:hover { border-color: var(--navy-600); color: var(--navy-800); }

.cta-photo { position: relative; align-self: stretch; min-height: 340px; }
.cta-photo picture, .cta-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-photo {
  -webkit-clip-path: ellipse(78% 120% at 78% 50%);
          clip-path: ellipse(78% 120% at 78% 50%);
}
.cta-deco { position: absolute; border-radius: 50%; z-index: 2; }
.cta-deco-blue { width: 90px; height: 90px; background: var(--navy-600); opacity: .9; left: -6%; top: 22%; }
.cta-deco-green { width: 70px; height: 70px; background: var(--gold-500); opacity: .9; left: 2%; bottom: 20%; }

.cta-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  background: rgba(255,255,255,0.75);
  border-top: 1px solid var(--cream-200);
  padding: 1.4rem 3rem;
}
.cta-trust .ct-item { display: flex; align-items: center; gap: .7rem; }
.cta-trust .ct-item svg { color: var(--gold-500); flex: 0 0 auto; }
.cta-trust .ct-item span { display: flex; flex-direction: column; line-height: 1.2; }
.cta-trust .ct-item strong { color: var(--navy-900); font-size: .88rem; }
.cta-trust .ct-item small { color: var(--ink-500); font-size: .76rem; }
@media (max-width: 991px) {
  .cta-card-main { grid-template-columns: 1fr; }
  .cta-text { padding: 2.2rem; }
  .cta-photo { min-height: 240px; -webkit-clip-path: none; clip-path: none; }
  .cta-deco { display: none; }
  .cta-trust { grid-template-columns: 1fr 1fr; padding: 1.4rem 2.2rem; }
}
@media (max-width: 560px) { .cta-trust { grid-template-columns: 1fr; } }

/* ---- Rodapé ---- */
.site-footer { background: var(--white); }
.footer-top { padding: 4rem 0 3rem; border-top: 1px solid var(--cream-100); }
.footer-grid2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr 1.5fr;
  gap: 2rem;
}
.footer-brand2 .nav-logo-img { height: 52px; width: auto; }
.footer-brand2 p { color: var(--ink-500); font-size: .9rem; line-height: 1.6; margin: 1rem 0 1.2rem; }
.social-row2 { display: flex; gap: .6rem; }
.social-row2 .social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-600); color: #fff; transition: transform var(--t-fast), filter var(--t-fast);
}
.social-row2 .social-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social-row2 .social-btn[aria-label="Instagram"] { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%); }
.social-row2 .social-btn[aria-label="Facebook"] { background: #1877f2; }
.social-row2 .social-btn[aria-label="YouTube"] { background: #ff0000; }
.social-row2 .social-btn[aria-label="LinkedIn"] { background: #0a66c2; }

.footer-col2 h6 { color: var(--navy-800); font-size: .95rem; font-weight: 700; margin: 0 0 1rem; }
.footer-links2 { list-style: none; padding: 0; margin: 0; }
.footer-links2 li { margin-bottom: .6rem; }
.footer-links2 a {
  color: var(--ink-500); font-size: .88rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: .35rem; transition: color var(--t-fast);
}
.footer-links2 a::before { content: "›"; color: var(--gold-500); font-weight: 700; }
.footer-links2 a:hover { color: var(--navy-600); }
.footer-contact2 ul { list-style: none; padding: 0; margin: 0; }
.footer-contact2 li { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: .7rem; color: var(--ink-500); font-size: .86rem; }
.footer-contact2 li svg { color: var(--navy-600); flex: 0 0 auto; margin-top: 2px; }
.footer-contact2 a { color: var(--ink-500); text-decoration: none; }
.footer-contact2 a:hover { color: var(--navy-600); }

.footer-pix { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-md); padding: 1.2rem; }
.footer-pix h6 { color: var(--navy-800); font-size: .92rem; font-weight: 700; margin: 0 0 .8rem; }
.footer-pix .fp-row { display: flex; gap: .8rem; align-items: center; }
.footer-pix .fp-row p { color: var(--ink-500); font-size: .8rem; line-height: 1.45; margin: 0; flex: 1; }
.fp-qr { width: 84px; height: 84px; flex: 0 0 auto; background: #fff; border: 1px solid var(--cream-200); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--ink-300); }
.fp-qr img { width: 100%; height: 100%; object-fit: contain; }
.fp-key { display: flex; align-items: center; gap: .5rem; margin-top: .9rem; background: #fff; border: 1px solid var(--cream-200); border-radius: var(--r-sm); padding: .5rem .7rem; }
.fp-key small { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-300); }
.fp-key code { font-size: .82rem; color: var(--navy-900); font-weight: 600; word-break: break-all; background: none; }
.fp-key > div { flex: 1; }
.fp-copy { flex: 0 0 auto; border: 0; background: var(--navy-600); color: #fff; border-radius: var(--r-sm); width: 34px; height: 34px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background var(--t-fast); }
.fp-copy:hover { background: var(--navy-700); }
.fp-copy.copied { background: var(--gold-500); }

/* Barra escura de selos */
.footer-trust { background: var(--navy-900); color: #fff; padding: 2.2rem 0; }
.ft-grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.1fr; gap: 1.6rem; align-items: center; }
.ft-item { display: flex; gap: .8rem; align-items: flex-start; }
.ft-ico { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: var(--gold-400); }
.ft-item strong { display: block; font-size: .92rem; }
.ft-item small { color: rgba(255,255,255,0.7); font-size: .78rem; line-height: 1.4; }
.ft-contacts { display: flex; flex-direction: column; gap: .6rem; border-left: 1px solid rgba(255,255,255,0.12); padding-left: 1.4rem; }
.ft-contacts span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.55); }
.ft-contacts strong { font-size: .85rem; font-weight: 600; }
@media (max-width: 991px) { .ft-grid { grid-template-columns: 1fr 1fr; } .ft-contacts { border-left: 0; padding-left: 0; } }
@media (max-width: 560px) { .ft-grid { grid-template-columns: 1fr; } }

/* Barra legal */
.footer-legal { background: var(--navy-900); color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 0; font-size: .82rem; }
.fl-grid { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fl-links { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.fl-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.fl-links a:hover { color: #fff; }
.fl-links .dev-credit-link { color: var(--gold-400); font-weight: 700; }
.fl-links .dev-credit-link:hover { color: #fff; }
.fl-pill { border: 1px solid rgba(255,255,255,0.25); border-radius: var(--r-pill); padding: .35rem .9rem; color: #fff; font-size: .76rem; }

@media (max-width: 1100px) { .footer-grid2 { grid-template-columns: 1fr 1fr 1fr; } .footer-pix { grid-column: span 3; } }
@media (max-width: 700px) { .footer-grid2 { grid-template-columns: 1fr 1fr; } .footer-brand2 { grid-column: span 2; } .footer-pix { grid-column: span 2; } }
@media (max-width: 480px) { .footer-grid2 { grid-template-columns: 1fr; } .footer-brand2, .footer-pix { grid-column: span 1; } }

/* ============================================
   Modal de doação / cadastro no mural
============================================ */
.doar-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(13, 43, 78, 0.55);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t-base), visibility var(--t-base);
}
.doar-overlay.open { opacity: 1; visibility: visible; }
.doar-modal {
  position: relative;
  background: var(--white);
  width: 100%; max-width: 440px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(12px) scale(.98);
  transition: transform var(--t-base);
}
.doar-overlay.open .doar-modal { transform: none; }
.doar-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: var(--cream-50); color: var(--ink-500);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.doar-close:hover { background: var(--cream-100); color: var(--navy-800); }

.doar-head { text-align: center; margin-bottom: 1.4rem; }
.doar-badge {
  width: 54px; height: 54px; margin: 0 auto .9rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold-100); color: var(--gold-600);
}
.doar-head h3 { color: var(--navy-900); font-size: 1.3rem; margin: 0 0 .5rem; }
.doar-head p { color: var(--ink-500); font-size: .9rem; line-height: 1.5; margin: 0; }

.doar-field { margin-bottom: 1rem; }
.doar-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy-800); margin-bottom: .35rem; }
.doar-field label span { color: var(--ink-300); font-weight: 400; }
.doar-field input, .doar-field textarea {
  width: 100%; border: 1px solid var(--cream-200); border-radius: var(--r-sm);
  padding: .7rem .85rem; font-size: .95rem; color: var(--navy-900);
  font-family: inherit; background: var(--cream-50);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.doar-field input:focus, .doar-field textarea:focus {
  outline: none; border-color: var(--navy-600); background: #fff;
  box-shadow: 0 0 0 3px rgba(40,121,196,.12);
}
.doar-field textarea { resize: vertical; }
.doar-erro { color: #c0392b; font-size: .84rem; margin-bottom: .6rem; display: none; }
.doar-erro.show { display: block; }
.doar-note { text-align: center; font-size: .76rem; color: var(--ink-300); margin: .8rem 0 0; }
#doarSubmit { margin-top: .3rem; justify-content: center; }

/* Etapa de sucesso */
#doarSucesso { text-align: center; }
.doar-ok-ico {
  width: 64px; height: 64px; margin: .4rem auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold-100); color: var(--gold-600);
}
#doarSucesso h3 { color: var(--navy-900); font-size: 1.3rem; margin: 0 0 .5rem; }
#doarSucesso > p { color: var(--ink-500); font-size: .92rem; line-height: 1.55; margin: 0 0 1.2rem; }
.doar-pix { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-md); padding: 1rem; margin-bottom: 1.2rem; text-align: left; }
.doar-pix-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-300); font-weight: 700; margin-bottom: .35rem; }
.doar-pix-row { display: flex; align-items: center; gap: .5rem; }
.doar-pix-row code { flex: 1; font-size: .92rem; font-weight: 600; color: var(--navy-900); word-break: break-all; background: none; }
.doar-pix-copy {
  flex: 0 0 auto; border: 0; cursor: pointer; background: var(--navy-600); color: #fff;
  border-radius: var(--r-sm); padding: .45rem .7rem; font-size: .78rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .35rem; transition: background var(--t-fast);
}
.doar-pix-copy:hover { background: var(--navy-700); }
.doar-pix-copy.copied { background: var(--gold-500); }
.doar-pix-titular { font-size: .8rem; color: var(--ink-500); margin-top: .6rem; }
.doar-pix-titular strong { color: var(--navy-800); }
#doarSucesso .btn-ghost-light { justify-content: center; background: var(--white); color: var(--navy-800); border-color: var(--cream-200); }

/* ---- Página /apoiadores: paginador ---- */
.apoiadores-pager {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .45rem; margin-top: 3rem;
}
.apoiadores-pager .pg-link {
  min-width: 40px; height: 40px; padding: 0 .6rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); border: 1px solid var(--cream-200);
  background: var(--white); color: var(--navy-800); font-weight: 600; font-size: .92rem;
  text-decoration: none; transition: all var(--t-fast);
}
.apoiadores-pager a.pg-link:hover { border-color: var(--navy-600); color: var(--navy-600); }
.apoiadores-pager .pg-link.active { background: linear-gradient(180deg, var(--gold-500), var(--gold-600)); border-color: transparent; color: #fff; }
.apoiadores-pager .pg-link.disabled { opacity: .4; cursor: default; }
.apoiadores-pager .pg-dots { color: var(--ink-300); padding: 0 .2rem; }
.apoiadores-info { text-align: center; color: var(--ink-300); font-size: .84rem; margin-top: 1rem; }
