:root {
  --navy: #2A3071;
  --navy-deep: #1F2456;
  --navy-ink: #23284f;
  --yellow: #FCBE09;
  --yellow-soft: #F6CC07;
  --off: #F5F5F5;
  --white: #fff;
  --ink: #23253a;
  --ink-soft: #5a5d78;
  --line: #e3e4ee;
  --radius: 20px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.sr-only.focusable:focus { position: fixed; top: 8px; left: 8px; width: auto; height: auto; clip: auto; background: var(--yellow); color: var(--navy); padding: 10px 16px; border-radius: 100px; z-index: 99; }

.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(42, 48, 113, .08);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.on-dark .kicker { color: var(--yellow); background: rgba(252, 190, 9, .12); }

h1, h2, h3 { font-weight: 800; line-height: 1.15; letter-spacing: -.01em; color: var(--navy); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-intro { max-width: 640px; color: var(--ink-soft); margin-bottom: 40px; font-size: 17px; }
.on-dark .section-intro { color: #c9cce6; }

section { padding: 80px 0; }

/* ── Header ─────────────────────────── */
header.topo {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topo-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 20px; max-width: 1220px; margin: 0 auto; }
.topo .logo { display: flex; align-items: center; gap: 16px; }
.topo .logo img { width: 380px; height: auto; }
.topo .logo img { transition: width .35s var(--ease); }
.topo .logo .topo-avatar {
  width: auto; height: 0; opacity: 0; flex-shrink: 0;
  object-fit: contain; object-position: center;
  align-self: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35));
  transition: height .35s var(--ease), opacity .3s var(--ease);
}
.topo.compacto .topo-in { padding-top: 4px; padding-bottom: 4px; }
.topo.compacto .logo img { width: 200px; }
.topo.compacto .logo .topo-avatar { height: 152px; opacity: 1; }
nav.menu { display: flex; gap: 4px; flex-wrap: wrap; }
nav.menu a {
  color: #dfe1f3; text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 8px 12px; border-radius: 100px; transition: all .2s var(--ease);
}
nav.menu a:hover { background: rgba(255, 255, 255, .1); color: var(--white); }
.menu-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 26px; cursor: pointer; padding: 4px 10px; }

/* ── Botões ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  border-radius: 100px; padding: 14px 28px; border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); }
.btn:active { transform: scale(.97); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: var(--yellow-soft); }
.btn-outline { border: 2px solid rgba(255, 255, 255, .35); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-zap { background: #25D366; color: #fff; }
.btn-zap:hover { background: #1eb958; }

/* ── Hero ───────────────────────────── */
.hero {
  background: radial-gradient(1100px 600px at 75% 20%, #383f8c 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: var(--white); padding: 0; overflow: hidden;
}
.hero-in { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 24px; max-width: 1180px; margin: 0 auto; padding: 56px 20px 0; min-height: 620px; }
.hero-txt { padding-bottom: 72px; }
.hero-txt .num {
  font-size: 15px; font-weight: 800; letter-spacing: .18em; color: var(--yellow);
  text-transform: uppercase; margin-bottom: 18px;
}
.hero-txt h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 900; color: var(--white); }
.hero-txt h1 span { color: var(--yellow); }
.hero-txt p { margin: 20px 0 32px; font-size: 18px; color: #d9dbf0; max-width: 480px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-foto { position: relative; align-self: end; }
.hero-foto::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 78%;
  background: var(--yellow); border-radius: 300px 300px 0 0; opacity: .95;
  transform-origin: 50% 100%;
  animation: respira 4.5s ease-in-out infinite;
}
@keyframes respira {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(252, 190, 9, .25); }
  50% { transform: scale(1.05); box-shadow: 0 0 110px rgba(252, 190, 9, .55); }
}
.hero-foto img { position: relative; z-index: 1; width: 100%; max-width: 590px; margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
  animation: sobe .8s var(--ease) .15s both, boia 5.5s ease-in-out 1s infinite; }
