/* Instituto Galvan · site público */
:root {
  --navy-950: #060b26;
  --navy-900: #0a1238;
  --navy-800: #111b52;
  --navy-700: #1a2770;
  --blue: #0011ab;
  --blue-600: #1d31d8;
  --blue-400: #6b7cff;
  --blue-50: #eef0ff;
  --red: #e3262f;
  --red-600: #c41d26;
  --red-50: #fff0f0;
  --ink: #0d1330;
  --text: #3a4163;
  --muted: #6b7291;
  --line: #e3e6f1;
  --soft: #f5f7fc;
  --white: #fff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(10, 18, 56, .06), 0 4px 14px rgba(10, 18, 56, .06);
  --shadow: 0 2px 6px rgba(10, 18, 56, .05), 0 18px 40px -12px rgba(10, 18, 56, .18);
  --shadow-lg: 0 30px 70px -20px rgba(10, 18, 56, .35);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-600); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
.h3 { font-size: 1.35rem; }
.h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: calc(820px + var(--gutter) * 2); }
.narrow-sm { max-width: calc(480px + var(--gutter) * 2); }
.center { text-align: center; }
.muted { color: var(--muted); }
.mt { margin-top: 2rem; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--white); padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 6px; }

/* Ícones */
.ic { width: 20px; height: 20px; flex: none; }
.ic-xs { width: 15px; height: 15px; }
.ic-sm { width: 18px; height: 18px; }
.ic-lg { width: 34px; height: 34px; }

/* Botões */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 46px; padding: .7rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent; font: inherit; font-weight: 700; font-size: .95rem; line-height: 1.2; cursor: pointer; transition: transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s; text-align: center; }
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 40px; padding: .5rem 1.05rem; font-size: .85rem; }
.btn-lg { min-height: 58px; padding: .9rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px -10px rgba(0, 17, 171, .7); }
.btn-primary:hover { background: var(--blue-600); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy-900); box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .45); }
.btn-light:hover { color: var(--blue); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .1); color: var(--white); border-color: var(--white); }
.btn-outline { background: var(--white); color: var(--navy-900); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .92rem; }
.link-arrow .ic { transition: transform .2s; }
.link-arrow:hover .ic { transform: translateX(3px); }
.pill-link { display: inline-flex; align-items: center; gap: .6rem; padding: .45rem .6rem .45rem 1rem; border: 1.5px solid var(--line); border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--white); }
.pill-link:hover { border-color: var(--blue); color: var(--blue); }
.dots { display: inline-flex; gap: 3px; }
.dots i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .35; }
.dots i:last-child { opacity: 1; background: var(--blue); }

.eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }
.eyebrow .ic + * { display: none; }
.eyebrow-light { color: rgba(255, 255, 255, .85); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.6; }
.lead-dark { font-size: 1.15rem; color: var(--text); max-width: 760px; margin-left: auto; margin-right: auto; }

