:root {
  /* Paleta */
  --navy-950: #06122a;
  --navy-900: #0b1a3a;
  --navy-800: #11305a;
  --navy-700: #1a3f6b;
  --navy-100: #e6ebf5;
  --gold-500: #f5b13a;
  --gold-600: #d9961f;
  --gold-700: #b87c10;
  --cream:    #faf5e9;
  --paper:    #f4ecda;
  --ink:      #131521;
  --ink-soft: #3a3d4d;
  --muted:    #6f7384;
  --line:     #e2dccb;
  --danger:   #c0392b;
  --success:  #1f9d55;

  --shadow-sm: 0 1px 2px rgba(11,26,58,.06);
  --shadow-md: 0 10px 30px rgba(11,26,58,.10);
  --shadow-lg: 0 24px 50px rgba(11,26,58,.18);
  --radius: 14px;
  --radius-lg: 22px;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", "Inter", Georgia, serif;
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-800); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 .6rem;
}
h1 em, h2 em, h3 em, .display-1 em, .display-3 em { font-style: italic; color: var(--gold-500); font-weight: 600; }
p {color: #0b1a3a;margin: 0 0 1rem;}
.muted { color: var(--muted) !important; }
.container { max-width: 1280px; padding: 0 1.25rem; }
::selection { background: var(--gold-500); color: var(--navy-900); }

.display-1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; line-height: 1; letter-spacing: -0.035em; }
.display-3 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; }
.lead { font-size: 1.15rem; line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }

/* ===== Topbar ===== */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar i { color: var(--gold-500); margin-right: .2rem; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--gold-500); }
.topbar-right a { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.06); margin-left: .35rem; }
.topbar-right a:hover { background: var(--gold-500); color: var(--navy-900); }

/* ===== Header principal ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {width: 177px;/* height: 48px; */object-fit: contain;}

.primary-nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: auto;
}
.primary-nav a {
  color: var(--navy-900);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .9rem;
  border-radius: 8px;
  position: relative;
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--gold-600); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .25s ease, left .25s ease;
}
.primary-nav a:hover::after { width: 60%; left: 20%; }

.header-cta { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.hamburger {
  background: transparent;
  border: 1px solid var(--line);
  width: 42px; height: 42px;
  border-radius: 10px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  box-shadow: var(--shadow-md);
  animation: drawerIn .25s ease both;
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer a { padding: .85rem .5rem; border-bottom: 1px solid var(--line); color: var(--navy-900); font-weight: 500; }
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer .btn { margin-top: .75rem; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ===== BotÃµes ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .75rem 1.4rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  font-size: .98rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-xl { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn:hover { transform: translateY(-1px); }

.btn-donate {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  border-color: var(--gold-500);
  box-shadow:
    0 4px 10px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.10) inset;
}
.btn-donate:hover {
  background: var(--gold-600);
  color: #fff;
  border-color: var(--gold-600);
  box-shadow:
    0 8px 22px rgba(0,0,0,.32),
    0 0 0 1px rgba(255,255,255,.15) inset;
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover { background: var(--navy-900); color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy-900); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-600);
  border-color: var(--gold-500);
}
.btn-outline-gold:hover { background: var(--gold-500); color: var(--navy-900); }

/* ===== Kicker ===== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-size: .78rem;
  color: #0b1a3a;
  margin-bottom: 1.25rem;
}
.kicker-dot { width: 8px; height: 8px; background: var(--gold-500); border-radius: 50%; }
.kicker.light { color: rgba(255,255,255,.85); }
.kicker.light .kicker-dot { background: var(--gold-500); box-shadow: 0 0 0 4px rgba(245,177,58,.20); }

/* ============================================================
   HERO CINEMATOGRÃFICO
   ============================================================ */
.hero {
  position: relative;
  min-height: 760px;
  height: calc(100vh - 80px); /* desconta a altura do header sticky */
  max-height: 980px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
/* Overlay azul-marinho mais carregado: destaca o texto/botao
   sem matar a foto. Vinheta forte no topo + base bem escura. */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    /* Topo (titulo) bem escuro -> meio mais claro -> base (ticker) bem escura */
    linear-gradient(180deg,
      rgba(6,18,42,.80) 0%,
      rgba(6,18,42,.45) 30%,
      rgba(6,18,42,.30) 55%,
      rgba(6,18,42,.95) 100%);
}
.hero-grain { display: none; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.30'/></svg>");
  opacity: .20; mix-blend-mode: overlay; pointer-events: none;
}

/* Container principal com folga para o header sticky e para os impact cards */
.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
  margin-top: -2rem; /* puxa o conteÃºdo pra cima, dando respiro pros impact cards embaixo */
  padding: 4rem 1.25rem 14rem; /* folga inferior generosa pros impact cards + ticker */
}
.hero-content .display-1 {
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0,0,0,.25),
    0 6px 20px rgba(0,0,0,.20);
  margin: 0 0 1.5rem;
}
.hero-content .display-1 em { color: var(--gold-500); font-weight: 600; }
.hero-flecha {
  font-style: italic;
  color: var(--gold-500);
}
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 38rem;
  color: rgba(255,255,255,.95);
  margin: 0 0 2rem;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(0,0,0,.20);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* CTA secundÃ¡rio sem borda â€” sÃ³ um link destacado, mais leve que o ghost-light */
