/* =========================================================
   CADI — Centro Acadêmico de Direito
   Paleta: branco + azul
   ========================================================= */
:root {
  --navy-900: #0b1640;
  --navy-800: #13215a;
  --navy-700: #1c2d72;
  --blue-600: #1f4fd1;
  --blue-500: #2f66f0;
  --blue-100: #e6eefe;
  --blue-50: #f3f7ff;
  --white: #ffffff;
  --ink: #0f1a3d;
  --muted: #5b6687;
  --line: #dde4f3;
  --gold: #e7b53c;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(11, 22, 64, .25);
  --shadow-lg: 0 30px 60px -20px rgba(11, 22, 64, .35);
  --container: 1200px;
  --header-h: 76px;
  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.2; margin: 0 0 .5em; color: var(--navy-900); }
p { margin: 0 0 1em; }

.container { width: min(var(--container), 100% - 32px); margin-inline: auto; }
.section { padding: 88px 0; }
.section--tint { background: var(--blue-50); }
.section--navy { background: var(--navy-900); color: #dfe6ff; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 10px; }
.section-head p { color: var(--muted); }
.section--navy .section-head p { color: #b8c4ec; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: .95rem; transition: .25s ease;
}
.btn--primary { background: var(--blue-600); color: var(--white); }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { border-color: var(--blue-600); color: var(--blue-600); background: transparent; }
.btn--ghost:hover { background: var(--blue-600); color: var(--white); }
.btn--light { background: var(--white); color: var(--navy-800); }
.btn--light:hover { background: var(--blue-100); }

/* ---------------- Logo com máscaras ---------------- */
.logo-mask {
  position: relative; display: inline-block; flex-shrink: 0;
  aspect-ratio: 525 / 700;
}
.logo-mask img { width: 100%; height: 100%; object-fit: contain; }
/* Brilho que percorre apenas o desenho do brasão (mask com a própria logo) */
.logo-mask::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.85) 50%, transparent 65%);
  background-size: 300% 100%;
  -webkit-mask: url("../assets/img/logo-cadi.png") center / contain no-repeat;
          mask: url("../assets/img/logo-cadi.png") center / contain no-repeat;
  animation: shine 5s ease-in-out infinite;
  mix-blend-mode: soft-light;
}
@keyframes shine { 0%, 60% { background-position: 150% 0; } 100% { background-position: -150% 0; } }

/* Silhueta azul/branca da logo via máscara (usada como marca d'água) */
.logo-silhouette {
  background: currentColor;
  -webkit-mask: url("../assets/img/logo-cadi.png") center / contain no-repeat;
          mask: url("../assets/img/logo-cadi.png") center / contain no-repeat;
  aspect-ratio: 525 / 700;
}

/* Logo recortada em círculo com borda degradê (máscara radial) */
.logo-seal {
  width: 150px; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; background: var(--white);
  box-shadow: 0 0 0 6px rgba(255,255,255,.15), var(--shadow-lg);
  -webkit-mask: radial-gradient(circle, #000 68%, rgba(0,0,0,.92) 70%, #000 72%);
          mask: radial-gradient(circle, #000 68%, rgba(0,0,0,.92) 70%, #000 72%);
}
.logo-seal .logo-mask { width: 62%; }

/* ---------------- Header ---------------- */
.topbar {
  background: var(--navy-900); color: #b8c4ec; font-size: .8rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 7px 0; }
.topbar a:hover { color: var(--white); }
.topbar__social { display: flex; gap: 14px; }
.topbar__motto { font-family: var(--ff-serif); font-style: italic; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(11,22,64,.4); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mask { height: 56px; width: 42px; }
.brand__text { display: flex; align-items: center; }
.brand__text strong { display: block; font-family: var(--ff-serif); font-size: 1.6rem; color: var(--navy-900); letter-spacing: .06em; line-height: 1; }
.brand__text span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; padding: 8px 11px; border-radius: 8px;
  font-size: .86rem; font-weight: 600; color: var(--navy-800); white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 3px; height: 2px;
  background: var(--blue-600); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--blue-600); }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy-900); margin: 5px 0; transition: .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--white); padding: 12px 16px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .3s;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .topbar__motto { display: none; }
}