.tag { display: inline-flex; align-items: center; padding: .28rem .7rem; border-radius: 999px; background: var(--soft); color: var(--muted); font-size: .75rem; font-weight: 700; }
.tag-open { background: #e8f8ef; color: #127a45; }

/* Header */
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 50; color: var(--white); padding-top: 26px; transition: background .25s, box-shadow .25s, padding .25s; }
.header-inner { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "brand actions" "nav nav"; align-items: center; row-gap: 18px; column-gap: 24px; }
.brand { grid-area: brand; display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand:hover { color: var(--white); }
.brand-mark { width: 50px; height: 50px; border-radius: 14px; background: var(--white); display: grid; place-items: center; box-shadow: 0 8px 22px -8px rgba(0, 0, 0, .5); flex: none; }
.brand-mark img { width: 30px; height: auto; }
.brand-text { font-size: 1.28rem; font-weight: 500; letter-spacing: -.01em; line-height: 1; }
.brand-text strong { font-weight: 800; }
.main-nav { display: contents; }
.main-nav > ul { grid-area: nav; display: flex; gap: 6px; list-style: none; flex-wrap: nowrap; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: inline-flex; align-items: center; gap: 4px; padding: .45rem .8rem; border-radius: 999px; color: rgba(255, 255, 255, .88); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a[aria-current] { color: var(--white); background: rgba(255, 255, 255, .12); }
.sub { position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px; list-style: none; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s; }
.sub::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { display: block; padding: .55rem .8rem; border-radius: 9px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.sub a:hover { background: var(--blue-50); color: var(--blue); }
.nav-actions { grid-area: actions; justify-self: end; display: flex; gap: 10px; }
.nav-toggle { display: none; }

.site-header.is-stuck { position: fixed; padding: 10px 0; background: rgba(8, 14, 46, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .5); animation: slide-down .3s ease; }
.site-header.is-stuck .header-inner { grid-template-columns: auto 1fr auto; grid-template-areas: "brand nav actions"; }
.site-header.is-stuck .main-nav > ul { justify-content: center; gap: 2px; }
.site-header.is-stuck .main-nav > ul > li > a { padding: .4rem .6rem; font-size: .76rem; letter-spacing: .04em; }
@media (min-width: 1024px) and (max-width: 1320px) { .site-header.is-stuck .nav-actions .btn-ghost-light { display: none; } }
.site-header.is-stuck .brand-mark { width: 40px; height: 40px; border-radius: 11px; }
.site-header.is-stuck .brand-mark img { width: 24px; }
@keyframes slide-down { from { transform: translateY(-100%); } to { transform: none; } }

/* Hero home */
.hero { position: relative; min-height: 700px; padding: 210px 0 190px; background: var(--navy-900); color: rgba(255, 255, 255, .88); overflow: hidden; isolation: isolate; }
.hero-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 64%; z-index: -2; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 35%; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, var(--navy-900) 34%, rgba(10, 18, 56, .86) 48%, rgba(10, 18, 56, .25) 72%, rgba(10, 18, 56, .1) 100%),
  linear-gradient(0deg, rgba(10, 18, 56, .55) 0%, transparent 30%); }
.hero-inner { position: relative; }
.hero h1 { color: var(--white); font-size: clamp(2.35rem, 5vw, 3.9rem); line-height: 1.06; letter-spacing: -.035em; max-width: 640px; margin-bottom: 1.25rem; }
.hero h1 span { display: block; color: #aab5ff; }
.hero .lead { max-width: 560px; margin-bottom: 2.2rem; }
.hero .eyebrow::before { background: var(--red); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.center-actions { justify-content: center; margin-top: 1rem; }

/* Faixa de agenda sobreposta */
.agenda-strip { position: relative; z-index: 5; margin-top: -120px; }
.agenda-panel { display: grid; grid-template-columns: 250px 1fr; background: var(--white); border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.agenda-label { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .6rem; padding: 2rem 1.5rem; text-align: center; color: var(--white); background: linear-gradient(145deg, var(--blue) 0%, #2336e0 60%, #4b2ad8 100%); }
.agenda-label:hover { color: var(--white); }
.agenda-label::after { content: ""; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); border: 13px solid transparent; border-left-color: #3130dd; border-right: 0; z-index: 2; }
.agenda-label h2 { color: var(--white); font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; margin: 0; }
.agenda-label span { font-size: .8rem; opacity: .8; }
.agenda-label::before { content: ""; position: absolute; left: 22px; top: 22px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(227, 38, 47, .25); }
.agenda-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.agenda-item { padding: 1.7rem 1.6rem 1.5rem; border-left: 1px solid var(--line); display: flex; flex-direction: column; }
.agenda-item:first-child { border-left: 0; padding-left: 2.2rem; }
.agenda-kicker { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin-bottom: .35rem; }
.agenda-item h3 { font-size: .98rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .8rem; }
.agenda-item h3 a { color: var(--ink); }
.agenda-item h3 a:hover { color: var(--blue); }
.agenda-row { display: flex; gap: 14px; }
.agenda-date { display: flex; flex-direction: column; align-items: center; line-height: 1; color: var(--blue); min-width: 46px; }
.agenda-date strong { font-size: 2.3rem; font-weight: 500; letter-spacing: -.03em; }
.agenda-date span { font-size: .95rem; text-transform: uppercase; margin-top: 4px; }
.agenda-date em { font-style: normal; font-size: .7rem; font-weight: 700; text-transform: uppercase; margin-top: 3px; color: var(--red); }
.agenda-row p { font-size: .8rem; line-height: 1.5; color: var(--muted); margin: 0; }
.agenda-place { display: flex; align-items: center; gap: 6px; margin: .9rem 0 .3rem; font-size: .78rem; font-weight: 700; color: var(--ink); }
.agenda-more { margin-top: auto; font-size: .78rem; font-weight: 700; color: var(--muted); }
.agenda-empty { grid-column: 1 / -1; display: flex; align-items: center; padding: 2rem 2.4rem; }
.agenda-empty p { margin: 0; font-weight: 600; color: var(--ink); }
.agenda-all { display: flex; justify-content: flex-end; margin-top: 16px; }

/* Seções */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-soft { background: var(--soft); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p:last-child { margin-bottom: 0; }

/* Trio de projetos */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: center; }
.trio .pj-card:not(.is-featured) { opacity: .92; }
.pj-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .25s, box-shadow .25s; height: 100%; }
.pj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pj-card.is-featured { transform: scale(1.04); box-shadow: var(--shadow-lg); z-index: 2; position: relative; }
.pj-card.is-featured:hover { transform: scale(1.04) translateY(-4px); }
.trio .pj-card { height: auto; }
.pj-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--soft); }
.pj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pj-card:hover .pj-media img { transform: scale(1.04); }
.pj-status { position: absolute; left: 14px; top: 14px; padding: .32rem .75rem; border-radius: 999px; background: rgba(255, 255, 255, .94); color: var(--ink); font-size: .72rem; font-weight: 700; }
.pj-status.is-static { position: static; display: inline-block; margin-bottom: 1rem; background: var(--soft); }
.status-inscricoes { color: #127a45; }
.status-captando { color: var(--red-600); }
.status-captando.is-static { background: var(--red-50); }
.pj-body { position: relative; padding: 2rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.pj-icon { position: absolute; top: -26px; left: 1.6rem; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--blue); color: var(--white); box-shadow: 0 12px 24px -10px rgba(0, 17, 171, .8); }
.pj-card.is-featured .pj-icon { background: var(--red); box-shadow: 0 12px 24px -10px rgba(227, 38, 47, .8); }
.pj-kicker { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: .5rem 0 .3rem; }
.pj-body h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.pj-body h3 a { color: var(--ink); }
.pj-body > p { font-size: .94rem; }
.pj-highlight { display: flex; align-items: center; gap: .45rem; font-size: .85rem !important; font-weight: 700; color: var(--blue); }
.pj-body .link-arrow { margin-top: auto; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-text > .btn { margin-top: .5rem; }
.skills { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.skills li { display: flex; align-items: center; gap: 12px; padding: .8rem 1rem; background: var(--white); border-radius: 14px; border: 1px solid var(--line); font-weight: 700; color: var(--ink); font-size: .95rem; transition: border-color .2s, transform .2s; }
.skills li:hover { border-color: var(--blue); transform: translateX(3px); }
.skills li span { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); flex: none; }
.skills li:nth-child(3n+2) span { background: var(--red-50); color: var(--red); }

/* Prova */
.proof { position: relative; padding: clamp(64px, 8vw, 96px) 0; color: rgba(255, 255, 255, .8); background: radial-gradient(800px 400px at 85% 0%, rgba(75, 42, 216, .45), transparent 60%), linear-gradient(135deg, var(--navy-900), var(--navy-800)); overflow: hidden; }
.proof-inner { display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.proof h2 { color: var(--white); }
.proof-head p:last-child { margin: 0; font-size: .92rem; }
.proof-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0; }
.proof-stats div { padding: 1.5rem 1.4rem; border-radius: 18px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.proof-stats dt { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; line-height: 1; margin-bottom: .5rem; }
.proof-stats dd { margin: 0; font-size: .92rem; line-height: 1.45; }
.proof-stats-alt { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }

/* Passos */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.steps li { position: relative; padding: 1.8rem 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.steps li span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; margin-bottom: 1.1rem; background: var(--blue-50); color: var(--blue); font-weight: 800; }
.steps li:last-child span { background: var(--red); color: var(--white); }
.steps h3 { font-size: 1.08rem; }
.steps p { margin: 0; font-size: .92rem; }

/* Mapa */
.section-map { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: rgba(255, 255, 255, .8); }
.section-map h2 { color: var(--white); }
.map-figure { margin: 0; padding: 24px; border-radius: 22px; background: radial-gradient(circle at 50% 40%, rgba(29, 49, 216, .5), rgba(17, 27, 82, .6)); }

/* Notícias */
.news { display: grid; grid-template-columns: 230px 1fr; gap: 32px; align-items: start; }
.news-head { position: sticky; top: 110px; text-align: right; }
.news-head h2 { font-size: 1.9rem; text-transform: uppercase; letter-spacing: .01em; color: var(--navy-800); }
.news-head p { margin-top: 1rem; font-size: .9rem; color: var(--muted); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.post-media img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 1.2rem 1.3rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 1rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 1rem; }
.post-body h3 a { color: var(--ink); }
.post-body h3 a:hover { color: var(--blue); }
.post-foot { margin-top: auto; display: flex; justify-content: space-between; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.post-foot span { color: var(--red); letter-spacing: .06em; }

/* Galeria */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 14px; }
.gallery figure { position: relative; margin: 0; aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: var(--soft); }
.gallery figure:nth-child(6n+1) { grid-row: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 10px; bottom: 10px; right: 10px; padding: .35rem .7rem; border-radius: 999px; background: rgba(6, 11, 38, .7); color: var(--white); font-size: .75rem; font-weight: 600; opacity: 0; transform: translateY(4px); transition: .2s; width: fit-content; }
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* CTA */
.cta-band { padding: clamp(56px, 7vw, 84px) 0; background: linear-gradient(120deg, var(--blue) 0%, #2336e0 55%, #4b2ad8 100%); color: rgba(255, 255, 255, .85); }
.cta-band-red { background: linear-gradient(120deg, #b3121b, var(--red) 60%, #f0525a); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: .3rem; }
.cta-band p { margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero interno */
.page-hero { position: relative; padding: 200px 0 80px; background: var(--navy-900); color: rgba(255, 255, 255, .85); overflow: hidden; isolation: isolate; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 360px at 90% 10%, rgba(75, 42, 216, .45), transparent 60%); }
.page-hero-img { position: absolute; right: 0; top: 0; width: 52%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero.has-image::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, var(--navy-900) 45%, rgba(10, 18, 56, .8) 60%, rgba(10, 18, 56, .35) 100%); }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.4vw, 3.3rem); max-width: 760px; letter-spacing: -.03em; }
.page-hero .lead { max-width: 640px; margin-bottom: 0; }
.page-hero .hero-actions { margin-top: 2rem; }

/* Layout projeto/evento */
.project-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.project-aside { position: sticky; top: 100px; }
.aside-card { display: block; padding: 1.6rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.aside-card dl { margin: 0 0 1.2rem; }
.aside-card dl div { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.aside-card dt { display: flex; align-items: center; gap: .45rem; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.aside-card dd { margin: .2rem 0 0; font-weight: 700; color: var(--ink); }
.aside-card .btn + .btn { margin-top: 10px; }
.aside-card p { font-size: .94rem; }
.aside-alt { font-size: .88rem; margin: 1rem 0 0; color: var(--muted); }
.aside-dark { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); border: 0; color: rgba(255, 255, 255, .85); }
.aside-dark h2 { color: var(--white); }
.aside-wa { text-align: left; background: #0e7a43; color: var(--white); border: 0; display: grid; gap: 4px; }
.aside-wa:hover { color: var(--white); background: #0b6a3a; }
.aside-wa span { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.aside-wa strong { font-size: 1.5rem; }
.aside-wa em { font-style: normal; display: inline-flex; align-items: center; gap: .3rem; font-weight: 700; font-size: .9rem; }
.check-list { list-style: none; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; }
.check-list .ic { color: #8fe3b4; margin-top: 3px; }

.prose { font-size: 1.05rem; color: var(--text); }
.prose h2 { font-size: 1.55rem; margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 0; margin: 0 0 1.2rem; list-style: none; display: grid; gap: .6rem; }
.prose li { position: relative; padding-left: 1.9rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 18px; height: 18px; transform: translateY(-25%); border-radius: 6px; background: var(--blue-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230011ab' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.prose ol { counter-reset: n; }
.prose ol li::before { counter-increment: n; content: counter(n); position: absolute; left: 0; top: 0; font-weight: 800; color: var(--blue); }
.prose strong { color: var(--ink); }
.prose img { border-radius: 14px; margin: 1.5rem 0; }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.4rem; border-left: 4px solid var(--red); background: var(--soft); border-radius: 0 12px 12px 0; }
.post-cover { margin: 0 0 2rem; border-radius: 20px; overflow: hidden; }
.post-share { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* Eventos */
.ev-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ev-list-1 { grid-template-columns: 1fr; }
.ev-card { display: grid; grid-template-columns: 92px 1fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.ev-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.ev-date { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 1rem .5rem; background: linear-gradient(160deg, var(--blue), #2a37e0); color: var(--white); line-height: 1; }
.ev-card.is-past .ev-date { background: linear-gradient(160deg, #5b6384, #7a82a3); }
.ev-d { font-size: 2.2rem; font-weight: 700; letter-spacing: -.03em; }
.ev-m { font-size: .9rem; text-transform: uppercase; font-weight: 700; }
.ev-w { font-size: .68rem; text-transform: uppercase; opacity: .8; margin-top: 4px; }
.ev-body { padding: 1.2rem 1.4rem; display: flex; flex-direction: column; }
.ev-kicker { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .3rem; }
.ev-title { font-size: 1.05rem; margin-bottom: .4rem; }
.ev-title a { color: var(--ink); }
.ev-desc { font-size: .88rem; color: var(--muted); margin-bottom: .6rem; }
.ev-meta { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem 1rem; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .9rem; }
.ev-meta li { display: inline-flex; align-items: center; gap: .35rem; }
.ev-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ev-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 0 2rem; }
.ev-facts div { padding: 1.1rem 1.2rem; border-radius: 14px; background: var(--soft); }
.ev-facts dt { display: flex; align-items: center; gap: .4rem; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ev-facts dd { margin: .25rem 0 0; font-weight: 700; color: var(--ink); }

.notice { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.2rem; margin-bottom: 28px; border-radius: 14px; background: var(--blue-50); color: var(--navy-800); }
.notice p { margin: 0; font-size: .94rem; font-weight: 600; }
.notice .ic { margin-top: 3px; color: var(--blue); }
.empty { text-align: center; padding: 3.5rem 1.5rem; border: 1.5px dashed var(--line); border-radius: 22px; }
.empty .ic { color: var(--blue); margin: 0 auto 1rem; }
.empty h2 { font-size: 1.5rem; }

/* Formulários */
.form-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 4vw, 48px); align-items: start; }
.form-aside { position: sticky; top: 100px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.4rem, 3.5vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form-card fieldset { border: 0; padding: 0; margin: 0 0 2rem; }
.form-card legend { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.form-card legend span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: var(--white); font-size: .88rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.span-2 { grid-column: 1 / -1; }
.form-stack { display: grid; gap: 16px; }
label { display: grid; gap: 6px; font-size: .88rem; font-weight: 700; color: var(--ink); }
label small { font-weight: 500; color: var(--muted); }
input, select, textarea { width: 100%; min-height: 50px; padding: .75rem .95rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--white); font: inherit; font-weight: 500; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 17, 171, .12); }
input[aria-invalid="true"] { border-color: var(--red); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; min-height: 0; }
.chip span { padding: .55rem 1rem; border: 1.5px solid var(--line); border-radius: 999px; font-weight: 600; font-size: .88rem; color: var(--text); transition: .15s; }
.chip input:checked + span { background: var(--blue); border-color: var(--blue); color: var(--white); }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(0, 17, 171, .25); }
.field-title { margin: 1.6rem 0 .7rem; font-weight: 700; color: var(--ink); font-size: .95rem; }
.ev-pick { display: grid; gap: 8px; }
.ev-option { display: flex; flex-direction: row; align-items: flex-start; gap: .8rem; padding: .9rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; font-weight: 500; cursor: pointer; }
.ev-option input { width: 20px; height: 20px; min-height: 0; margin-top: 2px; accent-color: var(--blue); }
.ev-option small { display: block; color: var(--muted); }
.consent { display: flex; flex-direction: row; gap: .7rem; align-items: flex-start; font-weight: 500; font-size: .9rem; color: var(--text); margin: .5rem 0 1.5rem; }
.consent input { width: 20px; height: 20px; min-height: 0; margin-top: 2px; accent-color: var(--blue); flex: none; }
.form-note { margin: 1rem 0 0; font-size: .9rem; color: var(--muted); }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

/* Flash */
.flash-stack { position: fixed; z-index: 80; top: 20px; left: 50%; transform: translateX(-50%); width: min(560px, calc(100% - 32px)); display: grid; gap: 10px; }
.flash { display: flex; gap: .7rem; align-items: flex-start; padding: 1rem 1.2rem; border-radius: 14px; background: var(--white); box-shadow: var(--shadow-lg); font-weight: 600; color: var(--ink); border-left: 5px solid var(--blue); animation: pop .3s ease; }
.flash-success { border-left-color: #16a05b; }
.flash-success .ic { color: #16a05b; }
.flash-error { border-left-color: var(--red); }
.flash-error .ic { color: var(--red); }
.flash .ic { margin-top: 3px; }
@keyframes pop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Instituto */
.photo-stack { position: relative; padding-bottom: 60px; }
.photo-stack img:first-child { width: 72%; border-radius: 22px; box-shadow: var(--shadow); aspect-ratio: 3 / 4; object-fit: cover; }
.photo-stack img:last-child { position: absolute; right: 0; bottom: 0; width: 58%; border-radius: 18px; border: 6px solid var(--white); box-shadow: var(--shadow-lg); aspect-ratio: 16 / 10; object-fit: cover; }
.audience { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.audience li { display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.3rem; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-sm); font-weight: 700; color: var(--ink); }
.audience li .ic { width: 34px; height: 34px; padding: 8px; border-radius: 10px; background: var(--blue-50); color: var(--blue); }
.audience li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { padding: 2rem 1.8rem; border-radius: 22px; background: linear-gradient(160deg, #f1fbff, #f6f7ff); border: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.feature p { font-size: .96rem; }
.feature .btn { margin-top: auto; }
.feature-dark { background: linear-gradient(150deg, var(--navy-900), var(--blue)); border: 0; color: rgba(255, 255, 255, .82); }
.feature-dark h3 { color: var(--white); }
.feature-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.4rem; background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm); }
.feature-dark .feature-ic { background: rgba(255, 255, 255, .12); color: var(--white); box-shadow: none; }
.partners { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 2rem; }
.partners li { display: grid; place-items: center; text-align: center; min-width: 190px; padding: 1.2rem 1.5rem; border: 1px solid var(--line); border-radius: 16px; font-weight: 800; color: var(--navy-800); }
.partners small { font-weight: 500; font-size: .72rem; color: var(--muted); max-width: 200px; }
.info-card { padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: 22px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.info-card .btn { margin-top: .5rem; margin-right: .5rem; }
.info-list { margin: 0 0 1.5rem; display: grid; }
.info-list div { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.info-list dt { font-weight: 700; color: var(--muted); font-size: .88rem; }
.info-list dd { margin: 0; font-weight: 600; color: var(--ink); }
.pix { display: grid; margin: 0 0 1rem; padding: .9rem 1rem; border-radius: 12px; background: var(--white); border: 1.5px dashed var(--blue-400); }
.pix span { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.pix strong { color: var(--ink); word-break: break-all; }

/* Carteirinha */
.card-layout { display: grid; grid-template-columns: 440px 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.id-card { position: relative; aspect-ratio: 1.586; padding: 1.5rem 1.6rem; border-radius: 22px; color: var(--white); overflow: hidden; background: radial-gradient(400px 200px at 110% -10%, rgba(227, 38, 47, .55), transparent 60%), linear-gradient(135deg, var(--navy-900) 0%, var(--blue) 70%, #3a2fd8 100%); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
.id-card::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%; border: 30px solid rgba(255, 255, 255, .06); }
.id-top { display: flex; align-items: center; gap: .8rem; }
.id-top strong { display: block; font-size: 1rem; }
.id-top span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; opacity: .75; }
.id-name { margin: auto 0 .8rem; font-size: 1.35rem; font-weight: 800; line-height: 1.2; }
.id-data { display: grid; grid-template-columns: repeat(4, auto); gap: 14px; margin: 0; }
.id-data dt { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; opacity: .65; }
.id-data dd { margin: 0; font-size: .82rem; font-weight: 700; }
.id-foot { margin: .9rem 0 0; font-size: .64rem; opacity: .6; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.my-events { list-style: none; display: grid; gap: 8px; margin-bottom: 1rem; }
.my-events li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: .9rem 1.1rem; border: 1px solid var(--line); border-radius: 12px; }
.my-events a { color: var(--ink); font-weight: 600; }

.pager { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pager a { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); font-weight: 700; color: var(--ink); }
.pager a[aria-current] { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* Rodapé */
.site-footer { background: linear-gradient(180deg, var(--navy-800), var(--navy-950)); color: rgba(255, 255, 255, .7); padding: 72px 0 0; font-size: .94rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand p { margin: 1.2rem 0; max-width: 300px; }
.site-footer h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.site-footer a { color: rgba(255, 255, 255, .75); }
.site-footer a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: center; gap: .5rem; }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255, 255, 255, .08); }
.social a:hover { background: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px var(--gutter); font-size: .82rem; }

.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #1faa59; color: var(--white); box-shadow: 0 14px 30px -8px rgba(15, 122, 67, .7); transition: transform .2s; }
.wa-float:hover { color: var(--white); transform: scale(1.06); }
.wa-float .ic { width: 28px; height: 28px; }

/* Responsivo */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .agenda-panel { grid-template-columns: 200px 1fr; }
  .agenda-item { padding: 1.4rem 1.1rem; }
  .agenda-item:first-child { padding-left: 1.7rem; }
}

@media (max-width: 1023px) {
  .site-header { padding-top: 16px; }
  .header-inner, .site-header.is-stuck .header-inner { grid-template-columns: 1fr auto; grid-template-areas: "brand toggle"; }
  .nav-toggle { grid-area: toggle; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .08); color: var(--white); cursor: pointer; }
  .main-nav { display: flex; flex-direction: column; position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); padding: 90px 24px 32px; background: var(--navy-950); transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; z-index: -1; box-shadow: -20px 0 60px rgba(0, 0, 0, .4); }
  .nav-open .main-nav { transform: none; }
  .main-nav > ul { flex-direction: column; gap: 2px; }
  .main-nav > ul > li > a { display: flex; padding: .85rem 1rem; font-size: .95rem; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; padding: 0 0 .5rem 1rem; min-width: 0; }
  .sub a { color: rgba(255, 255, 255, .7); font-size: .9rem; }
  .sub a:hover { background: rgba(255, 255, 255, .08); color: var(--white); }
  .has-sub > a .ic { display: none; }
  .nav-actions { flex-direction: column; margin-top: 1.5rem; }
  .nav-actions .btn { width: 100%; min-height: 50px; }
  .site-header.is-stuck { padding: 10px 0; }
  .nav-open .site-header { z-index: 90; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0, 0, 0, .5); z-index: 40; }

  .hero { padding: 150px 0 170px; min-height: 0; }
  .hero-photo { width: 100%; opacity: .45; }
  .hero-shade { background: linear-gradient(180deg, rgba(10, 18, 56, .7) 0%, rgba(10, 18, 56, .92) 60%, var(--navy-900) 100%); }
  .agenda-panel { grid-template-columns: 1fr; }
  .agenda-label { flex-direction: row; justify-content: flex-start; padding: 1.2rem 1.5rem; text-align: left; }
  .agenda-label::after { display: none; }
  .agenda-label::before { left: auto; right: 22px; top: 50%; transform: translateY(-50%); }
  .agenda-label h2 { font-size: 1rem; }
  .agenda-items { grid-template-columns: 1fr; }
  .agenda-item, .agenda-item:first-child { border-left: 0; border-top: 1px solid var(--line); padding: 1.3rem 1.5rem; }
  .agenda-item:first-child { border-top: 0; }

  .trio, .card-grid, .feature-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .pj-card.is-featured, .pj-card.is-featured:hover { transform: none; }
  .split, .proof-inner, .project-layout, .form-layout, .card-layout { grid-template-columns: 1fr; }
  .project-aside, .form-aside { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .news { grid-template-columns: 1fr; }
  .news-head { position: static; text-align: left; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
  .news-head p { width: 100%; margin: 0; }
  .news-grid, .news-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .page-hero { padding: 140px 0 60px; }
  .page-hero-img { width: 100%; opacity: .35; }
  .page-hero.has-image::before { background: linear-gradient(180deg, rgba(10, 18, 56, .75), var(--navy-900)); }
  .card-layout > div:first-child { max-width: 440px; }
}

@media (max-width: 640px) {
  .brand-mark { width: 44px; height: 44px; }
  .brand-text { font-size: 1.1rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-actions .btn-lg { width: 100%; }
  .agenda-strip { margin-top: -110px; }
  .skills { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .proof-stats div { padding: 1.1rem; }
  .proof-stats-alt { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .news-grid, .news-grid-3, .ev-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery figure:nth-child(6n+1) { grid-row: auto; aspect-ratio: 1; }
  .grid-2, .audience, .ev-facts { grid-template-columns: 1fr; }
  .audience li:last-child:nth-child(odd) { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .info-list div { grid-template-columns: 1fr; gap: 2px; }
  .ev-card { grid-template-columns: 76px 1fr; }
  .ev-d { font-size: 1.8rem; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .id-data { grid-template-columns: repeat(2, auto); }
  .photo-stack { padding-bottom: 40px; }
}

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

@media print {
  body * { visibility: hidden; }
  #carteira, #carteira * { visibility: visible; }
  #carteira { position: absolute; left: 0; top: 0; width: 85.6mm; height: 54mm; aspect-ratio: auto; box-shadow: none; padding: 5mm; border-radius: 4mm; }
  #carteira .id-name { font-size: 12pt; }
}

@media (max-width: 1023px) {
  .site-header.is-stuck { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--navy-950); animation: none; }
}

/* Hero institucional (v2) */
.hero h1.eyebrow { font-size: .8rem; line-height: 1.4; margin: 0 0 1.4rem; font-weight: 700; letter-spacing: .14em; color: rgba(255, 255, 255, .85); max-width: none; }
.hero-title { margin: 0 0 1.4rem; color: var(--white); font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.02; letter-spacing: -.04em; max-width: 620px; }
.hero-title span { display: block; color: #aab5ff; }
.hero .lead { max-width: 440px; font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: rgba(255, 255, 255, .82); margin-bottom: 2.4rem; }
.lead-soft { font-size: 1.25rem; font-weight: 600; color: var(--navy-800); line-height: 1.45; }
.more-link { margin: 36px 0 0; }

.highlights { position: relative; z-index: 5; margin-top: -110px; }
.hl-panel { display: grid; grid-template-columns: 250px 1fr; background: var(--white); border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.hl-label { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .35rem; padding: 2rem 1.5rem; text-align: center; color: var(--white); background: linear-gradient(145deg, var(--blue) 0%, #2336e0 60%, #4b2ad8 100%); }
.hl-label:hover { color: var(--white); }
.hl-label img { margin-bottom: .6rem; }
.hl-label strong { font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; }
.hl-label span { font-size: .8rem; opacity: .8; }
.hl-label::after { content: ""; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); border: 13px solid transparent; border-left-color: #3130dd; border-right: 0; z-index: 2; }
.hl-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.hl-item { padding: 2rem 1.8rem; border-left: 1px solid var(--line); }
.hl-item:first-child { border-left: 0; padding-left: 2.4rem; }
.hl-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; margin-bottom: 1rem; background: var(--blue-50); color: var(--blue); }
.hl-item:nth-child(2) .hl-ic { background: var(--red-50); color: var(--red); }
.hl-num { margin: 0 0 .3rem; font-size: 1.25rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.hl-item p:last-child { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 1023px) {
  .hl-panel { grid-template-columns: 1fr; }
  .hl-label { flex-direction: row; justify-content: flex-start; gap: .9rem; padding: 1.2rem 1.5rem; text-align: left; flex-wrap: wrap; }
  .hl-label img { margin: 0; width: 30px; height: auto; }
  .hl-label::after { display: none; }
  .hl-items { grid-template-columns: 1fr; }
  .hl-item, .hl-item:first-child { border-left: 0; border-top: 1px solid var(--line); padding: 1.4rem 1.5rem; display: grid; grid-template-columns: 46px 1fr; column-gap: 14px; }
  .hl-item:first-child { border-top: 0; }
  .hl-ic { grid-row: span 2; margin: 0; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2.7rem; }
  .highlights { margin-top: -90px; }
}

/* Slides da capa */
.hero-slides { overflow: hidden; }
.hero-slides .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity 1.4s ease, transform 7s ease-out; }
.hero-slides .slide.is-active { opacity: 1; transform: scale(1); }
.slide-dots { display: flex; gap: 8px; margin-top: 3rem; }
.slide-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .35); cursor: pointer; transition: width .3s, background .3s; }
.slide-dots button[aria-selected="true"] { width: 30px; background: var(--white); }
@media (max-width: 1023px) { .slide-dots { margin-top: 2rem; } }

/* Transparência */
.tp-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.tp-summary > div { padding: 1.3rem 1.4rem; border-radius: 16px; background: var(--soft); display: grid; gap: 2px; }
.tp-summary span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.tp-summary strong { font-size: 1.35rem; color: var(--ink); letter-spacing: -.02em; }
.tp-summary small { font-size: .82rem; color: var(--muted); }
.link-btn { padding: 0; border: 0; background: none; color: var(--blue); font: inherit; font-weight: 700; cursor: pointer; text-decoration: underline; }
.tp-index { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; margin-bottom: 40px; }
.tp-index a { display: grid; gap: 2px; padding: .9rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); font-weight: 700; font-size: .92rem; line-height: 1.35; transition: border-color .2s; }
.tp-index a:hover { border-color: var(--blue); }
.tp-index span { font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--red); text-transform: uppercase; }
.tp-index strong { color: var(--blue); font-size: .88rem; }
.tp-list { display: grid; gap: 28px; }
.tp-card { padding: clamp(1.3rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); scroll-margin-top: 100px; }
.tp-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.tp-kicker { margin: 0 0 .3rem; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.tp-head h3 { margin: 0; font-size: 1.35rem; }
.tp-head h3 a { color: var(--ink); }
.tp-value { text-align: right; flex: none; }
.tp-value span { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.tp-value strong { font-size: 1.4rem; color: var(--blue); letter-spacing: -.02em; }
.tp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 24px; margin: 0; }
.tp-grid > div { padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.tp-grid .tp-wide { grid-column: 1 / -1; }
.tp-grid dt { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.tp-grid dd { margin: 0; font-weight: 600; color: var(--ink); font-size: .95rem; }
.tp-grid dd small { display: block; font-weight: 500; color: var(--muted); font-size: .8rem; }
.tp-sub { margin: 1.6rem 0 .4rem; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; color: var(--navy-800); }
.tp-status { display: inline-block; padding: .2rem .7rem; border-radius: 999px; background: var(--blue-50); color: var(--blue); font-size: .82rem; }
.tp-status.st-aprovada { background: #e8f8ef; color: #127a45; }
.tp-status.st-rejeitada { background: var(--red-50); color: var(--red-600); }
.tp-pending { color: var(--red-600); font-weight: 600; }
.tp-note { margin: .3rem 0 0; font-size: .95rem; }
.tp-table { width: 100%; border-collapse: collapse; font-size: .92rem; margin-top: .4rem; }
.tp-table th, .tp-table td { padding: .6rem .7rem; border-bottom: 1px solid var(--line); text-align: left; }
.tp-table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.tp-table .num { text-align: right; white-space: nowrap; }
.tp-table tfoot td { font-weight: 800; color: var(--ink); border-bottom: 0; }
.tp-docs { display: flex; flex-wrap: wrap; gap: 16px; margin: 1.4rem 0 0; }
.tp-docs a { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .9rem; }
.tp-legal { margin-top: 40px; padding: 1.5rem 1.6rem; border-radius: 16px; background: var(--soft); font-size: .92rem; }
.tp-legal p:last-child { margin: 0; }
@media (max-width: 1023px) { .tp-summary { grid-template-columns: 1fr 1fr; } .tp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .tp-summary, .tp-grid { grid-template-columns: 1fr; } .tp-head { flex-direction: column; } .tp-value { text-align: left; } }
@media print {
  .page-transparencia *, .page-transparencia body * { visibility: visible; }
  .page-transparencia .site-header, .page-transparencia .site-footer, .page-transparencia .wa-float, .page-transparencia .page-hero, .page-transparencia .tp-index, .page-transparencia .post-share, .page-transparencia .link-btn, .page-transparencia .flash-stack { display: none !important; }
  .page-transparencia .section { padding: 0; }
  .page-transparencia .tp-card { box-shadow: none; break-inside: avoid; border-color: #999; margin-bottom: 12px; }
  .page-transparencia .tp-summary > div { border: 1px solid #999; }
}
.main-nav > ul > li > a, .brand-text { white-space: nowrap; }
@media (min-width: 1024px) and (max-width: 1360px) {
  .site-header.is-stuck .nav-home { display: none; }
  .site-header.is-stuck .main-nav > ul > li > a { padding: .4rem .45rem; font-size: .72rem; letter-spacing: .02em; }
}