.btn-link-light {
  background: transparent;
  color: #fff;
  border: none;
  padding: 1.05rem .5rem;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px;
  transition: gap .2s ease, color .2s ease;
}
.btn-link-light i { transition: transform .2s ease; }
.btn-link-light:hover { color: var(--gold-500); gap: .8rem; }
.btn-link-light:hover i { transform: translateX(3px); }

/* Hero impact strip (carrossel horizontal auto) */
.hero-impact {
  position: absolute;
  bottom: 4.2rem; left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.impact-track {
  display: flex;
  gap: .85rem;
  animation: impactScroll 45s linear infinite;
  width: max-content;
  padding-left: .85rem;
}
.impact-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  min-width: 220px;
  display: flex; flex-direction: column;
  pointer-events: auto;
}
.impact-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-500);
  font-weight: 800;
  line-height: 1;
}
.impact-card span { color: rgba(255,255,255,.85); font-size: .88rem; }
@keyframes impactScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Ticker inferior â€” fica dentro do hero, na base */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(6,18,42,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-500);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .9rem 0;
  overflow: hidden;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ticker-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  width: max-content;
  animation: tickerScroll 50s linear infinite;
}
.ticker-track span { white-space: nowrap; }
.ticker-track span:nth-child(even) { color: rgba(255,255,255,.30); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 991.98px) {
  .hero { min-height: 680px; height: auto; }
  .hero-content { padding: 4.5rem 1.25rem 12rem; }
}
@media (max-width: 767.98px) {
  .hero { min-height: 600px; }
  .hero-content { padding: 3.5rem 1.25rem 11rem; }
  .hero-impact { bottom: 3.2rem; }
  .impact-card { min-width: 190px; padding: .85rem 1.1rem; }
  .impact-card strong { font-size: 1.65rem; }
  .hero-actions { gap: .5rem; }
  .hero-actions .btn-xl { padding: .9rem 1.3rem; font-size: .95rem; }
}

/* ============================================================
   SEÃ‡Ã•ES
   ============================================================ */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-head-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}
.section-head-center .lead, .section-head-center .section-lead { margin-left: auto; margin-right: auto; }

.section-head-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .section-head-split { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
}

.section-lead { font-size: 1.1rem; line-height: 1.6; color: var(--ink-soft); max-width: 60ch; }

.section-quem { background: var(--cream); }
.section-ajudar { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.section-historias { background: var(--paper); }
.light { color: #fff !important; }
.light.lead, .section-head-center.light .section-lead { color: rgba(255,255,255,.85) !important; }

/* ============================================================
   CARROSSEL: AÃ‡Ã•ES (swiper)
   ============================================================ */
.section-acoes { background: var(--navy-950); color: #fff; padding-bottom: 5rem; }
.section-acoes .display-3 { color: #fff; }
.section-acoes .section-lead { color: rgba(255,255,255,.8); }
.section-acoes .kicker { color: rgba(255,255,255,.9); }

.acoes-swiper {
  padding: 0 1.25rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.acao-slide {
  position: relative;
  min-height: 520px;
  height: 70vh;
  max-height: 720px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  overflow: hidden;
  color: #fff;
  transition: transform .5s ease;
}
.acao-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75) 100%);
  z-index: 0;
}
.acao-slide > * { position: relative; z-index: 1; }
.acao-tag {
  display: inline-block;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .4rem .8rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1rem;
}
.acao-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.acao-desc {
  color: rgba(255,255,255,.92);
  max-width: 50ch;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.acao-stats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 1.25rem;
}
.acao-stats li { display: flex; flex-direction: column; }
.acao-stats strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-500);
  font-weight: 800;
  line-height: 1;
}
.acao-stats span { color: rgba(255,255,255,.85); font-size: .9rem; }