/* ---------------- Portal de notícias (1ª dobra) ---------------- */
.news-hero { padding: 28px 0 56px; background: linear-gradient(180deg, var(--blue-50), var(--white)); }
.ticker {
  display: flex; align-items: center; background: var(--navy-900); color: var(--white);
  border-radius: 999px; overflow: hidden; margin-bottom: 24px; font-size: .88rem;
}
.ticker__label { background: var(--blue-600); padding: 9px 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.ticker__label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { opacity: .2; } }
.ticker__track { overflow: hidden; flex: 1; -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.ticker__items { display: inline-flex; gap: 48px; white-space: nowrap; padding-left: 100%; animation: ticker 40s linear infinite; }
.ticker:hover .ticker__items { animation-play-state: paused; }
.ticker__items button { background: none; border: 0; color: inherit; padding: 0; }
.ticker__items button:hover { text-decoration: underline; }
@keyframes ticker { to { transform: translateX(-100%); } }

.news-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.news-head h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 6px 0 0; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); background: var(--white); color: var(--navy-800);
  padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; transition: .2s;
}
.chip:hover { border-color: var(--blue-600); }
.chip.is-active { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }

.news-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; }
.news-feature {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px;
  color: var(--white); display: flex; align-items: flex-end; cursor: pointer; box-shadow: var(--shadow-lg);
  text-align: left; border: 0; padding: 0; background: var(--navy-800);
}
.news-feature .cover { position: absolute; inset: 0; transition: transform .6s ease; }
.news-feature:hover .cover { transform: scale(1.04); }
.news-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(11,22,64,.95)); }
.news-feature__body { position: relative; z-index: 1; padding: 32px; }
.news-feature h2 { color: var(--white); font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.news-feature p { color: #d3dcfb; max-width: 60ch; margin: 0; }

.news-side { display: grid; gap: 14px; align-content: start; }
.news-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px;
  text-align: left; cursor: pointer; transition: .25s; width: 100%;
}
.news-item:hover { border-color: var(--blue-500); transform: translateX(4px); box-shadow: var(--shadow); }
.news-item .cover { border-radius: 8px; aspect-ratio: 4/3; }
.news-item h3 { font-family: var(--ff-sans); font-size: .95rem; font-weight: 700; margin: 4px 0; }
.meta { font-size: .76rem; color: var(--muted); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tag { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 9px; border-radius: 999px; background: var(--blue-100); color: var(--blue-600); }
.news-feature .tag { background: var(--blue-600); color: var(--white); }
.news-feature .meta { color: #b8c4ec; margin-bottom: 8px; }

/* Capa gerada (placeholder até ter imagens no Supabase) */
.cover {
  background: radial-gradient(circle at 80% 20%, var(--blue-500), transparent 55%), linear-gradient(135deg, var(--navy-700), var(--navy-900));
  background-size: cover; background-position: center; position: relative; overflow: hidden;
}
.cover[data-img] { background-color: var(--navy-800); }
.cover:not([data-img])::before {
  content: ""; position: absolute; width: 55%; right: -8%; top: 50%; transform: translateY(-50%); aspect-ratio: 525/700;
  background: rgba(255,255,255,.12);
  -webkit-mask: url("../assets/img/logo-cadi.png") center / contain no-repeat;
          mask: url("../assets/img/logo-cadi.png") center / contain no-repeat;
}

.news-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: .3s; display: flex; flex-direction: column; text-align: left; padding: 0; width: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .cover { aspect-ratio: 16/9; }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body h3 { font-size: 1.15rem; margin: 0; }
.card__body p { color: var(--muted); font-size: .92rem; margin: 0; }
button.card { cursor: pointer; }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-feature { min-height: 360px; }
  .news-more { grid-template-columns: 1fr; }
}

/* ---------------- Page hero (páginas internas) ---------------- */
.page-hero {
  position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(circle at 85% 10%, rgba(47,102,240,.55), transparent 50%), linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: 72px 0 80px;
}
.page-hero .logo-silhouette { position: absolute; right: -40px; top: 50%; transform: translateY(-50%) rotate(-8deg); width: 320px; color: rgba(255,255,255,.06); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 10px 0; }
.page-hero p { color: #c6d1f5; max-width: 640px; font-size: 1.08rem; margin: 0; }
.page-hero .eyebrow { color: #9fb8ff; }
.breadcrumb { font-size: .82rem; color: #9fb0e0; margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--white); }

/* ---------------- Sobre ---------------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.about__img { position: relative; }
.about__img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about__img .logo-seal { position: absolute; left: -36px; bottom: -36px; width: 120px; }
.about__text p { color: var(--muted); font-size: 1.04rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: .3s; }
.pillar:hover { border-color: var(--blue-500); box-shadow: var(--shadow); }
.pillar__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-600); margin-bottom: 16px; }
.pillar h3 { font-size: 1.2rem; }
.pillar p { color: var(--muted); margin: 0; font-size: .95rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat strong { display: block; font-family: var(--ff-serif); font-size: 2.6rem; color: var(--white); }
.stat span { color: #b8c4ec; font-size: .9rem; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { margin: 0; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__img .logo-seal { left: 16px; bottom: -30px; width: 96px; }
  .pillars, .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* ---------------- Gestão ---------------- */
.team-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 64px; }
.team-photo img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.team-photo figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px; color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(11,22,64,.9));
}
.team-photo figcaption strong { font-family: var(--ff-serif); font-size: 1.6rem; display: block; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.member { text-align: center; }
.member__photo {
  position: relative; aspect-ratio: 1; margin: 0 auto 16px; width: 100%; max-width: 240px;
  border-radius: 50%; overflow: hidden; background: var(--blue-100); max-width: 200px; border: 4px solid var(--white); box-shadow: var(--shadow);
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .5s; }
.member:hover .member__photo img { transform: scale(1.06); }
.member__photo::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(31,79,209,.55));
  opacity: 0; transition: .3s;
}
.member:hover .member__photo::after { opacity: 1; }
.member h3 { font-size: 1.15rem; margin: 0 0 2px; }
.member span { color: var(--blue-600); font-size: .86rem; font-weight: 600; }
.member--lead .member__photo { box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--blue-600); }

