/* ============================================================
   CAPEC — V3 · CSS consolidado para WordPress
   Ordem: styles.css + home.css + pages.css + v3.css
   (mesma ordem em que o Design carregava na V3)
   ============================================================ */

/* ============ [1/4] styles.css ============ */
/* =============================================================
   CAPEC — Site V2 · Base styles
   Tokens · Tipografia · Header · Footer · Botões · Utilitários
   Importar em TODAS as páginas
   ============================================================= */

:root {
  --green: #78af50;
  --green-light: #b0ce69;
  --green-dark: #5d8d3d;
  --orange: #d6932d;
  --orange-dark: #b87922;

  --saude: #618dbb;
  --nutricao: #d6932d;
  --social: #c7567f;
  --cultura: #e5bf2f;

  --navy: #2a2d7c;
  --navy-dark: #1a1c4a;
  --gray: #6d6e71;
  --gray-light: #f5f5f5;
  --gray-100: #ececec;
  --white: #ffffff;

  --maxw: 1240px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(42, 45, 124, .06), 0 4px 12px rgba(42, 45, 124, .04);
  --shadow-md: 0 6px 24px rgba(42, 45, 124, .08), 0 2px 6px rgba(42, 45, 124, .04);
  --shadow-lg: 0 18px 50px rgba(42, 45, 124, .12), 0 4px 12px rgba(42, 45, 124, .06);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Raleway', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { color: var(--navy); font-weight: 800; line-height: 1.15; margin: 0; letter-spacing: -.01em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-dark);
  margin: 0 0 14px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: currentColor; border-radius: 2px;
}
.section-eyebrow--light { color: var(--cultura); }
.section-eyebrow--light::before { background: var(--cultura); }
.section-eyebrow--orange { color: var(--orange); }
.section-eyebrow--orange::before { background: var(--orange); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-lead {
  font-size: 18px; max-width: 640px; color: var(--gray);
  margin: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--cta { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(214, 147, 45, .35); }
.btn--cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(214, 147, 45, .45); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--orange-dark); box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--navy); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--xl { padding: 22px 40px; font-size: 19px; }
.btn--block { display: flex; width: 100%; }
.btn__heart { display: inline-block; transform: translateY(-1px); font-size: 18px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: gap .2s var(--ease), border-color .2s;
}
.link-arrow:hover { gap: 14px; border-bottom-color: var(--navy); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(42, 45, 124, .06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--maxw); margin: 0 auto;
  position: relative;
}
.brand { display: block; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }

.primary-nav ul { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-weight: 600; font-size: 15px; color: var(--navy);
  position: relative; padding: 8px 0;
}
.primary-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--green); transition: width .25s var(--ease);
}
.primary-nav a:hover, .primary-nav a.is-current { color: var(--green-dark); }
.primary-nav a:hover::after, .primary-nav a.is-current::after { width: 100%; }

.header-cta { padding: 12px 22px; font-size: 15px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Rainbow stripe ===== */
.rainbow-stripe { display: flex; height: 12px; }
.rainbow-stripe span { flex: 1; }

/* ===== Placeholder photos ===== */
.placeholder-photo {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 12px, rgba(255,255,255,.08) 12px 24px),
    linear-gradient(135deg, var(--green-light), var(--green));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center; padding: 24px;
}
.placeholder-photo__tag {
  font-family: 'Courier New', monospace; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.95); letter-spacing: .05em;
  background: rgba(0,0,0,.25); padding: 6px 12px; border-radius: 6px;
}
.placeholder-photo__sub { font-family: 'Courier New', monospace; font-size: 11px; color: rgba(255,255,255,.75); }
.placeholder-photo--dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 12px, rgba(255,255,255,.03) 12px 24px),
    linear-gradient(135deg, #3a3d8c, var(--navy));
}
.placeholder-photo--small { aspect-ratio: 16/10; }
.placeholder-photo--orange {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.15) 0 12px, rgba(255,255,255,.05) 12px 24px),
    linear-gradient(135deg, #e8b65f, var(--orange));
}
.placeholder-photo--pink {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.15) 0 12px, rgba(255,255,255,.05) 12px 24px),
    linear-gradient(135deg, #db7ea0, var(--social));
}
.placeholder-photo--blue {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.15) 0 12px, rgba(255,255,255,.05) 12px 24px),
    linear-gradient(135deg, #82a8d0, var(--saude));
}

/* ===== Mascote ===== */
.capequita {
  position: absolute; pointer-events: none;
  filter: drop-shadow(0 14px 24px rgba(42, 45, 124, .25));
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50%      { transform: translate(-10px, -16px) rotate(2deg); }
}

/* ===== Slogan curvado (imagem) ===== */
.slogan-img {
  display: block;
  max-width: 700px; width: 100%; height: auto;
  margin: 0 auto;
}

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); }
.site-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding: 80px 24px 60px;
  max-width: var(--maxw); margin: 0 auto;
}
.footer-brand__logo { width: 180px; height: auto; margin-bottom: 18px; }
.footer-brand__line { font-size: 14px; color: rgba(255,255,255,.7); margin: 0 0 22px; }
.footer-brand .slogan-img { margin: 18px 0 0; max-width: 280px; }
.footer-brand__slogan { display: block; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col h4.mt { margin-top: 26px; }
.footer-col p { font-size: 14px; line-height: 1.6; margin: 0 0 18px; color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--cultura); }

.tel-wa { display: inline-flex; align-items: center; gap: 8px; }
.tel-wa__icon {
  width: 20px; height: 20px;
  background: #25D366; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tel-wa__icon svg { width: 13px; height: 13px; fill: #fff; }

.footer-pix {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 12px 14px; border-radius: 14px;
  margin-bottom: 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.footer-pix span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--cultura); font-weight: 700; }
.footer-pix strong { font-family: 'Courier New', monospace; font-size: 14px; color: #fff; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all .25s var(--ease);
  position: relative;
}
.socials a svg { width: 18px; height: 18px; fill: #fff; }
.socials a:hover { transform: translateY(-3px) scale(1.05); border-color: transparent; }
.socials a.social--ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.socials a.social--fb:hover { background: #1877F2; }
.socials a.social--yt:hover { background: #FF0000; }
.socials a.social--in:hover { background: #0A66C2; }
.socials a.social--wa:hover { background: #25D366; }
.socials a.social--ig:hover::after,
.socials a.social--fb:hover::after,
.socials a.social--yt:hover::after,
.socials a.social--in:hover::after,
.socials a.social--wa:hover::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid currentColor; opacity: .2;
  animation: socialPulse 1.2s ease-out infinite;
}
@keyframes socialPulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.3); opacity: 0; }
}
.socials__handle { font-size: 13px; color: rgba(255,255,255,.6); margin: 12px 0 0; }

.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,.75); }

