
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fonte-texto);
  color: var(--texto);
  background: var(--fundo);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  margin: 0;
  line-height: 1.15;
  letter-spacing: .3px;
}
p { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
/* ---------- Decorações (estrelas / brilhos) ---------- */
.sparkle {
  position: absolute;
  opacity: .85;
  pointer-events: none;
}
 
/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, #D9233D3c 0%, #D9233Daf 50%, #D9233D 100%);
  padding: 170px 0 150px;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
  color: var(--azul-escuro);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 26px;
}
.breadcrumb span { opacity: .55; }
.hero h1 {
  font-size: var(--size-titulo);
  color: var(--branco);
  text-shadow: 0 4px 0 rgba(2,61,81,.25);
}
.hero h1 em {
  font-style: normal;
  color: var(--amarelo);
}
.hero p {
  color: rgba(255,255,255,.95);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 22px auto 34px;
  max-width: 560px;
}
.hero .decor-star { position: absolute; }
.hero .decor-star.s1 { top: 22%; left: 8%; width: 34px; }
.hero .decor-star.s2 { top: 65%; right: 10%; width: 26px; }
.hero .decor-star.s3 { top: 14%; right: 20%; width: 20px; }
.hero .decor-star.s4 { bottom: 18%; left: 18%; width: 18px; }
 
.cloud-divider {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  height: 90px;
  line-height: 0;
}
.cloud-divider svg { width: 100%; height: 100%; display: block; }
 
/* =========================================================
   SEJA UM APOIADOR
========================================================= */
.apoiador {
  padding: 100px 0 40px;
  text-align: center;
}
.apoiador .pill-badge { background: #FFE3D2; color: var(--laranja-escuro); }
.apoiador h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--azul-escuro); }
.apoiador > .container > p {
  max-width: 620px;
  margin: 18px auto 56px;
  color: #55636b;
  font-size: 1.05rem;
  line-height: 1.6;
}
 
.cards-apoio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}
@media (max-width: 780px) {
  .cards-apoio { grid-template-columns: 1fr; }
}
 
.card-apoio {
  border-radius: 26px;
  padding: 38px 36px 40px;
  color: var(--branco);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.card-apoio.financeiro { background: linear-gradient(-150deg, var(--amarelo) 0%,  #ffc506b1 100%); }
.card-apoio.mantimentos { background: linear-gradient(-150deg, var(--laranja) 0%, #EF5B1Cb1 100%); }
 
.card-apoio .icone-wrap {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-apoio .icone-wrap svg { width: 30px; height: 30px; }
.card-apoio h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.card-apoio .sub {
  font-family: var(--fonte-texto);
  font-weight: 500;
  opacity: .9;
  font-size: .95rem;
  margin-bottom: 22px;
}
.card-apoio ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-apoio li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 600;
  font-size: .96rem;
  border-bottom: 1px dashed rgba(255,255,255,.35);
  padding-bottom: 10px;
}
.card-apoio li .label {
  font-weight: 500;
  opacity: .82;
}
.card-apoio li .valor { text-align: right; }
.card-apoio.mantimentos li { display: block; border-bottom: none; padding-bottom: 0; }
.card-apoio.mantimentos li .label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .6px; opacity: .78; margin-bottom: 3px; }
.card-apoio.mantimentos li .valor { display: block; font-weight: 700; font-size: 1rem; }
 
.card-apoio .blob {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -90px; right: -70px;
}