/* ---------------- Agenda ---------------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.search {
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px;
  padding: 0 16px; background: var(--white); min-width: min(320px, 100%);
}
.search input { border: 0; outline: 0; padding: 11px 0; font: inherit; width: 100%; background: transparent; color: var(--ink); }
.search:focus-within { border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-100); }

.event-list { display: grid; gap: 18px; }
.event {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: .3s;
}
.event:hover { box-shadow: var(--shadow); border-color: var(--blue-500); }
.event__date { background: var(--navy-900); color: var(--white); border-radius: 12px; text-align: center; padding: 12px 6px; }
.event__date strong { display: block; font-family: var(--ff-serif); font-size: 2rem; line-height: 1; }
.event__date span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: #9fb8ff; }
.event h3 { font-size: 1.2rem; margin: 6px 0; }
.event p { color: var(--muted); margin: 0 0 8px; font-size: .94rem; }
.event .meta svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 3px; }
.event.is-past { opacity: .6; }
@media (max-width: 700px) {
  .event { grid-template-columns: 72px 1fr; gap: 16px; }
  .event .btn { grid-column: 1 / -1; }
  .event__date strong { font-size: 1.5rem; }
}

/* ---------------- Calendário ---------------- */
.cal-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: start; }
.cal { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal__head h2 { margin: 0; font-size: 1.5rem; text-transform: capitalize; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); display: grid; place-items: center; color: var(--navy-800); transition: .2s; }
.icon-btn:hover:not(:disabled) { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.icon-btn:disabled { opacity: .35; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__dow { text-align: center; font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; padding: 6px 0; }
.cal__day {
  aspect-ratio: 1; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 600; font-size: .95rem; position: relative; border: 1px solid transparent; background: var(--blue-50); color: var(--navy-800);
}
.cal__day.is-empty { background: transparent; }
.cal__day.is-weekend { color: #9aa3bf; }
.cal__day.has-event { cursor: pointer; }
.cal__day.has-event:hover { border-color: var(--blue-500); }
.cal__day .dots { display: flex; gap: 3px; margin-top: 3px; position: absolute; bottom: 6px; }
.cal__day .dots i { width: 5px; height: 5px; border-radius: 50%; }
.cal__day.is-holiday { background: #fdecec; color: #c0392b; }
.cal__day.is-period { background: var(--navy-800); color: var(--white); }
.cal__day.is-selected { outline: 2px solid var(--blue-600); outline-offset: 1px; }
.cal__day.is-today::before { content: "hoje"; position: absolute; top: 3px; font-size: .55rem; text-transform: uppercase; color: var(--blue-600); }
.dot--feriado { background: #e74c3c; }
.dot--academico { background: var(--blue-600); }
.dot--prazo { background: var(--gold); }
.dot--evento { background: #16a085; }
.legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; font-size: .8rem; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.cal-events { display: grid; gap: 10px; }
.cal-events h3 { font-size: 1.2rem; margin-bottom: 6px; }
.cal-ev { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--blue-600); }
.cal-ev strong { display: block; font-size: .95rem; }
.cal-ev small { color: var(--muted); }
.cal-ev.feriado { border-left-color: #e74c3c; }
.cal-ev.prazo { border-left-color: var(--gold); }
.cal-ev.evento { border-left-color: #16a085; }
.cal-ev__day { font-family: var(--ff-serif); font-weight: 700; font-size: 1.3rem; color: var(--navy-800); min-width: 54px; line-height: 1.1; }
.cal-ev__day small { display: block; font-family: var(--ff-sans); font-size: .66rem; font-weight: 600; text-transform: uppercase; }
.key-dates { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.key-date { background: var(--white); border-radius: var(--radius); padding: 22px; border: 1px solid var(--line); }
.key-date span { color: var(--blue-600); font-weight: 700; font-size: .85rem; }
.key-date strong { display: block; font-family: var(--ff-serif); font-size: 1.1rem; margin-top: 4px; color: var(--navy-900); }
@media (max-width: 900px) { .cal-layout { grid-template-columns: 1fr; } .cal { padding: 14px; } .cal__day { font-size: .82rem; border-radius: 8px; } }

/* ---------------- Estágios ---------------- */
.jobs { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.job { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: .3s; }
.job:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.job__top { display: flex; gap: 14px; align-items: center; }
.job__logo { width: 52px; height: 52px; border-radius: 12px; background: var(--navy-900); color: var(--white); display: grid; place-items: center; font-family: var(--ff-serif); font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.job h3 { font-size: 1.15rem; margin: 0; }
.job__org { color: var(--muted); font-size: .88rem; }
.job ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.job li { font-size: .78rem; background: var(--blue-50); color: var(--navy-800); padding: 5px 10px; border-radius: 8px; font-weight: 600; }
.job p { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.job__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; font-size: .82rem; color: var(--muted); }
.job__foot .btn { padding: 8px 16px; font-size: .85rem; }
.deadline-soon { color: #c0392b; font-weight: 700; }

.empty { text-align: center; padding: 48px 16px; color: var(--muted); grid-column: 1/-1; }

/* ---------------- Parceiros ---------------- */
.partners { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.partner { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; transition: .3s; }
.partner:hover { border-color: var(--blue-500); box-shadow: var(--shadow); }
.partner__logo { width: 88px; height: 88px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-600), var(--navy-900)); color: var(--white); display: grid; place-items: center; font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 700; }
.partner h3 { font-size: 1.15rem; margin-bottom: 4px; }
.partner .tag { margin-bottom: 12px; }
.partner p { color: var(--muted); font-size: .92rem; }
.benefit { font-weight: 700; color: var(--blue-600); font-size: .9rem; }

/* ---------------- Form ---------------- */
.form { display: grid; gap: 14px; background: var(--white); padding: 28px; border-radius: var(--radius); color: var(--ink); }
.form label { display: grid; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--navy-800); }
.form input, .form textarea, .form select { font: inherit; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; outline: 0; color: var(--ink); background: var(--white); }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-100); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__msg { font-size: .9rem; margin: 0; color: #16a085; min-height: 1.2em; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------------- Em construção ---------------- */
.construction {
  min-height: calc(100vh - var(--header-h) - 32px); display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 35%, var(--blue-100), var(--white) 60%); padding: 60px 16px; overflow: hidden; position: relative;
}
.construction h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 28px 0 10px; }
.construction p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; }
.build { position: relative; width: 280px; height: 220px; margin: 0 auto; }
.build .logo-mask { position: absolute; left: 50%; bottom: 20px; width: 120px; transform: translateX(-50%); animation: rise 3.2s ease-in-out infinite; }
/* Máscara que "constrói" a logo de baixo para cima */
.build .logo-mask img { -webkit-mask: linear-gradient(0deg, #000 50%, transparent 50%) 0 0 / 100% 200%; mask: linear-gradient(0deg, #000 50%, transparent 50%) 0 0 / 100% 200%; animation: reveal 3.2s ease-in-out infinite; }
@keyframes reveal { 0% { -webkit-mask-position: 0 0; mask-position: 0 0; } 60%, 100% { -webkit-mask-position: 0 100%; mask-position: 0 100%; } }
@keyframes rise { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }
.crane { position: absolute; left: 10px; bottom: 20px; width: 8px; height: 190px; background: var(--navy-800); border-radius: 4px; }
.crane::before { content: ""; position: absolute; top: 0; left: 0; width: 190px; height: 8px; background: var(--navy-800); border-radius: 4px; }
.crane__hook { position: absolute; top: 8px; left: 150px; width: 2px; background: var(--blue-500); animation: hook 3.2s ease-in-out infinite; transform-origin: top; }
.crane__hook::after { content: ""; position: absolute; bottom: -10px; left: -7px; width: 16px; height: 12px; border: 3px solid var(--blue-600); border-top: 0; border-radius: 0 0 10px 10px; }
@keyframes hook { 0%, 100% { height: 40px; } 50% { height: 90px; } }
.ground { position: absolute; left: 0; right: 0; bottom: 12px; height: 8px; border-radius: 4px; background: repeating-linear-gradient(45deg, var(--navy-900) 0 14px, var(--blue-500) 14px 28px); background-size: 40px 8px; animation: stripes 1s linear infinite; }
@keyframes stripes { to { background-position: 40px 0; } }
.gear { position: absolute; color: var(--blue-600); animation: spin 6s linear infinite; }
.gear--a { right: 6px; top: 20px; width: 56px; }
.gear--b { right: 52px; top: 62px; width: 36px; animation-direction: reverse; color: var(--navy-700); }
@keyframes spin { to { transform: rotate(360deg); } }
.progress { width: min(360px, 100%); height: 10px; border-radius: 999px; background: var(--blue-100); overflow: hidden; margin: 0 auto 28px; }
.progress i { display: block; height: 100%; width: 40%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-500), var(--navy-800)); animation: load 2.4s ease-in-out infinite; }
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(260%); } }

/* ---------------- Modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 16px; background: rgba(11,22,64,.7); backdrop-filter: blur(4px); }
.modal.is-open { display: grid; animation: fade .25s; }
.modal__box { background: var(--white); border-radius: var(--radius); max-width: 760px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: pop .3s; }
.modal__box .cover { aspect-ratio: 16/7; }
.modal__content { padding: 28px 32px 36px; }
.modal__content h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 10px 0; }
.modal__content p { color: #37415f; }
.modal__close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--white); font-size: 1.4rem; line-height: 1; box-shadow: var(--shadow); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { transform: translateY(20px) scale(.98); opacity: 0; } }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-900); color: #b8c4ec; padding: 64px 0 24px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--white); font-family: var(--ff-sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: var(--white); }
.footer-brand { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.footer-brand .logo-seal { width: 84px; }
.footer-brand strong { font-family: var(--ff-serif); color: var(--white); font-size: 1.5rem; display: block; line-height: 1.1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .8rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------- Banners fixados (admin) ---------------- */
.banner-slider { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; aspect-ratio: 16 / 4.5; min-height: 160px; box-shadow: var(--shadow); background: var(--navy-900); }
.banner { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none; color: var(--white); display: flex; align-items: flex-end; }
.banner.is-active { opacity: 1; pointer-events: auto; }
.banner .cover { position: absolute; inset: 0; }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,22,64,.75), transparent 65%); }
.banner__body { position: relative; z-index: 1; padding: 22px 28px; display: grid; gap: 2px; max-width: 640px; }
.banner__body strong { font-family: var(--ff-serif); font-size: clamp(1.1rem, 2.4vw, 1.8rem); line-height: 1.2; }
.banner__body span { color: #d3dcfb; font-size: .95rem; }
.banner-dots { position: absolute; right: 18px; bottom: 16px; z-index: 2; display: flex; gap: 6px; }
.banner-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; background: rgba(255,255,255,.5); transition: .3s; }
.banner-dots button.is-active { width: 26px; background: var(--white); }
@media (max-width: 600px) { .banner-slider { aspect-ratio: 16 / 7; } }

.job__cover { aspect-ratio: 16/8; margin: -24px -24px 4px; }
.partner__img { width: 96px; height: 96px; object-fit: contain; margin: 0 auto 16px; border-radius: 12px; }
.footer-credit { color: var(--white); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.35); }
.footer-credit:hover { border-color: var(--white); }