.site-footer__base {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding: 22px 24px;
  max-width: var(--maxw); margin: 0 auto;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.site-footer__base .borboletinha {
  display: inline-flex; align-items: center; gap: 6px;
}
.site-footer__base .borboletinha img {
  width: 22px; height: 22px; object-fit: contain;
  vertical-align: middle;
}

/* ===== FAB ===== */
.fab-donate {
  display: none;
  position: fixed; bottom: 18px; right: 18px; z-index: 80;
  background: var(--orange); color: #fff;
  padding: 14px 20px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 15px;
  box-shadow: 0 10px 28px rgba(214, 147, 45, .5);
  align-items: center; gap: 8px;
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab-donate__heart { font-size: 18px; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(214, 147, 45, .5), 0 0 0 0 rgba(214, 147, 45, .4); }
  50%      { box-shadow: 0 10px 28px rgba(214, 147, 45, .5), 0 0 0 18px rgba(214, 147, 45, 0); }
}

/* ===== Page hero (internas) ===== */
.page-hero {
  position: relative; padding: 70px 0 60px;
  background: linear-gradient(135deg, #f9f8f0 0%, #fff 60%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; right: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: var(--green-light); opacity: .25; filter: blur(50px);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--cultura); opacity: .2; filter: blur(50px);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero__crumb {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-dark); margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.page-hero__crumb a:hover { color: var(--orange); }
.page-hero__title {
  font-size: clamp(34px, 5.2vw, 56px);
  color: var(--navy); font-weight: 800;
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.page-hero__title em {
  font-style: italic; color: var(--green);
  background: linear-gradient(transparent 75%, rgba(229, 191, 47, .5) 75%);
  padding: 0 4px;
}
.page-hero__lead {
  font-size: 19px; max-width: 640px; line-height: 1.5;
  color: var(--gray); margin: 0;
}

/* ===== Responsivo header/footer ===== */
@media (max-width: 1100px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid rgba(42,45,124,.08);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 20px; }
  .primary-nav.is-open li { border-bottom: 1px solid var(--gray-100); }
  .primary-nav.is-open li:last-child { border: none; }
  .primary-nav.is-open a { display: block; padding: 14px 0; }
  .fab-donate { display: inline-flex; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .site-footer__inner { grid-template-columns: 1fr; padding: 60px 18px 40px; }
  .site-footer__base { justify-content: center; text-align: center; }
}

/* ============ [2/4] home.css ============ */
/* =============================================================
   CAPEC — Home V2 · Estilos específicos da Home
   ============================================================= */

/* ===== Hero ===== */
.hero { position: relative; padding: 60px 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; }
.hero__blob--green { width: 520px; height: 520px; background: var(--green-light); top: -180px; right: -180px; }
.hero__blob--yellow { width: 380px; height: 380px; background: var(--cultura); bottom: -120px; left: -120px; opacity: .25; }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(120, 175, 80, .12);
  color: var(--green-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(120, 175, 80, .6); }
  50%      { box-shadow: 0 0 0 8px rgba(120, 175, 80, 0); }
}

.hero__title {
  font-size: clamp(36px, 5.2vw, 60px);
  color: var(--navy); font-weight: 800;
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 22px;
}
.hero__title em {
  font-style: italic; color: var(--green);
  background: linear-gradient(transparent 75%, rgba(229, 191, 47, .5) 75%);
  padding: 0 4px;
}
.hero__lead {
  font-size: 19px; line-height: 1.55;
  color: var(--gray); margin: 0 0 32px; max-width: 520px;
}
.hero__lead strong { color: var(--navy); font-weight: 700; }
.hero__ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(42, 45, 124, .1);
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__trust span { font-size: 13px; color: var(--gray); margin-top: 4px; }

.hero__visual { position: relative; aspect-ratio: 1 / 1.05; }
.hero__photo {
  position: absolute; inset: 0;
  border-radius: 40% 60% 65% 35% / 50% 45% 55% 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #b0ce69, #78af50);
  box-shadow: var(--shadow-lg);
  animation: morph 18s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 65% 35% / 50% 45% 55% 50%; }
  33%      { border-radius: 55% 45% 40% 60% / 45% 60% 40% 55%; }
  66%      { border-radius: 60% 40% 55% 45% / 60% 50% 50% 40%; }
}
.capequita--hero {
  width: 38%; right: -8%; top: -4%;
  animation: float 5s ease-in-out infinite;
}
.hero__sparkle {
  position: absolute; width: 14px; height: 14px;
  background: var(--cultura);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(229, 191, 47, .6);
  animation: sparkle 3s ease-in-out infinite;
}
.hero__sparkle--1 { top: 10%; left: 5%; animation-delay: 0s; }
.hero__sparkle--2 { bottom: 25%; left: 12%; background: var(--social); box-shadow: 0 0 16px rgba(199, 86, 127, .6); animation-delay: 1s; }
.hero__sparkle--3 { top: 50%; right: 8%; background: var(--saude); box-shadow: 0 0 16px rgba(97, 141, 187, .6); animation-delay: 2s; }
@keyframes sparkle { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.4); opacity: .4; } }

/* ===== Impact ===== */
.impact { padding: 90px 0; background: var(--gray-light); }
.impact .section-title { margin-bottom: 50px; }
.impact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.impact__item {
  background: #fff; padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
  border-top: 4px solid var(--green);
}
.impact__item:nth-child(2) { border-top-color: var(--orange); }
.impact__item:nth-child(3) { border-top-color: var(--social); }
.impact__item:nth-child(4) { border-top-color: var(--saude); }
.impact__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact__num {
  font-size: 64px; font-weight: 800; color: var(--navy); line-height: 1;
  letter-spacing: -.02em;
  display: inline-flex; align-items: baseline;
}
.impact__numline { display: inline-flex; align-items: baseline; gap: 4px; line-height: 1; }
.impact__num small { font-size: 28px; font-weight: 700; color: var(--green); margin-left: 4px; }
.impact__plus { display: inline-block; font-size: 36px; font-weight: 800; color: var(--green); line-height: 1; }
.impact__label { color: var(--gray); margin-top: 14px; font-size: 15px; line-height: 1.4; }

/* ===== Pillars ===== */
.pillars { padding: 100px 0; background: #fff; }
.pillars__head { text-align: center; margin-bottom: 56px; }
.pillars__head .section-lead { margin: 0 auto; }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 2px solid var(--gray-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--p-color);
  box-shadow: 0 16px 40px var(--p-shadow);
}
.pillar > * { position: relative; z-index: 1; }
.pillar__icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--p-bg);
  display: grid; place-items: center;
  transition: transform .35s var(--ease);
}
.pillar:hover .pillar__icon { transform: rotate(-6deg) scale(1.05); }
.pillar__icon img { width: 100%; height: 100%; object-fit: contain; }

.pillar--saude   { --p-color: var(--saude);    --p-bg: rgba(97, 141, 187, .12); --p-shadow: rgba(97, 141, 187, .25); }
.pillar--nutricao{ --p-color: var(--nutricao); --p-bg: rgba(214, 147, 45, .12); --p-shadow: rgba(214, 147, 45, .25); }
.pillar--social  { --p-color: var(--social);   --p-bg: rgba(199, 86, 127, .12); --p-shadow: rgba(199, 86, 127, .25); }
.pillar--cultura { --p-color: var(--cultura);  --p-bg: rgba(229, 191, 47, .14); --p-shadow: rgba(229, 191, 47, .3); }

.pillar__tag {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--p-color);
  background: var(--p-bg);
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.pillar h3 { font-size: 19px; color: var(--navy); margin: 4px 0 0; line-height: 1.25; }
.pillar p { color: var(--gray); font-size: 14.5px; line-height: 1.5; margin: 0; flex: 1; }
.pillar__cta {
  font-weight: 700; color: var(--p-color); font-size: 14px;
  align-self: flex-start;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color .2s;
}
.pillar__cta:hover { border-bottom-color: var(--p-color); }