.acoes-prev, .acoes-next {
  color: var(--gold-500) !important;
  background: rgba(11,26,58,.6);
  width: 50px; height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.acoes-prev::after, .acoes-next::after { font-size: 1.2rem; font-weight: 800; }
.acoes-pagination { bottom: 1rem !important; }
.acoes-pagination .swiper-pagination-bullet { background: var(--gold-500); }

.acao-nota {
  margin: 0 auto;
  max-width: 920px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,177,58,.40);
  color: rgba(255,255,255,.85);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem;
  margin-top: 1rem;
}
.acao-nota i { color: var(--gold-500); font-size: 1.3rem; }

/* ============================================================
   QUEM SOMOS â€” split editorial
   ============================================================ */
.quem-grid { align-items: stretch; }
.quem-text { padding: 1rem 1.25rem 1rem 0; }
@media (min-width: 992px) { .quem-text { padding: 1rem 3rem 1rem 1.25rem; } }
.quem-text .lead { margin: 1.5rem 0; }
.valores {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-top: 2rem;
}
.valor {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.valor:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.valor i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--gold-500);
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.valor strong { display: block; font-family: var(--font-display); color: var(--navy-900); margin-bottom: .25rem; font-size: 1.1rem; }
.valor span { color: var(--muted); font-size: .9rem; }

.quem-photo { padding: 1rem 1.25rem; }
.photo-stack {
  position: relative;
  height: 100%;
  min-height: 540px;
}
.photo {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  transition: transform .5s ease;
}
.photo-1 { top: 0; left: 0; width: 60%; height: 60%; }
.photo-2 { top: 5%; right: 0; width: 40%; height: 50%; }
.photo-3 { bottom: 0; left: 25%; width: 55%; height: 50%; }
.photo-1:hover, .photo-2:hover, .photo-3:hover { transform: scale(1.03); }
.photo-caption {
  position: absolute;
  bottom: -2rem; right: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  max-width: 320px;
  box-shadow: var(--shadow-md);
  font-style: italic;
  z-index: 2;
}
.photo-caption i { font-size: 1.6rem; color: var(--navy-900); }
.photo-caption p { color: var(--navy-900); font-family: var(--font-display); font-size: 1rem; line-height: 1.3; margin: .35rem 0 .5rem; }
.photo-caption small { color: var(--navy-800); font-style: normal; font-size: .82rem; font-weight: 600; }

@media (max-width: 991.98px) {
  .photo-stack { min-height: 420px; }
}

/* ============================================================
   COMO AJUDAR â€” carrossel + grid
   ============================================================ */
.doar-swiper {
  padding: 0 1.25rem 3rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
}
.doar-slide {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.doar-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doar-num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy-100);
  line-height: 1;
}
.doar-slide i {
  font-size: 1.8rem;
  color: var(--gold-600);
  background: rgba(245,177,58,.15);
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.doar-slide h3 { font-size: 1.4rem; }
.doar-slide p { flex: 1; }
.doar-cta { margin-top: auto; }
.doar-pagination .swiper-pagination-bullet { background: var(--gold-500); }

/* Grid PIX + Pontos */
.doar-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .doar-grid { grid-template-columns: 1.1fr 1fr; gap: 2rem; }
}