/* ---------------- Página da notícia ---------------- */
.ticker__items a:hover { text-decoration: underline; }
.article-section { padding-top: 48px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; }
.breadcrumb--dark { color: var(--muted); margin-bottom: 14px; }
.breadcrumb--dark a:hover { color: var(--blue-600); }
.article h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 12px 0 14px; }
.article__lead { font-size: 1.15rem; color: var(--muted); }
.article__img { width: 100%; border-radius: var(--radius); margin: 24px 0; max-height: 520px; object-fit: cover; }
.article__body { font-size: 1.08rem; line-height: 1.8; color: #2a3456; margin-top: 16px; }
.article__share { display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line); margin-top: 32px; padding-top: 20px; }
.related { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 12px; }
.related > h3 { font-size: 1.3rem; margin-bottom: 4px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-600); }
.related .news-item { grid-template-columns: 96px 1fr; }
.related .news-item h3 { font-size: .9rem; }
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .related { position: static; }
}

/* ---------------- 404 — Houston ---------------- */
.space {
  position: relative; overflow: hidden; min-height: calc(100vh - var(--header-h) - 32px);
  display: grid; place-items: center; text-align: center; padding: 64px 16px; color: var(--white);
  background: radial-gradient(ellipse at 20% 80%, rgba(47,102,240,.35), transparent 55%), radial-gradient(ellipse at 90% 10%, rgba(120,90,255,.25), transparent 45%), linear-gradient(180deg, #050b24, var(--navy-900));
}
.stars { position: absolute; inset: -50% 0 0 0; background-repeat: repeat; animation: drift 80s linear infinite; }
.stars--sm { background-image: radial-gradient(1px 1px at 20px 30px, #fff, transparent), radial-gradient(1px 1px at 120px 80px, #cfd9ff, transparent), radial-gradient(1px 1px at 200px 160px, #fff, transparent), radial-gradient(1px 1px at 60px 190px, #fff, transparent); background-size: 240px 240px; opacity: .7; }
.stars--md { background-image: radial-gradient(2px 2px at 80px 40px, #fff, transparent), radial-gradient(2px 2px at 300px 220px, #9fb8ff, transparent), radial-gradient(1.5px 1.5px at 180px 320px, #fff, transparent); background-size: 400px 400px; animation-duration: 50s; animation-name: drift, twinkle; animation-iteration-count: infinite; }
@keyframes drift { to { transform: translateY(50%); } }
@keyframes twinkle { 50% { opacity: .4; } }
.shooting-star { position: absolute; top: 15%; left: -10%; width: 140px; height: 2px; background: linear-gradient(90deg, #fff, transparent); transform: rotate(-20deg); animation: shoot 6s ease-in infinite 2s; opacity: 0; }
@keyframes shoot { 0% { opacity: 0; transform: translate(0,0) rotate(-20deg); } 5% { opacity: 1; } 20%, 100% { opacity: 0; transform: translate(120vw, 40vh) rotate(-20deg); } }
.planet { position: absolute; right: -90px; bottom: -90px; width: 320px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--blue-500), var(--navy-800) 70%); box-shadow: 0 0 80px rgba(47,102,240,.4); }
.planet::after { content: ""; position: absolute; inset: 45% -30%; border: 3px solid rgba(159,184,255,.35); border-radius: 50%; transform: rotate(-18deg); }
.space__content { position: relative; z-index: 1; max-width: 720px; }
.big404 { display: flex; justify-content: center; align-items: center; gap: 8px; font-family: var(--ff-serif); font-weight: 700; font-size: clamp(6rem, 22vw, 12rem); line-height: 1; text-shadow: 0 0 40px rgba(47,102,240,.6); }
.big404__zero { position: relative; width: .8em; height: 1em; display: grid; place-items: center; }
.big404__zero .logo-mask { width: 55%; animation: float 5s ease-in-out infinite; filter: drop-shadow(0 0 24px rgba(255,255,255,.35)); }
@keyframes float { 0%, 100% { transform: translateY(-8px) rotate(-8deg); } 50% { transform: translateY(10px) rotate(8deg); } }
.orbit { position: absolute; inset: 2% -6%; border: 2px dashed rgba(159,184,255,.4); border-radius: 50%; animation: spin 14s linear infinite; }
.orbit i { position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.space__radio { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: #9fb8ff; margin: 18px 0 8px; }
.space__radio::after { content: "▌"; animation: pulse 1s steps(1) infinite; margin-left: 4px; }
.glitch { position: relative; color: var(--white); font-family: var(--ff-sans); font-weight: 800; letter-spacing: .02em; font-size: clamp(1.6rem, 5vw, 3rem); margin: 0 0 14px; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; inset: 0; overflow: hidden; }
.glitch::before { color: #5ea0ff; animation: glitch 3s infinite; clip-path: inset(0 0 60% 0); }
.glitch::after { color: #ff6b8a; animation: glitch 2.5s infinite reverse; clip-path: inset(55% 0 0 0); }
@keyframes glitch { 0%, 88%, 100% { transform: none; } 90% { transform: translate(-3px, 1px); } 94% { transform: translate(3px, -1px); } 97% { transform: translate(-1px, 2px); } }
.space__text { color: #c6d1f5; font-size: 1.1rem; max-width: 520px; margin: 0 auto 28px; }
.space__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy-900); }
@media (max-width: 600px) { .planet { width: 200px; right: -70px; bottom: -70px; } }

/* ---------------- Ouvidoria ---------------- */
.ouv { max-width: 860px; }
.tabs { display: flex; gap: 6px; background: var(--blue-50); padding: 6px; border-radius: 999px; margin-bottom: 28px; border: 1px solid var(--line); }
.tab { flex: 1; border: 0; background: transparent; padding: 12px 16px; border-radius: 999px; font-weight: 600; color: var(--navy-800); transition: .2s; }
.tab.is-active { background: var(--white); color: var(--blue-600); box-shadow: var(--shadow); }
.ouv-form { border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(20px, 4vw, 36px); gap: 22px; }
.ouv-form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 14px; }
.ouv-form legend { font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy-900); margin-bottom: 12px; }
.hint { color: var(--muted); font-size: .88rem; margin: -6px 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border-radius: 12px; }
.type { position: relative; cursor: pointer; }
.type input { position: absolute; opacity: 0; }
.type span { display: grid; gap: 2px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; transition: .2s; height: 100%; }
.type strong { color: var(--navy-900); font-size: .98rem; }
.type small { color: var(--muted); font-size: .8rem; font-weight: 400; }
.type:hover span { border-color: var(--blue-500); }
.type input:checked + span { border-color: var(--blue-600); background: var(--blue-50); box-shadow: 0 0 0 3px var(--blue-100); }
.type input:focus-visible + span { outline: 2px solid var(--blue-600); outline-offset: 2px; }
.anon { display: flex !important; flex-direction: row; gap: 12px; align-items: flex-start; background: #fff8e6; border: 1px solid #f5d98b; border-radius: 12px; padding: 14px 16px; cursor: pointer; }
.anon input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue-600); flex-shrink: 0; }
.anon span { display: grid; gap: 2px; font-weight: 400; }
.anon small { color: #6b4e00; }
.is-invalid { border-color: #c0392b !important; box-shadow: 0 0 0 3px #fbe1de !important; }
.type-grid.is-invalid { outline: 2px solid #c0392b; outline-offset: 4px; }
.form__error { color: #c0392b; font-weight: 600; font-size: .92rem; margin: 0; min-height: 1.2em; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }

.ouv-success { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 24px; box-shadow: var(--shadow); }
.success-icon { width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem; color: var(--white); background: linear-gradient(135deg, var(--blue-500), var(--navy-800)); animation: pop .4s; }
.ouv-success p { color: var(--muted); max-width: 520px; margin: 0 auto 20px; }
.ticket { display: grid; gap: 8px; justify-items: center; background: var(--blue-50); border: 2px dashed var(--blue-500); border-radius: 14px; padding: 20px; margin: 0 auto 24px; max-width: 420px; }
.ticket span { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.ticket strong { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: clamp(1.1rem, 4.5vw, 1.6rem); color: var(--navy-900); letter-spacing: .06em; word-break: break-all; }

.consult-form { border: 1px solid var(--line); box-shadow: var(--shadow); }
.consult-row { display: flex; gap: 10px; }
.consult-row input { flex: 1; min-width: 0; }
.consult-results { display: grid; gap: 16px; margin-top: 24px; }
.ticket-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.ticket-card header { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.ticket-card h3 { font-size: 1.15rem; margin: 6px 0 2px; }
.ticket-card small { color: var(--muted); }
.status { flex-shrink: 0; font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.status--pendente { background: #fff3d6; color: #8a5a00; }
.status--em_andamento { background: var(--blue-100); color: var(--blue-600); }
.status--respondida { background: #dcf5ea; color: #13795b; }
.status--concluida { background: #d7f0e3; color: #0d5c43; }
.status--arquivada { background: #eceef3; color: #5b6687; }
.answer { background: var(--blue-50); border-left: 4px solid var(--blue-600); border-radius: 8px; padding: 14px 16px; margin: 16px 0 0; }
.answer p { margin: 6px 0 0; color: #2a3456; }
.timeline { list-style: none; margin: 16px 0 0; padding: 0 0 0 18px; border-left: 2px solid var(--line); display: grid; gap: 10px; font-size: .9rem; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -24px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 3px var(--white); }
.timeline span { display: block; font-size: .76rem; color: var(--muted); }
@media (max-width: 640px) {
  .type-grid { grid-template-columns: 1fr 1fr; }
  .consult-row { flex-direction: column; }
  .ticket-card header { flex-direction: column; }
  .tab { padding: 10px; font-size: .85rem; }
}

/* ---------------- Ouvidoria: anexos ---------------- */
.attach { display: grid; gap: 10px; }
.attach__label { font-size: .85rem; font-weight: 600; color: var(--navy-800); }
.drop {
  display: grid !important; justify-items: center; gap: 4px !important; text-align: center; cursor: pointer;
  border: 2px dashed var(--line); border-radius: 14px; padding: 24px 16px; color: var(--blue-600); background: var(--blue-50); transition: .2s;
}
.drop:hover, .drop.is-drag { border-color: var(--blue-600); background: var(--blue-100); }
.drop strong { color: var(--navy-900); font-size: .98rem; }
.drop small { color: var(--muted); font-weight: 400; font-size: .8rem; }
.drop.is-full { opacity: .5; pointer-events: none; }
.files { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.file { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 8px; position: relative; background: var(--white); }
.file img, .file video, .file__noprev { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; background: var(--navy-900); }
.file__noprev { display: grid; place-items: center; color: var(--white); font-size: .75rem; }
.file__badge { position: absolute; left: 12px; bottom: 12px; font-size: .6rem; font-weight: 700; text-transform: uppercase; background: rgba(11,22,64,.85); color: var(--white); padding: 1px 5px; border-radius: 4px; }
.file__info { min-width: 0; display: grid; }
.file__info strong { font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--navy-900); }
.file__info small { color: var(--muted); font-weight: 400; }
.file__remove { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); font-size: 1.2rem; line-height: 1; color: var(--muted); }
.file__remove:hover { background: #c0392b; border-color: #c0392b; color: var(--white); }

/* Ouvidoria em destaque no menu */
.nav a.nav__cta { background: var(--blue-600); color: var(--white); padding: 8px 16px; border-radius: 999px; margin-left: 6px; box-shadow: 0 6px 16px -6px rgba(31,79,209,.6); }
.nav a.nav__cta::after { display: none; }
.nav a.nav__cta:hover { background: var(--navy-700); color: var(--white); }
.nav a.nav__cta.is-active { background: var(--navy-900); color: var(--white); box-shadow: 0 0 0 3px var(--blue-100); }
@media (max-width: 1080px) { .nav a.nav__cta { margin: 12px 0 0; text-align: center; border-bottom: 0; padding: 14px; } }