/* ===== Story ===== */
.story { position: relative; padding: 100px 0; color: #fff; overflow: hidden; }
.story__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 20%, #3a3e98 0%, var(--navy) 60%);
}
.story__bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 80%, rgba(214, 147, 45, .25), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(199, 86, 127, .2), transparent 40%);
}
.story__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: center;
}
.story__photo { position: relative; aspect-ratio: 4/5; }
.story__photo .placeholder-photo {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.story__title {
  font-size: clamp(26px, 3.4vw, 38px);
  color: #fff; font-weight: 700; font-style: italic;
  line-height: 1.25; letter-spacing: -.01em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.quote-mark {
  font-style: italic; color: var(--cultura);
  font-size: 1.6em; line-height: 0; vertical-align: -0.2em;
  margin-right: 4px;
}
.story__name { color: var(--cultura); font-weight: 700; margin: 0 0 24px; font-size: 15px; }
.story__body { color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.6; margin: 0 0 32px; max-width: 520px; }

/* ===== Help ===== */
.help { padding: 100px 0; background: var(--gray-light); }
.help__head { text-align: center; margin-bottom: 56px; }
.help__head .section-lead { margin: 0 auto; }
.help__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 22px;
  align-items: stretch;
}
.help-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.help-card--featured {
  background: linear-gradient(180deg, #fff 0%, #fff 60%, rgba(214, 147, 45, .06) 100%);
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(214, 147, 45, .18);
}
.help-card__badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
  padding: 8px 14px; border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px rgba(214, 147, 45, .35);
}
.help-card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(214, 147, 45, .1); color: var(--orange);
}
.help-card__icon--pix { background: rgba(120, 175, 80, .1); color: var(--green); }
.help-card__icon--corp { background: rgba(97, 141, 187, .12); color: var(--saude); }
.help-card__icon--padrinho { background: rgba(199, 86, 127, .12); color: var(--social); }
.help-card h3 { font-size: 22px; color: var(--navy); margin: 0; }
.help-card__desc { color: var(--gray); font-size: 15px; line-height: 1.5; margin: 0; }
.help-card__values { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0; }
.help-card__values button {
  padding: 10px 16px; border-radius: var(--radius-pill);
  background: #f5f5f5; color: var(--navy); font-weight: 700; font-size: 14px;
  border: 2px solid transparent; transition: all .2s;
}
.help-card__values button:hover { background: rgba(214, 147, 45, .12); }
.help-card__values button.is-selected {
  background: var(--orange); color: #fff;
  border-color: var(--orange-dark);
}
.help-card__note { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.4; }
.help-card__note strong { color: var(--navy); }
.help-card__list { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--gray); }
.help-card__list li::before { content: '✓ '; color: var(--green); font-weight: 800; }
.help-card__highlight {
  background: rgba(199, 86, 127, .1); color: var(--social);
  padding: 10px 14px; border-radius: 12px;
  font-weight: 700; font-size: 14px; margin: 0;
  text-align: center;
}
.help-card .btn { margin-top: auto; }

.pix-box {
  background: var(--gray-light);
  border-radius: 14px; padding: 12px 14px 50px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.pix-box__label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.pix-box__code { font-family: 'Courier New', monospace; font-size: 14px; color: var(--navy); font-weight: 700; }
.pix-box__copy {
  position: absolute; left: 14px; right: 14px; bottom: 10px;
  background: var(--green); color: #fff;
  padding: 8px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  transition: background .2s;
}
.pix-box__copy:hover { background: var(--green-dark); }
.pix-box__copy.is-copied { background: var(--navy); }

/* ===== Benefits ===== */
.benefits { padding: 110px 0; background: #fff; overflow: hidden; }
.benefits__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.benefits__brands { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 36px; }
.benefits__brands li {
  background: var(--gray-light);
  color: var(--navy);
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  border: 1px solid var(--gray-100);
  transition: all .2s;
}
.benefits__brands li:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.benefits__brands .more { background: var(--orange); color: #fff; border-color: var(--orange-dark); }

.benefits__phone { position: relative; display: flex; justify-content: center; align-items: center; }
.phone {
  width: 300px; height: 600px;
  background: #1a1a1a;
  border-radius: 48px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px #2a2a2a;
  position: relative;
  transform: rotate(-4deg);
  transition: transform .4s var(--ease);
}
.benefits__phone:hover .phone { transform: rotate(-2deg) translateY(-6px); }
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #1a1a1a; border-radius: 0 0 18px 18px; z-index: 2;
}
.phone__screen {
  background: linear-gradient(180deg, #f6f9f1 0%, #fff 50%);
  border-radius: 36px;
  width: 100%; height: 100%;
  padding: 44px 18px 18px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
}
.phone__topbar { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: var(--navy); }
.phone__greet {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 18px; padding: 16px; color: #fff;
}
.phone__hi { margin: 0; font-size: 13px; opacity: .9; }
.phone__cash { margin: 4px 0 0; font-size: 26px; font-weight: 800; }
.phone__cash small { font-size: 11px; font-weight: 600; opacity: .85; }
.phone__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.phone__card {
  background: #fff;
  border-radius: 14px; padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 4px;
  border-top: 3px solid;
}
.phone__card--1 { border-color: var(--saude); }
.phone__card--2 { border-color: var(--green); }
.phone__card--3 { border-color: var(--social); }
.phone__card--4 { border-color: var(--cultura); }
.phone__brand { font-weight: 800; font-size: 12px; color: var(--navy); }
.phone__off { font-size: 11px; color: var(--orange); font-weight: 700; }
.phone__footer {
  margin-top: auto;
  background: rgba(214, 147, 45, .1); color: var(--orange-dark);
  border-radius: 12px; padding: 10px;
  font-size: 11px; font-weight: 700; text-align: center;
}

/* ===== Partners carousel ===== */
.partners { padding: 80px 0; background: #fff; border-top: 1px solid var(--gray-100); }
.partners__head { text-align: center; margin-bottom: 40px; }
.partners__head .section-lead { margin: 0 auto; }
.partners__track-wrap {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners__track {
  display: flex; gap: 32px;
  width: max-content;
  animation: scrollPartners 38s linear infinite;
}
.partners__track-wrap:hover .partners__track { animation-play-state: paused; }
@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  flex-shrink: 0;
  width: 180px; height: 90px;
  background: var(--gray-light);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--gray); font-weight: 700; font-size: 15px;
  letter-spacing: .04em;
  position: relative;
  transition: all .25s;
}
.partner-logo:hover { background: #fff; color: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.partner-logo::before {
  content: ''; position: absolute; inset: 14px;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(0,0,0,.04) 8px 9px);
  border-radius: 8px;
}
.partner-logo span { position: relative; }

/* ===== Emotional CTA ===== */
.emotional-cta {
  position: relative; padding: 100px 0;
  background: linear-gradient(135deg, #d6932d 0%, #c7842a 100%);
  color: #fff; overflow: hidden;
}
.emotional-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.emo-bubble { position: absolute; border-radius: 50%; }
.emo-bubble--1 { width: 360px; height: 360px; background: rgba(255,255,255,.08); top: -120px; left: -120px; }
.emo-bubble--2 { width: 220px; height: 220px; background: rgba(229, 191, 47, .25); bottom: -60px; right: 8%; }
.emo-bubble--3 { width: 120px; height: 120px; background: rgba(199, 86, 127, .3); top: 30%; right: 25%; }

.emotional-cta__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
  text-align: center;
}
.emotional-cta .slogan-img {
  max-width: 720px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.18));
}
.capequita--emo {
  position: absolute; width: 120px;
  left: 6%; top: 8%;
  animation: float 4.5s ease-in-out infinite;
}

/* ===== News ===== */
.news { padding: 100px 0; background: var(--gray-light); }
.news__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 50px;
}
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card__media { position: relative; aspect-ratio: 16/10; }
.news-card__tag {
  position: absolute; top: 14px; left: 14px;
  color: #fff; padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
}
.news-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card__body time { font-size: 12px; font-weight: 700; color: var(--green-dark); letter-spacing: .08em; text-transform: uppercase; }
.news-card__body h3 { font-size: 19px; line-height: 1.3; color: var(--navy); margin: 0; text-wrap: pretty; }
.news-card__body p { font-size: 14.5px; color: var(--gray); margin: 0; line-height: 1.55; flex: 1; }
.news-card__link { font-weight: 700; color: var(--orange); margin-top: 6px; transition: color .2s; }
.news-card__link:hover { color: var(--orange-dark); }