.doar-pix-card, .doar-pontos-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.doar-pix-card {
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  border: none;
}
.doar-pix-card h3, .doar-pix-card .kicker { color: #fff; }
.doar-pix-card .kicker { color: rgba(255,255,255,.85); }
.doar-pix-card p { color: rgba(255,255,255,.85); }

.pix-block {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 576px) { .pix-block { grid-template-columns: 200px 1fr; align-items: center; } }

.pix-qr { text-align: center; }
.pix-qr img { background: #fff; padding: 8px; border-radius: 12px; margin: 0 auto; }
.pix-qr small { color: rgba(255,255,255,.55) !important; display: block; margin-top: .5rem; font-size: .8rem; }

.pix-info .form-label { color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.pix-copy {
  display: flex; align-items: stretch; gap: .5rem;
  background: #fff;
  border-radius: 12px;
  padding: .35rem;
  margin-bottom: .5rem;
}
.pix-copy code {
  flex: 1;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .85rem;
  background: transparent;
  color: var(--navy-900);
  padding: .55rem .65rem;
  word-break: break-all;
  display: flex; align-items: center;
}
.pix-info small { color: rgba(255,255,255,.7); }
.pix-feedback {
  margin-top: .75rem;
  font-size: .9rem;
  min-height: 1.4em;
  color: var(--gold-500);
  display: flex; align-items: center; gap: .4rem;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .25s ease, transform .25s ease;
}
.pix-feedback.is-show { opacity: 1; transform: translateY(0); }
.pix-feedback.is-error { color: #ff7a7a; }

.pix-help {
  margin-top: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .8rem 1rem;
}
.pix-help summary { cursor: pointer; color: var(--gold-500); font-weight: 600; list-style: none; display: flex; align-items: center; gap: .4rem; }
.pix-help summary::-webkit-details-marker { display: none; }
.pix-help[open] summary i { transform: rotate(180deg); }
.pix-help i { transition: transform .2s ease; }
.pix-help ol { margin: .8rem 0 0; padding-left: 1.2rem; color: rgba(255,255,255,.85); }
.pix-help ol li { padding: .2rem 0; }

/* Pontos de coleta */
.pontos-list { list-style: none; padding: 0; margin: 0; }
.pontos-list li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.pontos-list li:last-child { border-bottom: 1px solid var(--line); }
.pontos-list i {
  font-size: 1.3rem;
  color: var(--gold-600);
  background: rgba(245,177,58,.12);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.pontos-list strong { display: block; color: var(--navy-900); font-size: 1rem; }
.pontos-list span { color: var(--ink-soft); font-size: .9rem; }

/* VoluntÃ¡rio */
.voluntario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .voluntario-card { padding: 3rem; } }
.voluntario-head { text-align: center; margin-bottom: 2rem; }
.voluntario-head .kicker { justify-content: center; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .6rem;
}
.area-chip {
  display: flex; align-items: center; gap: .5rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: .65rem .8rem;
  cursor: pointer;
  font-size: .92rem;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.area-chip i { color: var(--gold-600); }
.area-chip input { accent-color: var(--gold-600); }
.area-chip:has(input:checked) {
  border-color: var(--gold-500);
  background: rgba(245,177,58,.10);
}

.form-control, .form-select {
  border-radius: 12px;
  border: 1.5px solid var(--line);
  padding: .75rem .9rem;
  font-size: .98rem;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 .2rem rgba(245,177,58,.20);
}
.form-check-input:checked { background-color: var(--gold-600); border-color: var(--gold-600); }
.form-check-input:focus { box-shadow: 0 0 0 .2rem rgba(245,177,58,.25); }

.form-success {
  margin-top: 1rem;
  background: #ecf9f0;
  border: 1px solid #b8e6c5;
  color: #155724;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  display: flex; align-items: flex-start; gap: .8rem;
}
.form-success i { font-size: 1.4rem; color: var(--success); }
.form-success strong { display: block; color: #0f5132; }
.form-success span { font-size: .92rem; }

/* ============================================================
   TRANSPARÃŠNCIA (dark)
   ============================================================ */
.section-transp {
  position: relative;
  color: #fff;
  background: var(--navy-950);
  padding: 7rem 0;
  overflow: hidden;
  isolation: isolate;
}
.transp-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(245,177,58,.20), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(122,167,255,.10), transparent 60%);
}
.transp-swiper { padding: 0 1.25rem 3rem; max-width: 1280px; margin: 0 auto 4rem; }
.transp-slide {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 320px;
  text-align: left;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.transp-slide:hover { transform: translateY(-4px); border-color: var(--gold-500); }
.transp-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 1rem;
}
.transp-num small { font-size: 1.6rem; color: #ffd87a; }
.transp-slide h4 { color: #fff; font-size: 1.3rem; margin-bottom: .5rem; }
.transp-slide p { color: rgba(255,255,255,.75); font-size: .95rem; }
.transp-pagination .swiper-pagination-bullet { background: var(--gold-500); }

/* Fotos */
.transp-photos-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 1rem 0 1.5rem;
  gap: 1rem;
}
.transp-photos-head h3 { color: #fff; margin: 0; }
.swiper-nav-btns { display: flex; gap: .5rem; }
.circle-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.30);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.circle-btn:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }

.fotos-swiper { padding: 0 1.25rem; }
.foto-slide {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  cursor: zoom-in;
}
.foto-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.foto-slide:hover .foto-img { transform: scale(1.05); }
.foto-meta {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.foto-meta strong { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.foto-meta span { font-size: .85rem; opacity: .85; }

/* ============================================================
   HISTÃ“RIAS (carrossel de depoimentos)
   ============================================================ */
.historias-swiper { padding: 0 1.25rem 3rem; max-width: 1100px; margin: 0 auto; overflow: hidden; position: relative; }
.historias-swiper .swiper-wrapper { align-items: stretch; }
/* Slide do Swiper: largura controlada pelo Swiper, sem restricao. */
.historias-swiper .swiper-slide { height: auto; transition: opacity .25s ease; }
/* Slides nao-ativos ficam invisiveis (sem "preview" lateral). */
.historias-swiper .swiper-slide:not(.swiper-slide-active) { opacity: 0 !important; pointer-events: none; visibility: hidden; }
.historias-swiper .swiper-slide.swiper-slide-active { opacity: 1 !important; z-index: 2; }
/* O card interno (hist-slide) eh centralizado dentro do slide do Swiper. */
.historias-swiper .swiper-slide > .hist-slide { margin-left: auto; margin-right: auto; }
.hist-slide {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-md);
}
.hist-foto {
  width: 96px; height: 96px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  border: 4px solid var(--gold-500);
  margin: 0 auto 1.25rem;
}
.hist-slide > i.bi-quote {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-size: 3rem;
  color: var(--navy-100);
}
.hist-slide p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy-900);
  line-height: 1.4;
  max-width: 32ch;
  margin: 0 auto 1.5rem;
}
.hist-author strong { display: block; color: var(--navy-900); font-family: var(--font-sans); font-size: 1rem; }
.hist-author span { color: var(--muted); font-size: .9rem; }
.hist-prev, .hist-next { color: var(--navy-900) !important; }
.hist-prev::after, .hist-next::after { font-weight: 800; }
.hist-pagination .swiper-pagination-bullet { background: var(--gold-500); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.78);
  padding: 5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.footer-cta {
  text-align: center;
  padding: 3rem 0 5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 3rem;
}
.footer-cta .display-3 { color: #fff; margin-bottom: 2rem; }
.footer-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 2rem; } }

.footer-brand {display: flex;align-items: center;gap: 1rem;justify-content: space-evenly;}
.footer-brand strong { display: block; color: #fff; font-size: 1.1rem; }
.footer-brand span { color: var(--gold-500); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }

.site-footer h5 { color: var(--gold-500); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 700; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--gold-500); }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { padding: .25rem 0; font-size: .95rem; }
.footer-contact i { color: var(--gold-500); margin-right: .5rem; }

.newsletter {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .25rem;
  margin-top: 1rem;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: .65rem 1rem;
  font-size: .9rem;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button {
  background: var(--gold-500);
  color: var(--navy-900);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s ease;
}
.newsletter button:hover { background: var(--gold-600); color: #fff; }

.footer-divider { border-color: rgba(255,255,255,.1); margin: 2rem 0 1.25rem; }

/* BotÃ£o flutuante */
.float-whatsapp {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 1025;
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-whatsapp:hover { transform: scale(1.06); color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,.55); }
@media (min-width: 768px) {
  .float-whatsapp { width: 60px; height: 60px; right: 1.5rem; bottom: 1.5rem; font-size: 1.8rem; }
}

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ===== A11y ===== */
:focus-visible { outline: 3px solid rgba(245,177,58,.55); outline-offset: 2px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track, .impact-track { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===== Lightbox (fotos de acoes) ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 1080;
  background: rgba(6,18,42,.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lbIn .25s ease both;
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  width: auto; height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  background: #fff;
}
.lightbox figcaption {
  color: #fff;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-align: center;
  max-width: 60ch;
}
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.lightbox-close:hover { background: var(--gold-500); color: var(--navy-900); transform: rotate(90deg); }

/* ===== Pontos de coleta: estado vazio ===== */
.pontos-empty {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1.2rem;
  background: rgba(245,177,58,.08);
  border: 1px dashed rgba(245,177,58,.4);
  border-radius: var(--radius);
  color: var(--ink-soft);
  list-style: none;
}
.pontos-empty i {
  font-size: 1.4rem;
  color: var(--gold-600);
  background: rgba(245,177,58,.15);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.pontos-empty strong { display: block; color: var(--navy-900); margin-bottom: .15rem; }
.pontos-empty span { font-size: .9rem; color: var(--ink-soft); }

/* ===== Historias: estado vazio ===== */
.hist-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--ink-soft);
}
.hist-empty i { font-size: 2.5rem; color: var(--gold-600); margin-bottom: 1rem; }
.hist-empty p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; max-width: 50ch; margin: 0 auto; }

/* Foto placeholder aviso */
.foto-placeholder-tag {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(6,18,42,.85);
  color: var(--gold-500);
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .55rem;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}