@keyframes boia { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Sobre ──────────────────────────── */
.sobre-grid { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }
.sobre-card {
  background: var(--navy); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 28px rgba(42, 48, 113, .25); position: sticky; top: 90px;
}
.sobre-card img.foto { background: linear-gradient(180deg, #383f8c, var(--navy)); }
.sobre-card .dados { padding: 22px 24px; color: #d9dbf0; font-size: 14px; }
.sobre-card .dados b { color: var(--white); display: block; font-size: 15px; }
.sobre-card .dados div { padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.sobre-card .dados div:last-child { border: 0; }
.sobre-txt p { margin-bottom: 18px; color: #40435f; font-size: 17px; }
.sobre-txt p.destaque {
  border-left: 4px solid var(--yellow); padding: 14px 20px; background: var(--off);
  border-radius: 0 14px 14px 0; font-weight: 600; color: var(--navy);
}

/* ── Trabalho ───────────────────────── */
.trabalho { background: var(--off); }
.numeros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.num-card {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .3s var(--ease);
}
.num-card:hover { transform: translateY(-3px); }
.num-card .n { font-size: 34px; font-weight: 900; color: var(--yellow); font-variant-numeric: tabular-nums; line-height: 1.1; }
.num-card .l { font-size: 14px; color: #d9dbf0; margin-top: 6px; }
.trab-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trab-col { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.trab-col h3 { font-size: 19px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.trab-col .sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.trab-col ul { list-style: none; }
.trab-col li { padding: 9px 0 9px 26px; position: relative; font-size: 15px; border-bottom: 1px dashed var(--line); }
.trab-col li:last-child { border: 0; }
.trab-col li::before { content: ''; position: absolute; left: 0; top: 16px; width: 10px; height: 10px; border-radius: 3px; background: var(--yellow); }

/* ── Propostas (flip 3D) ────────────── */
.propostas { background: var(--navy-deep); }
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prop-flip { perspective: 900px; min-height: 300px; cursor: pointer; }
.prop-inner {
  position: relative; width: 100%; height: 100%; min-height: 300px;
  transform-style: preserve-3d; transition: transform .6s var(--ease);
}
.prop-flip.virado .prop-inner { transform: rotateY(180deg); }
@media (hover: hover) { .prop-flip:hover .prop-inner { transform: rotateY(180deg); } }
.prop-face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column;
}
.prop-frente {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white); justify-content: space-between;
}
.prop-verso {
  background: var(--yellow); color: var(--navy); transform: rotateY(180deg);
  justify-content: center; box-shadow: 0 16px 40px rgba(0, 0, 0, .3); overflow-y: auto;
}
.prop-card .area, .prop-frente .area { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); }
.prop-frente h3 { color: var(--white); font-size: 22px; margin: 12px 0; flex: 1; }
.prop-frente .vire { font-size: 13px; color: #a3a8d4; font-weight: 600; }
.prop-verso p { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.prop-verso .pub { font-size: 13px; border-top: 2px solid rgba(42, 48, 113, .25); padding-top: 12px; }
.prop-verso .pub b { font-weight: 900; display: block; }

/* ── Notícias ───────────────────────── */
.not-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.not-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.not-card:hover { transform: perspective(900px) rotateX(2.5deg) translateY(-6px); box-shadow: 0 18px 40px rgba(20, 22, 50, .15); }
.not-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.not-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.not-card time { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.not-card h3 { font-size: 18px; line-height: 1.3; }
.not-card p { font-size: 14px; color: var(--ink-soft); flex: 1; }
.not-card .leia { color: var(--navy); font-weight: 800; font-size: 14px; }
.center-cta { text-align: center; margin-top: 40px; }

/* ── Instagram ──────────────────────── */
.insta { background: var(--off); }
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.insta-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1; text-decoration: none; background: var(--navy); }
.insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.insta-card:hover img { transform: scale(1.05); }
.insta-card .cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 12px 10px;
  background: linear-gradient(transparent, rgba(20, 22, 50, .85));
  color: #fff; font-size: 12px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.insta-vazio, .galeria-vazia { text-align: center; color: var(--ink-soft); padding: 40px; border: 2px dashed var(--line); border-radius: var(--radius); }

/* ── Galeria (polaroid) ─────────────── */
.gal-grid { columns: 4 240px; column-gap: 18px; }
.gal-item {
  break-inside: avoid; margin-bottom: 18px; position: relative;
  background: #fff; padding: 10px 10px 14px; border-radius: 6px;
  box-shadow: 0 6px 18px rgba(20, 22, 50, .18);
  transform: rotate(-1.6deg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), z-index 0s;
}
.gal-item:nth-child(2n) { transform: rotate(1.8deg); }
.gal-item:nth-child(3n) { transform: rotate(-0.8deg); }
.gal-item:hover {
  transform: rotate(0) scale(1.06); z-index: 5;
  box-shadow: 0 22px 50px rgba(20, 22, 50, .3);
}
.gal-item img { width: 100%; border-radius: 3px; }
.gal-item figcaption { padding: 10px 4px 0; color: var(--ink-soft); font-size: 13px; font-weight: 600; text-align: center; }

/* ── Contato ────────────────────────── */
.contato { background: radial-gradient(900px 500px at 20% 10%, #383f8c 0%, var(--navy) 60%); }
.cont-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.cont-info p { color: #c9cce6; margin: 16px 0 28px; max-width: 420px; }
.redes { display: flex; gap: 12px; margin-top: 24px; }
.redes a {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #fff; text-decoration: none; font-weight: 800;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.redes a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-3px); }
form.cont-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: 0 12px 28px rgba(0, 0, 0, .2); }
.cont-form label { display: block; font-weight: 700; font-size: 14px; color: var(--navy-ink); margin: 16px 0 6px; }
.cont-form label:first-child { margin-top: 0; }
.cont-form input, .cont-form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font: inherit; font-size: 15px; transition: border .2s var(--ease), box-shadow .2s var(--ease);
}
.cont-form input:focus, .cont-form textarea:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(42, 48, 113, .15); }
.cont-form button { width: 100%; justify-content: center; margin-top: 22px; }
.form-msg { margin-top: 14px; font-size: 14px; font-weight: 600; display: none; padding: 12px 16px; border-radius: 12px; }
.form-msg.ok { display: block; background: #e5f7e9; color: #1c7a33; }
.form-msg.erro { display: block; background: #fde8ec; color: #b3122f; }

/* ── Rodapé ─────────────────────────── */
footer { background: #14163a; color: #b8bbdd; padding: 56px 0 26px; font-size: 14px; }
.foot-hero {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: linear-gradient(135deg, #1F2456, #2A3071 60%, #343b85);
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 24px; padding: 28px 36px; margin-bottom: 40px;
}
.foot-hero .logo-foot { width: 250px; border-radius: 14px; }
.foot-votenum { text-align: center; }
.foot-votenum .foot-cargo { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #c9cce6; display: block; }
.foot-votenum b {
  display: block; font-size: 58px; font-weight: 900; color: var(--navy); line-height: 1.15;
  background: var(--yellow); border-radius: 16px; padding: 0 26px; margin: 8px 0;
  font-variant-numeric: tabular-nums; letter-spacing: .04em;
}
.foot-votenum .foot-nome { font-size: 14px; font-weight: 700; color: #fff; }
.foot-social { display: flex; gap: 12px; }
.foot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
footer h4 { color: var(--yellow); font-size: 13px; margin-bottom: 14px; letter-spacing: .1em; text-transform: uppercase; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
footer li::before { content: ''; width: 6px; height: 6px; border-radius: 2px; background: var(--yellow); opacity: .7; flex-shrink: 0; }
footer a { color: #cdd0e8; text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--yellow); }
.foot-base { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 22px; flex-wrap: wrap; }
.foot-base .aw7 { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #8b8fb8; text-decoration: none; }
.foot-base .aw7 img { width: 64px; opacity: .55; filter: brightness(0) invert(1); }
.foot-legal { font-size: 12.5px; color: #8b8fb8; max-width: 640px; }

/* ── Página de notícia ──────────────── */
.artigo-hero { background: var(--navy); color: #fff; padding: 56px 0 40px; }
.artigo-hero h1 { color: #fff; font-size: clamp(28px, 4.5vw, 44px); max-width: 820px; }
.artigo-hero time { color: var(--yellow); font-weight: 700; font-size: 14px; display: block; margin-top: 14px; }
.artigo-body { max-width: 780px; margin: 0 auto; padding: 48px 20px; }
.artigo-body img.capa { border-radius: var(--radius); margin-bottom: 32px; width: 100%; }
.artigo-body p { margin-bottom: 20px; font-size: 17.5px; color: #33355a; }
.compartilhar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.compartilhar span { font-weight: 800; color: var(--navy); font-size: 14px; }
.compartilhar a, .compartilhar button {
  border: 1.5px solid var(--line); background: #fff; border-radius: 100px; padding: 8px 18px;
  font: inherit; font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; cursor: pointer;
  transition: all .2s var(--ease);
}
.compartilhar a:hover, .compartilhar button:hover { background: var(--navy); color: #fff; }

/* ── Flutuante WhatsApp ─────────────── */
.zap-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  transition: transform .2s var(--ease);
}
.zap-float:hover { transform: scale(1.08); }
.zap-float svg { width: 30px; height: 30px; fill: #fff; }

.fade { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.fade.in { opacity: 1; transform: none; }

/* ── Efeitos ────────────────────────── */
@keyframes sobe { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes flutua { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(6deg); } }
@keyframes pulsa { 0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.3); } 50% { box-shadow: 0 8px 34px rgba(37,211,102,.55); } }
.hero-txt .num, .hero-txt h1, .hero-txt p, .hero-cta { animation: sobe .7s var(--ease) both; }
.hero-txt h1 { animation-delay: .08s; }
.hero-txt p { animation-delay: .16s; }
.hero-cta { animation-delay: .24s; }
.hero-foto img { animation: sobe .8s var(--ease) .15s both; }
.hero { position: relative; }
.hero .blob {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background: rgba(252, 190, 9, .07); animation: flutua 9s ease-in-out infinite;
}
.hero .blob.b1 { width: 200px; height: 200px; bottom: 6%; left: -70px; top: auto; }
.hero .blob.b2 { width: 110px; height: 110px; top: 64%; left: 47%; animation-delay: -3s; background: rgba(255,255,255,.05); }
.hero .blob.b3 { width: 300px; height: 300px; top: -110px; right: -90px; animation-delay: -6s; background: rgba(255,255,255,.04); }
.hero-in { position: relative; z-index: 1; }
.zap-float { animation: pulsa 2.6s ease-in-out infinite; }
.fade:nth-child(2) { transition-delay: .08s; }
.fade:nth-child(3) { transition-delay: .16s; }
.fade:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; }
}

/* ── Responsivo ─────────────────────── */
@media (max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; min-height: 0; }
  .hero-txt { padding: 48px 0 40px; }
  .hero-foto { max-width: 380px; margin: 0 auto; }
  .sobre-grid, .cont-grid { grid-template-columns: 1fr; }
  .sobre-card { position: static; max-width: 420px; }
  .numeros { grid-template-columns: repeat(2, 1fr); }
  .trab-cols, .prop-grid, .not-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .topo .logo { gap: 10px; }
  .topo .logo img { width: 230px; }
  .topo.compacto .logo img { width: 150px; }
  .topo.compacto .logo .topo-avatar { height: 104px; }
  nav.menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 12px 20px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
  nav.menu.aberto { display: flex; }
  .menu-toggle { display: block; }
  .trab-cols, .prop-grid, .not-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .numeros { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ── Ícones ─────────────────────────── */
.ico { width: 22px; height: 22px; flex-shrink: 0; }
.trab-col h3 .ico { color: var(--navy); background: var(--baby, #FCBE0922); background: rgba(252, 190, 9, .25); border-radius: 10px; padding: 6px; width: 34px; height: 34px; }
.sobre-card .dados div { display: flex; gap: 12px; align-items: center; }
.sobre-card .dados .ico { color: var(--yellow); width: 20px; height: 20px; }
.sobre-card .dados div > b { display: inline; }
.sobre-card .dados div > div { flex: 1; }
.btn .ico { width: 20px; height: 20px; }
.redes a .ico { width: 22px; height: 22px; }
.apoio-cta { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.apoio-cta-img { width: 240px; border-radius: 20px; box-shadow: 0 16px 40px rgba(0,0,0,.4); transform: rotate(-3deg); transition: transform .3s var(--ease); }
.apoio-cta-img:hover { transform: rotate(0) scale(1.04); }
footer li { display: flex; align-items: center; gap: 10px; }
footer li .ico { width: 17px; height: 17px; color: var(--yellow); }

.num-card .num-ico { width: 38px; height: 38px; color: var(--yellow); background: rgba(252, 190, 9, .14); border-radius: 12px; padding: 8px; margin-bottom: 12px; }

/* icones das propostas */
.prop-ico { width: 46px; height: 46px; color: var(--yellow); background: rgba(252, 190, 9, .14); border-radius: 14px; padding: 10px; margin-bottom: 14px; }
.prop-marca { position: absolute; right: -22px; bottom: -22px; width: 150px; height: 150px; opacity: .06; color: #fff; pointer-events: none; }
.prop-verso .prop-marca { color: var(--navy); opacity: .08; }
.prop-frente, .prop-verso { overflow: hidden; }

/* mobile: logo centralizada, foto acima do texto no hero, apoio centrado */
@media (max-width: 640px) {
  .topo-in { justify-content: center; position: relative; padding-right: 52px; }
  .menu-toggle { position: absolute; right: 8px; top: 14px; transform: none; z-index: 2; }
  .hero-in { display: flex; flex-direction: column; }
  .hero-foto { order: -1; width: 100%; max-width: 320px; margin: 28px auto 0; }
  .hero-txt { padding: 28px 0 44px; text-align: center; }
  .hero-txt p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .apoio-cta { flex-direction: column; text-align: center; }
  .apoio-cta .btn { margin: 0 auto; }
  .apoio-cta-img { margin: 0 auto; }
  .foot-hero { justify-content: center; text-align: center; padding: 24px; }
  .foot-hero .logo-foot { width: 210px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-base { justify-content: center; text-align: center; }
}

/* marcadores tematicos nas listas do trabalho */
.trab-col li::before { border-radius: 0; background: var(--yellow); width: 15px; height: 15px; top: 13px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27black%27%3E%3Cpath%20d%3D%27M12%202l7%203v6c0%205-3.4%208.4-7%2011-3.6-2.6-7-6-7-11V5z%27/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27black%27%3E%3Cpath%20d%3D%27M12%202l7%203v6c0%205-3.4%208.4-7%2011-3.6-2.6-7-6-7-11V5z%27/%3E%3C/svg%3E") center / contain no-repeat; }
.col-obr li::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14.7%206.3a4.8%204.8%200%200%200-6.4%206.4L3%2018l3%203%205.3-5.3a4.8%204.8%200%200%200%206.4-6.4L14.5%2012.5l-3-3z%27/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14.7%206.3a4.8%204.8%200%200%200-6.4%206.4L3%2018l3%203%205.3-5.3a4.8%204.8%200%200%200%206.4-6.4L14.5%2012.5l-3-3z%27/%3E%3C/svg%3E"); }
.col-lei li::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%203v18M7%2021h10M3%207h2c2%200%205-1%207-2%202%201%205%202%207%202h2%27/%3E%3Cpath%20d%3D%27m16%2016%203-8%203%208c-.9.7-1.9%201-3%201s-2.1-.3-3-1Z%27/%3E%3Cpath%20d%3D%27m2%2016%203-8%203%208c-.9.7-1.9%201-3%201s-2.1-.3-3-1Z%27/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%203v18M7%2021h10M3%207h2c2%200%205-1%207-2%202%201%205%202%207%202h2%27/%3E%3Cpath%20d%3D%27m16%2016%203-8%203%208c-.9.7-1.9%201-3%201s-2.1-.3-3-1Z%27/%3E%3Cpath%20d%3D%27m2%2016%203-8%203%208c-.9.7-1.9%201-3%201s-2.1-.3-3-1Z%27/%3E%3C/svg%3E"); }

/* fade na base da foto do sobre */
.foto-box { position: relative; background: radial-gradient(340px 260px at 50% 100%, rgba(252,190,9,.28), transparent 70%), linear-gradient(180deg, #383f8c, var(--navy)); }
.foto-box .foto { background: none; }
.foto-fade { position: absolute; inset: auto 0 0 0; height: 100px; background: linear-gradient(transparent, var(--navy)); }

/* marca d'agua 22123 subindo no hero */
.num-rain { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 5; }
.num-rain span {
  position: absolute; bottom: -160px; font-weight: 900; color: var(--yellow);
  opacity: 0; letter-spacing: .04em; line-height: 1; white-space: nowrap;
  animation-name: sobe-num; animation-timing-function: linear; animation-iteration-count: infinite;
  transition: color .4s;
}
.num-rain span.sobre-claro { color: var(--navy); }
@keyframes sobe-num {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: .07; }
  85% { opacity: .07; }
  100% { transform: translateY(-140vh); opacity: 0; }
}