/* ===== Responsivo Home ===== */
@media (max-width: 1100px) {
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .help__grid { grid-template-columns: repeat(2, 1fr); }
  .help-card--featured { grid-column: span 2; }
  .news__grid { grid-template-columns: 1fr 1fr; }
  .news__grid li:nth-child(3) { grid-column: span 2; max-width: 50%; }
}
@media (max-width: 860px) {
  .hero { padding: 40px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .hero__title { font-size: clamp(32px, 7vw, 44px); }
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits__inner { grid-template-columns: 1fr; gap: 50px; }
  .benefits__phone { order: -1; }
  .phone { transform: rotate(0); }
  .news__grid li:nth-child(3) { max-width: 100%; }
  .partner-logo { width: 140px; height: 76px; font-size: 13px; }
}
@media (max-width: 640px) {
  .impact { padding: 60px 0; }
  .pillars, .help, .news, .benefits, .story, .emotional-cta, .partners { padding: 70px 0; }
  .impact__grid, .pillars__grid, .help__grid, .news__grid { grid-template-columns: 1fr; }
  .help-card--featured { grid-column: span 1; }
  .news__grid li:nth-child(3) { grid-column: span 1; }
  .impact__num { font-size: 52px; }
  .hero__trust { gap: 22px; }
  .emotional-cta .slogan-img { max-width: 100%; }
  .capequita--emo { display: none; }
}

/* ============ [3/4] pages.css ============ */
/* =============================================================
   CAPEC — Páginas internas · estilos compartilhados
   ============================================================= */

/* ===== About — Nossa história ===== */
.history { padding: 90px 0; background: #fff; }
.history__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: center;
}
.history__photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.history__copy h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.history__copy p { margin: 0 0 16px; font-size: 17px; line-height: 1.6; }
.history__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}
.history__stat strong { display: block; font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; }
.history__stat span { font-size: 13px; color: var(--gray); margin-top: 4px; display: block; }

/* ===== Missão / Visão / Valores ===== */
.mvv { padding: 90px 0; background: var(--gray-light); }
.mvv__head { text-align: center; margin-bottom: 56px; }
.mvv__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mvv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mvv-card--missao { border-color: var(--orange); }
.mvv-card--visao { border-color: var(--saude); }
.mvv-card--valores { border-color: var(--social); }
.mvv-card__icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  font-size: 30px;
}
.mvv-card--missao .mvv-card__icon { background: rgba(214, 147, 45, .12); color: var(--orange); }
.mvv-card--visao .mvv-card__icon { background: rgba(97, 141, 187, .12); color: var(--saude); }
.mvv-card--valores .mvv-card__icon { background: rgba(199, 86, 127, .12); color: var(--social); }
.mvv-card h3 { font-size: 24px; }
.mvv-card p { margin: 0; font-size: 16px; line-height: 1.55; }
.mvv-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.mvv-card__chips li {
  background: rgba(199, 86, 127, .08);
  color: var(--social);
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
}

/* ===== Pilares detalhados ===== */
.pillar-detail { padding: 100px 0; }
.pillar-detail--alt { background: var(--gray-light); }
.pillar-detail__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.pillar-detail--right .pillar-detail__inner > .pillar-detail__visual { order: 2; }
.pillar-detail__visual {
  position: relative; aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--p-detail-bg, #f5f5f5);
  display: grid; place-items: center;
  padding: 40px;
}
.pillar-detail__visual img { max-width: 90%; max-height: 90%; object-fit: contain; }
.pillar-detail__copy .section-eyebrow { color: var(--p-detail-color, var(--green-dark)); }
.pillar-detail__copy .section-eyebrow::before { background: var(--p-detail-color, var(--green-dark)); }
.pillar-detail__copy h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.pillar-detail__copy p { margin: 0 0 18px; line-height: 1.6; }
.pillar-detail__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.pillar-detail__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: var(--gray);
}
.pillar-detail__list li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  background: var(--p-detail-color); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6 11.5 2.5 8l1-1L6 9.5l6.5-6.5 1 1z'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
}
.pillar-detail--saude    { --p-detail-color: var(--saude);    --p-detail-bg: rgba(97, 141, 187, .1); }
.pillar-detail--nutricao { --p-detail-color: var(--nutricao); --p-detail-bg: rgba(214, 147, 45, .1); }
.pillar-detail--social   { --p-detail-color: var(--social);   --p-detail-bg: rgba(199, 86, 127, .1); }
.pillar-detail--cultura  { --p-detail-color: var(--cultura);  --p-detail-bg: rgba(229, 191, 47, .14); }

/* ===== Big help cards (página Como ajudar) ===== */
.big-help { padding: 100px 0; background: #fff; }
.big-help__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.big-help-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.big-help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.big-help-card--featured {
  background: linear-gradient(180deg, #fff 0%, rgba(214, 147, 45, .04) 100%);
  border-color: var(--orange);
  grid-column: span 2;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  box-shadow: 0 18px 40px rgba(214, 147, 45, .14);
}
.big-help-card__head { display: flex; align-items: center; gap: 18px; }
.big-help-card__icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: rgba(214, 147, 45, .12); color: var(--orange);
}
.big-help-card__icon--pix { background: rgba(120, 175, 80, .12); color: var(--green); }
.big-help-card__icon--padrinho { background: rgba(199, 86, 127, .12); color: var(--social); }
.big-help-card__icon--corp { background: rgba(97, 141, 187, .12); color: var(--saude); }
.big-help-card h3 { font-size: 24px; margin: 0; }
.big-help-card p { margin: 0; line-height: 1.55; font-size: 15.5px; }
.big-help-card__price {
  font-weight: 800; color: var(--navy); font-size: 26px;
  background: rgba(229, 191, 47, .15);
  padding: 14px 18px; border-radius: 14px;
  display: inline-block;
}
.big-help-card__price small { display: block; font-size: 13px; color: var(--gray); font-weight: 600; margin-top: 2px; }
.big-help-card .btn { margin-top: auto; }

.qr-block {
  background: var(--gray-light);
  border-radius: 18px;
  padding: 20px;
  display: flex; align-items: center; gap: 20px;
}
.qr-code {
  width: 120px; height: 120px;
  background: #fff; border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--gray-100);
}
.qr-code svg { width: 100%; height: 100%; }
.qr-block__info p { margin: 0 0 4px; font-size: 13px; color: var(--gray); }
.qr-block__info strong { font-size: 18px; color: var(--navy); display: block; margin-bottom: 8px; }

/* ===== Other ways to help ===== */
.other-ways { padding: 90px 0; background: var(--gray-light); }
.other-ways__head { text-align: center; margin-bottom: 48px; }
.other-ways__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.other-way {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  border-left: 5px solid var(--green);
  transition: transform .25s var(--ease);
}
.other-way:nth-child(2) { border-color: var(--orange); }
.other-way:nth-child(3) { border-color: var(--social); }
.other-way:hover { transform: translateY(-3px); }
.other-way h3 { font-size: 19px; }
.other-way p { margin: 0; font-size: 14.5px; }
.other-way a {
  font-weight: 700; color: var(--green-dark);
  margin-top: 4px; font-size: 14px;
}
.other-way:nth-child(2) a { color: var(--orange-dark); }
.other-way:nth-child(3) a { color: var(--social); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: #fff; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--gray-light);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: background .2s, border-color .2s;
}
.faq-item[open] { background: #fff; border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700; font-size: 17px;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 22px; height: 22px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%232a2d7c' stroke-width='2.5' stroke-linecap='round' d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: center;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item__body { padding: 0 26px 22px; color: var(--gray); font-size: 15.5px; line-height: 1.6; }

/* ===== Calculator (Benefícios) ===== */
.calculator { padding: 100px 0; background: linear-gradient(135deg, rgba(120,175,80,.06) 0%, rgba(229,191,47,.08) 100%); }
.calculator__head { text-align: center; margin-bottom: 40px; }
.calculator__card {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}
.calc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--gray-100); }
.calc-row:last-of-type { border-bottom: 0; }
.calc-row label { font-weight: 700; color: var(--navy); font-size: 16px; flex: 1; display: flex; align-items: center; gap: 12px; }
.calc-row label .calc-emoji { font-size: 24px; }
.calc-input-wrap { position: relative; }
.calc-input-wrap::before {
  content: 'R$'; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: var(--gray);
}
.calc-input {
  width: 160px; padding: 12px 16px 12px 42px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gray-100);
  font-family: inherit; font-weight: 700; font-size: 16px;
  color: var(--navy); background: var(--gray-light);
  text-align: right;
  transition: border-color .2s;
}
.calc-input:focus { outline: 0; border-color: var(--green); background: #fff; }
.calc__btn-row { margin-top: 24px; }
.calc__result {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 28px 32px;
  border-radius: 18px;
  display: none;
  text-align: center;
}
.calc__result.is-shown { display: block; animation: calcReveal .5s var(--ease); }
@keyframes calcReveal { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.calc__result-amount { font-size: 44px; font-weight: 800; line-height: 1; margin: 6px 0 4px; }
.calc__result-label { font-size: 14px; opacity: .9; }
.calc__result-cta { margin-top: 16px; font-size: 15px; }

/* ===== Steps (Benefícios — como funciona) ===== */
.steps { padding: 100px 0; background: #fff; }
.steps__head { text-align: center; margin-bottom: 56px; }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps__grid::before {
  content: ''; position: absolute;
  top: 32px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(to right, var(--green) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: #fff;
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.step__num {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  display: grid; place-items: center;
  font-size: 24px; font-weight: 800; color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(120,175,80,.2);
}
.step:nth-child(2) .step__num { border-color: var(--orange); color: var(--orange-dark); box-shadow: 0 4px 12px rgba(214,147,45,.2); }
.step:nth-child(3) .step__num { border-color: var(--social); color: var(--social); box-shadow: 0 4px 12px rgba(199,86,127,.2); }
.step:nth-child(4) .step__num { border-color: var(--saude); color: var(--saude); box-shadow: 0 4px 12px rgba(97,141,187,.2); }
.step h3 { font-size: 17px; margin: 0 0 8px; }
.step p { margin: 0; font-size: 14.5px; }

/* ===== App stores ===== */
.appstores { padding: 90px 0; background: var(--gray-light); }
.appstores__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.appstores__buttons { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0; }
.store-btn {
  background: var(--navy); color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all .25s;
}
.store-btn:hover { background: var(--navy-dark); transform: translateY(-2px); }
.store-btn__icon { font-size: 24px; }
.store-btn__small { font-size: 11px; display: block; opacity: .8; }
.store-btn__big { font-size: 16px; font-weight: 700; display: block; }
.appstores__qr {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 220px;
  margin: 0 auto;
}
.appstores__qr .qr-code { width: 160px; height: 160px; margin: 0 auto 12px; }
.appstores__qr p { margin: 0; font-size: 13px; color: var(--gray); }

/* ===== Galeria de empresas ===== */
.companies-gallery { padding: 90px 0; background: #fff; }
.companies-gallery__head { text-align: center; margin-bottom: 48px; }
.companies-gallery__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.companies-gallery__grid .partner-logo {
  width: auto;
  height: 110px;
}

/* ===== Testimonials (Empresas) ===== */
.testimonials { padding: 90px 0; background: var(--gray-light); }
.testimonials__head { text-align: center; margin-bottom: 48px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.testimonial-card::before {
  content: '“'; position: absolute; top: -10px; left: 28px;
  font-size: 80px; line-height: 1; color: var(--cultura);
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  margin: 0 0 6px;
  font-style: italic; font-size: 16px; line-height: 1.55;
  color: var(--navy);
}
.testimonial-card__person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-100); }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; color: var(--navy); font-size: 14px; line-height: 1.2; }
.testimonial-card__role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ===== Forms ===== */
.form-section { padding: 90px 0; background: #fff; }
.form-section--gray { background: var(--gray-light); }
.form-card {
  max-width: 760px; margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; color: var(--navy); font-size: 14px; }
.form-field label sup { color: var(--orange); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 15px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid var(--gray-100);
  background: var(--gray-light);
  color: var(--navy);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0; border-color: var(--green); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-checkboxes { display: flex; flex-wrap: wrap; gap: 10px; }
.form-checkboxes label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-light); padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 13.5px; color: var(--navy);
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s;
}
.form-checkboxes input { accent-color: var(--green); }
.form-checkboxes label:has(input:checked) { background: rgba(120,175,80,.15); border-color: var(--green); }

/* ===== Contato ===== */
.contact-grid { padding: 90px 0; background: #fff; }
.contact-grid__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--gray-light);
  border-radius: 16px;
  transition: all .25s;
}
.contact-item:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-item__icon {
  width: 48px; height: 48px; border-radius: 14px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(120,175,80,.15); color: var(--green-dark);
  font-size: 22px;
}
.contact-item:nth-child(2) .contact-item__icon { background: rgba(37, 211, 102, .15); color: #25D366; }
.contact-item:nth-child(3) .contact-item__icon { background: rgba(214, 147, 45, .15); color: var(--orange); }
.contact-item:nth-child(4) .contact-item__icon { background: rgba(97, 141, 187, .15); color: var(--saude); }
.contact-item__copy h4 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); font-weight: 700; margin: 0 0 4px; }
.contact-item__copy p { margin: 0; color: var(--navy); font-weight: 600; font-size: 16px; line-height: 1.4; }

.contact-socials-big {
  margin-top: 12px;
}
.contact-socials-big__list { display: flex; flex-wrap: wrap; gap: 14px; }
.contact-socials-big__list a {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  color: #fff;
  transition: all .25s;
}
.contact-socials-big__list a svg { width: 28px; height: 28px; fill: #fff; }
.contact-socials-big__list a.social--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-socials-big__list a.social--fb { background: #1877F2; }
.contact-socials-big__list a.social--yt { background: #FF0000; }
.contact-socials-big__list a.social--in { background: #0A66C2; }
.contact-socials-big__list a.social--wa { background: #25D366; }
.contact-socials-big__list a:hover { transform: translateY(-3px) scale(1.06); box-shadow: var(--shadow-md); }

.map-section { background: var(--gray-light); padding: 0; }
.map-section iframe, .map-placeholder { width: 100%; height: 420px; border: 0; display: block; }
.map-placeholder {
  background:
    linear-gradient(135deg, rgba(120,175,80,.15) 0%, rgba(97,141,187,.15) 100%),
    repeating-linear-gradient(45deg, rgba(0,0,0,.02) 0 10px, transparent 10px 20px);
  display: grid; place-items: center; gap: 6px;
  font-family: 'Courier New', monospace; color: var(--navy); font-weight: 700;
}
.map-placeholder__pin {
  width: 56px; height: 56px; border-radius: 50% 50% 50% 0;
  background: var(--orange); transform: rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 8px;
}
.map-placeholder__pin::after {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; transform: rotate(45deg);
}

/* ===== Gallery (Notícias) ===== */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  padding: 40px 0 20px;
  background: #fff;
}
.gallery-filter {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--gray-light); color: var(--navy);
  font-weight: 700; font-size: 14px;
  border: 2px solid transparent;
  transition: all .2s;
}
.gallery-filter:hover { background: rgba(120,175,80,.1); }
.gallery-filter.is-active {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
}
.gallery-filter[data-filter="saude"].is-active { background: var(--saude); border-color: var(--saude); }
.gallery-filter[data-filter="nutricao"].is-active { background: var(--orange); border-color: var(--orange); }
.gallery-filter[data-filter="social"].is-active { background: var(--social); border-color: var(--social); }
.gallery-filter[data-filter="cultura"].is-active { background: var(--cultura); border-color: var(--cultura); color: var(--navy); }

.gallery { padding: 30px 0 80px; background: #fff; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item.is-hidden { display: none; }
.gallery-item__media { aspect-ratio: 4/3; }
.gallery-item__tag {
  position: absolute; top: 14px; left: 14px;
  color: #fff; padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
}
.gallery-item__overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 22px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: #fff;
}
.gallery-item__overlay time { font-size: 12px; opacity: .85; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.gallery-item__overlay h3 { color: #fff; font-size: 17px; margin: 6px 0 0; line-height: 1.3; }
.gallery__load-more { display: block; margin: 40px auto 0; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: lbFade .3s ease;
}
.lightbox.is-open { display: flex; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  font-size: 22px; font-weight: 800;
  display: grid; place-items: center;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__inner {
  max-width: 880px; width: 100%;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}
.lightbox__media { background: var(--gray-light); }
.lightbox__media .placeholder-photo { aspect-ratio: auto; height: 100%; }
.lightbox__body { padding: 36px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.lightbox__tag {
  align-self: flex-start;
  color: #fff; padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
}
.lightbox__body time { font-size: 12px; color: var(--gray); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.lightbox__body h3 { font-size: 24px; line-height: 1.25; margin: 0; }
.lightbox__body p { margin: 0; line-height: 1.6; }
.lightbox__share {
  margin-top: auto; display: flex; gap: 10px; padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.lightbox__share button {
  padding: 8px 16px;
  background: var(--gray-light); color: var(--navy);
  font-weight: 700; font-size: 13px;
  border-radius: var(--radius-pill);
}
.lightbox__share button:hover { background: var(--green); color: #fff; }

/* ===== CTA Section (genérica de fechamento de página) ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
}
.cta-section h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-section p { font-size: 18px; opacity: .92; max-width: 580px; margin: 0 auto 28px; }
.cta-section .btn--white { color: var(--green-dark); }

/* ===== Modal de doação ===== */
.donate-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(26, 28, 74, .75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.donate-modal.is-open { display: flex; animation: lbFade .3s ease; }
.donate-modal__inner {
  width: 100%; max-width: 540px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 92vh;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: modalSlide .35s var(--ease);
}
@keyframes modalSlide { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }

.donate-modal__head {
  padding: 22px 28px;
  background: linear-gradient(135deg, #fff 0%, rgba(229,191,47,.1) 100%);
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.donate-modal__head img { height: 40px; width: auto; }
.donate-modal__head h2 { font-size: 20px; margin: 0; }
.donate-modal__close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-light);
  font-size: 18px; font-weight: 800;
  color: var(--navy);
  display: grid; place-items: center;
}
.donate-modal__close:hover { background: var(--gray-100); }

.donate-modal__body { padding: 26px 28px; overflow-y: auto; flex: 1; }

.donate-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--gray-light);
  padding: 4px;
  border-radius: 14px;
  margin-bottom: 22px;
}
.donate-tab {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  color: var(--navy);
  position: relative;
  transition: all .25s;
}
.donate-tab.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.donate-tab__badge {
  position: absolute; top: -8px; right: 8px;
  background: var(--orange); color: #fff;
  padding: 3px 9px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 800;
  letter-spacing: .04em;
}

.donate-field { margin-bottom: 18px; }
.donate-field__label { display: block; font-weight: 700; color: var(--navy); font-size: 13px; margin-bottom: 8px; letter-spacing: .03em; }
.donate-values { display: flex; flex-wrap: wrap; gap: 8px; }
.donate-values button {
  flex: 1; min-width: 80px;
  padding: 14px; border-radius: 12px;
  background: var(--gray-light); color: var(--navy);
  font-weight: 800; font-size: 16px;
  border: 2px solid transparent;
  transition: all .2s;
}
.donate-values button:hover { background: rgba(214,147,45,.1); }
.donate-values button.is-selected {
  background: var(--orange); color: #fff;
  border-color: var(--orange-dark);
}
.donate-custom {
  margin-top: 10px; display: none;
}
.donate-custom.is-shown { display: block; }
.donate-custom input {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--gray-100); background: var(--gray-light);
  border-radius: 12px; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--navy);
}

.donate-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.donate-method {
  padding: 14px 10px; border-radius: 12px;
  background: var(--gray-light); color: var(--navy);
  font-weight: 700; font-size: 13px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 2px solid transparent;
  transition: all .2s;
}
.donate-method__icon { font-size: 22px; }
.donate-method:hover { background: rgba(120,175,80,.1); }
.donate-method.is-selected { background: rgba(120,175,80,.15); border-color: var(--green); }
.donate-method[disabled] { opacity: .4; cursor: not-allowed; }

.donate-modal__body .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.donate-modal__body .form-grid input {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--gray-100); background: var(--gray-light);
  border-radius: 12px; font-family: inherit; font-size: 14.5px; color: var(--navy);
}
.donate-modal__body .form-grid input:focus { outline: 0; border-color: var(--green); background: #fff; }
.donate-modal__body .form-field--full { grid-column: 1 / -1; }

.donate-modal__foot {
  padding: 18px 28px 24px;
  background: linear-gradient(180deg, #fff 0%, var(--gray-light) 100%);
  border-top: 1px solid var(--gray-100);
}

/* Modal — states */
.donate-state { display: none; }
.donate-state.is-active { display: block; }

.donate-loading {
  padding: 60px 20px; text-align: center;
}
.donate-loading__bfly {
  width: 100px; height: 100px; margin: 0 auto 20px;
  animation: spinFly 1.4s linear infinite;
}
@keyframes spinFly {
  0% { transform: rotate(0) translateY(0); }
  25% { transform: rotate(90deg) translateY(-6px); }
  50% { transform: rotate(180deg) translateY(0); }
  75% { transform: rotate(270deg) translateY(-6px); }
  100% { transform: rotate(360deg) translateY(0); }
}

.donate-success {
  padding: 40px 30px; text-align: center;
}
.donate-success__bfly { width: 120px; margin: 0 auto 14px; animation: float 3s ease-in-out infinite; position: relative; }
.donate-success h3 { font-size: 24px; margin: 0 0 12px; color: var(--green-dark); }
.donate-success p { margin: 0 0 24px; }
.donate-success__btns { display: flex; flex-direction: column; gap: 10px; }

.donate-error {
  padding: 40px 30px; text-align: center;
}
.donate-error__icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: rgba(199, 86, 127, .12);
  color: var(--social); font-size: 32px; font-weight: 800;
  display: grid; place-items: center;
}
.donate-error h3 { font-size: 22px; margin: 0 0 12px; color: var(--social); }
.donate-error p { margin: 0 0 24px; }

/* ===== Responsivo páginas internas ===== */
@media (max-width: 1100px) {
  .mvv__grid, .testimonials__grid, .other-ways__grid { grid-template-columns: 1fr; }
  .big-help__grid { grid-template-columns: 1fr; }
  .big-help-card--featured { grid-column: span 1; grid-template-columns: 1fr; gap: 24px; }
  .companies-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .history__grid, .pillar-detail__inner, .appstores__inner, .contact-grid__inner { grid-template-columns: 1fr; gap: 40px; }
  .pillar-detail--right .pillar-detail__inner > .pillar-detail__visual { order: 0; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .steps__grid::before { display: none; }
  .lightbox__inner { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .history { padding: 70px 0; }
  .mvv, .pillar-detail, .big-help, .other-ways, .faq, .steps, .appstores, .calculator, .gallery, .companies-gallery, .testimonials, .contact-grid { padding: 60px 0; }
  .steps__grid { grid-template-columns: 1fr; }
  .gallery__grid, .companies-gallery__grid { grid-template-columns: 1fr 1fr; }
  .form-card, .donate-modal__inner { padding: 0; }
  .form-card { padding: 24px; }
  .donate-modal__body { padding: 20px; }
  .donate-modal__head, .donate-modal__foot { padding-left: 20px; padding-right: 20px; }
  .donate-methods { grid-template-columns: 1fr; }
  .calc-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .calc-input { width: 100%; }
  .history__stats { grid-template-columns: 1fr; }
}

/* ============ [4/4] v3.css ============ */
/* =============================================================
   CAPEC — Home V3 · Adições V3
   - Capequita 3D (com black bg removido via mix-blend-mode)
   - Bloco Instagram
   - Bloco Bazar Solidário (teaser na home)
   - Página Bazar completa
   - Páginas legais
   - Modal de sucesso: vídeo Capequita
   - Calc share / share menu
   - Footer legal links
   ============================================================= */

/* ===== Pillars (Home) — ícones centralizados ===== */
.pillar {
  text-align: center;
  align-items: center;
}
.pillar__icon {
  background: transparent !important;
  width: 132px !important;
  height: auto !important;
  border-radius: 0 !important;
  place-items: center !important;
  margin: 0 auto !important;
}
.pillar__icon img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
.pillar__cta {
  align-self: center !important;
}

/* ===== Hero photo — imagem real ===== */
.hero__photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ===== Story photo — imagem real ===== */
.story__photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.capequita-3d {
  mix-blend-mode: normal;
  filter: drop-shadow(0 14px 24px rgba(42, 45, 124, .25));
}

/* ===== Footer legal links ===== */
.site-footer__legal { display: flex; flex-direction: column; gap: 6px; }
.site-footer__legal p { margin: 0; }
.site-footer__legal-links {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.site-footer__legal-links a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.site-footer__legal-links a:hover { color: var(--cultura); }
.site-footer__legal-links span { opacity: .4; }

/* ===== Vídeo Capequita agradecendo no modal de sucesso ===== */
.capequita-thanks-video {
  display: block;
  width: 240px; height: 240px;
  margin: 0 auto 14px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(42, 45, 124, .18);
  background: #fff5d6;
}
@media (max-width: 540px) {
  .capequita-thanks-video { width: 180px; height: 180px; }
}

/* ===== Botão "Compartilhar resultado" calculadora ===== */
.calc__share-row {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 16px; flex-wrap: wrap;
}
.calc__share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  transition: all .2s;
}
.calc__share-btn:hover { background: #fff; color: var(--green-dark); border-color: #fff; }

/* ===== Share popover (compartilhar) ===== */
.share-popover {
  position: fixed; inset: 0; z-index: 320;
  background: rgba(26, 28, 74, .75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: lbFade .25s ease;
}
.share-popover.is-open { display: flex; }
.share-popover__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 420px; width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.share-popover__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-light);
  font-size: 18px; font-weight: 800; color: var(--navy);
  display: grid; place-items: center;
}
.share-popover__close:hover { background: var(--gray-100); }
.share-popover h3 { font-size: 20px; margin: 0 0 6px; }
.share-popover__sub { margin: 0 0 18px; font-size: 14px; color: var(--gray); }
.share-popover__msg {
  background: var(--gray-light);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px; color: var(--navy);
  margin-bottom: 18px; line-height: 1.45;
}
.share-popover__list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.share-popover__list a, .share-popover__list button {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 6px;
  border-radius: 14px;
  background: var(--gray-light);
  color: var(--navy);
  font-size: 12px; font-weight: 700;
  transition: all .2s;
}
.share-popover__list a:hover, .share-popover__list button:hover {
  background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-2px);
}
.share-popover__list .share-ic {
  width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
}
.share-popover__list .share-ic--wa { background: #25D366; }
.share-popover__list .share-ic--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.share-popover__list .share-ic--fb { background: #1877F2; }
.share-popover__list .share-ic--copy { background: var(--navy); }
.share-popover__list .share-ic svg { width: 20px; height: 20px; fill: #fff; }

/* ===== Bloco Instagram (Home) ===== */
.ig-block { padding: 100px 0; background: #fff; }
.ig-block__head { text-align: center; margin-bottom: 40px; }
.ig-block__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  max-width: 1000px; margin: 0 auto;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 10px, rgba(0,0,0,.02) 10px 20px),
    linear-gradient(135deg, #f7f3eb, #eee8db);
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.ig-tile:nth-child(2n) {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 10px, rgba(255,255,255,.06) 10px 20px),
    linear-gradient(135deg, var(--green-light), var(--green));
}
.ig-tile:nth-child(3n) {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 10px, rgba(255,255,255,.06) 10px 20px),
    linear-gradient(135deg, #e8b65f, var(--orange));
}
.ig-tile:nth-child(5n) {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 10px, rgba(255,255,255,.06) 10px 20px),
    linear-gradient(135deg, #82a8d0, var(--saude));
}
.ig-tile:hover { transform: translateY(-3px); }
.ig-tile__tag {
  font-family: 'Courier New', monospace; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.95);
  background: rgba(0,0,0,.28); padding: 5px 10px; border-radius: 6px;
}
.ig-tile:first-child .ig-tile__tag { color: var(--navy); background: rgba(255,255,255,.7); }
.ig-tile__icon {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px;
  fill: rgba(255,255,255,.85);
}
.ig-tile:first-child .ig-tile__icon { fill: rgba(42, 45, 124, .35); }
.ig-block__foot {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.ig-handle {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--navy);
  font-size: 17px;
}
.ig-handle__ic {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  display: grid; place-items: center;
}
.ig-handle__ic svg { width: 20px; height: 20px; fill: #fff; }
.btn--ig {
  background: #fff; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--ig:hover {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: #fff; border-color: transparent;
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .ig-block__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Bloco Bazar (Home — teaser) ===== */
.bazar-teaser {
  padding: 90px 0;
  background: linear-gradient(135deg, #fdf6e3 0%, #fbecc5 100%);
  position: relative;
  overflow: hidden;
}
.bazar-teaser::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(214, 147, 45, .18); filter: blur(60px);
}
.bazar-teaser::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(199, 86, 127, .15); filter: blur(50px);
}
.bazar-teaser__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
.bazar-teaser__copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 12px 0 18px;
  text-wrap: balance;
}
.bazar-teaser__copy h2 em {
  font-style: italic; color: var(--social);
  background: linear-gradient(transparent 75%, rgba(229, 191, 47, .55) 75%);
  padding: 0 4px;
}
.bazar-teaser__copy p {
  font-size: 17px; line-height: 1.55; color: var(--gray);
  margin: 0 0 28px; max-width: 520px;
}
.bazar-teaser__ctas {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.bazar-teaser__ctas .wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--green-dark);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.bazar-teaser__ctas .wa-link:hover { border-bottom-color: var(--green-dark); gap: 12px; }
.bazar-teaser__ctas .wa-link svg { width: 18px; height: 18px; fill: #25D366; }

.bazar-teaser__visual {
  position: relative;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px;
  aspect-ratio: 1 / 0.95;
}
.bazar-teaser__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.bazar-teaser__photo--main { grid-row: span 2; }
.bazar-teaser__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.bazar-teaser__badge {
  position: absolute; top: 18px; left: 18px;
  background: #fff; color: var(--navy);
  font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: 8px;
}
.bazar-teaser__badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s infinite;
}

@media (max-width: 860px) {
  .bazar-teaser__inner { grid-template-columns: 1fr; gap: 36px; }
  .bazar-teaser__visual { max-width: 520px; }
}

/* ============================================================= */
/* ===== Página Bazar Solidário ===== */
/* ============================================================= */

/* Hero do bazar — banner com foto */
.bazar-hero {
  position: relative;
  background: linear-gradient(135deg, #2a2d7c 0%, #3a3e98 100%);
  color: #fff;
  padding: 70px 0 60px;
  overflow: hidden;
}
.bazar-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(214, 147, 45, .35), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(229, 191, 47, .25), transparent 45%);
}
.bazar-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px;
  align-items: center;
}
.bazar-hero__copy .page-hero__crumb { color: var(--cultura); }
.bazar-hero__copy .page-hero__crumb a { color: rgba(255,255,255,.7); }
.bazar-hero__copy .page-hero__crumb a:hover { color: var(--cultura); }
.bazar-hero__copy h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  color: #fff; font-weight: 800;
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 18px; text-wrap: balance;
}
.bazar-hero__copy h1 em {
  font-style: italic; color: var(--cultura);
  background: none; padding: 0;
}
.bazar-hero__copy .lead {
  font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin: 0 0 32px; max-width: 520px;
}
.bazar-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bazar-hero__chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.bazar-hero__chip svg { width: 16px; height: 16px; fill: var(--cultura); }

.bazar-hero__collage {
  position: relative; aspect-ratio: 1 / 1;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px;
}
.bazar-hero__collage img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
}
.bazar-hero__collage img:nth-child(1) { grid-row: span 2; }

/* O que é o bazar */
.bazar-about { padding: 90px 0; background: #fff; }
.bazar-about__inner {
  max-width: 820px; margin: 0 auto;
  text-align: center;
}
.bazar-about h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 18px; }
.bazar-about p {
  font-size: 18px; line-height: 1.6; color: var(--gray);
  margin: 0 auto 16px;
}

/* Vídeo */
.bazar-video { padding: 0 0 90px; background: #fff; }
.bazar-video__wrap {
  max-width: 920px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.bazar-video__wrap video { width: 100%; height: 100%; display: block; }
.bazar-video__placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 12px, rgba(255,255,255,.02) 12px 24px),
    linear-gradient(135deg, #3a3e98 0%, var(--navy) 100%);
  color: rgba(255,255,255,.8);
  font-family: 'Courier New', monospace; font-size: 14px;
  flex-direction: column; gap: 12px;
}
.bazar-video__play {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  color: var(--navy);
  margin-bottom: 4px;
}
.bazar-video__play::before {
  content: ''; width: 0; height: 0;
  border-left: 22px solid var(--navy);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

/* Como funciona — 3 cards */
.bazar-how { padding: 90px 0; background: var(--gray-light); }
.bazar-how__head { text-align: center; margin-bottom: 48px; }
.bazar-how__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.bazar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bazar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bazar-card--doar    { border-color: var(--green); }
.bazar-card--comprar { border-color: var(--orange); }
.bazar-card--local   { border-color: var(--saude); }
.bazar-card__ic {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
}
.bazar-card--doar    .bazar-card__ic { background: rgba(120,175,80,.12); color: var(--green-dark); }
.bazar-card--comprar .bazar-card__ic { background: rgba(214,147,45,.12); color: var(--orange-dark); }
.bazar-card--local   .bazar-card__ic { background: rgba(97,141,187,.12); color: var(--saude); }
.bazar-card__ic svg { width: 28px; height: 28px; fill: currentColor; }
.bazar-card h3 { font-size: 21px; margin: 0; }
.bazar-card p { margin: 0; line-height: 1.55; font-size: 15px; flex: 1; }
.bazar-card .btn { margin-top: 8px; align-self: flex-start; }
.bazar-card__map {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 14px;
  display: flex; align-items: center; gap: 12px;
  margin-top: 4px;
}
.bazar-card__pin {
  width: 38px; height: 38px; border-radius: 50% 50% 50% 0;
  background: var(--orange); transform: rotate(-45deg);
  flex-shrink: 0;
  display: grid; place-items: center;
}
.bazar-card__pin::after {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; transform: rotate(45deg);
}
.bazar-card__map p { font-size: 13px; margin: 0; }

@media (max-width: 860px) {
  .bazar-how__grid { grid-template-columns: 1fr; }
}

/* Detalhes práticos */
.bazar-details { padding: 90px 0; background: #fff; }
.bazar-details__head { text-align: center; margin-bottom: 48px; }
.bazar-details__list {
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bazar-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--gray-light);
  border-radius: 18px;
  border-left: 4px solid var(--green);
  transition: all .2s;
}
.bazar-detail:nth-child(2) { border-color: var(--orange); }
.bazar-detail:nth-child(3) { border-color: var(--social); }
.bazar-detail:nth-child(4) { border-color: var(--cultura); }
.bazar-detail:nth-child(5) { border-color: var(--saude); grid-column: span 2; }
.bazar-detail:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateX(3px); }
.bazar-detail__ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.bazar-detail__copy h4 {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray); font-weight: 700;
  margin: 0 0 4px;
}
.bazar-detail__copy p { margin: 0; color: var(--navy); font-weight: 600; font-size: 16px; line-height: 1.4; }

@media (max-width: 720px) {
  .bazar-details__list { grid-template-columns: 1fr; }
  .bazar-detail:nth-child(5) { grid-column: span 1; }
}

/* Galeria de fotos */
.bazar-gallery { padding: 90px 0; background: var(--gray-light); }
.bazar-gallery__head { text-align: center; margin-bottom: 40px; }
.bazar-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bazar-gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bazar-gallery__item:nth-child(7n+1) { grid-row: span 2; }
.bazar-gallery__item:nth-child(7n+1) { aspect-ratio: 1 / 2.07; }
.bazar-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s var(--ease);
}
.bazar-gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bazar-gallery__item:hover img { transform: scale(1.05); }

@media (max-width: 860px) {
  .bazar-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .bazar-gallery__item:nth-child(7n+1) { grid-row: auto; aspect-ratio: 1 / 1; }
}

/* CTA final bazar */
.bazar-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-align: center;
}
.bazar-cta h2 {
  color: #fff; font-size: clamp(28px, 4vw, 42px);
  max-width: 720px; margin: 0 auto 16px;
}
.bazar-cta p { color: rgba(255,255,255,.92); font-size: 18px; max-width: 580px; margin: 0 auto 30px; }
.bazar-cta .btn {
  background: #fff; color: #128C7E;
  font-size: 18px; padding: 18px 36px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.bazar-cta .btn:hover { transform: translateY(-3px); background: var(--cultura); color: var(--navy); }
.bazar-cta .btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ===== Lightbox de imagens reais (bazar) ===== */
.img-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.img-lightbox.is-open { display: flex; animation: lbFade .3s ease; }
.img-lightbox img {
  max-width: 100%; max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.5);
}
.img-lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 22px; font-weight: 800;
  display: grid; place-items: center;
}
.img-lightbox__close:hover { background: rgba(255,255,255,.22); }
.img-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 28px;
  display: grid; place-items: center;
}
.img-lightbox__nav:hover { background: rgba(255,255,255,.22); }
.img-lightbox__nav--prev { left: 24px; }
.img-lightbox__nav--next { right: 24px; }

/* ===== Páginas legais ===== */
.legal {
  padding: 70px 0 100px;
  background: #fff;
}
.legal__inner {
  max-width: 800px; margin: 0 auto;
}
.legal h2 {
  font-size: clamp(22px, 2.5vw, 26px);
  margin: 40px 0 14px;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 18px; margin: 24px 0 10px;
  color: var(--green-dark);
}
.legal p, .legal li {
  font-size: 16px; line-height: 1.65;
  color: var(--gray);
  margin: 0 0 12px;
}
.legal ul {
  padding-left: 22px; margin: 0 0 16px;
  list-style: disc;
}
.legal ul li { margin-bottom: 6px; }
.legal a {
  color: var(--orange-dark);
  border-bottom: 1px solid rgba(214, 147, 45, .35);
  transition: color .2s, border-color .2s;
}
.legal a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.legal strong { color: var(--navy); font-weight: 700; }
.legal__updated {
  display: inline-block;
  background: var(--gray-light);
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; color: var(--gray);
  margin-bottom: 28px;
}
.legal__toc {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 36px;
}
.legal__toc h4 {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray); margin: 0 0 10px;
}
.legal__toc ol {
  list-style: decimal inside;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px;
  padding: 0; margin: 0;
}
.legal__toc ol li { margin: 0; font-size: 14px; }
.legal__toc a {
  color: var(--navy); border: 0;
  font-weight: 600;
}
.legal__toc a:hover { color: var(--orange); }

@media (max-width: 640px) {
  .legal__toc ol { grid-template-columns: 1fr; }
  
}

/* Footer — ícones sob o "A" de Acompanhe e links sob o "I" de Institucional */
.site-footer .socials,
.site-footer .footer-links{ list-style:none; margin:0; padding:0; }