/* ===== ESTILO ORSNA UNIFICADO ===== */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Topbar */
.topbar {
  background-color: #002855;
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 16px;
}

.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

/* Header institucional ORSNA */
.gov-header {
  background-color: #ffffff;
  border-bottom: 1px solid #dde2e6;
}

.gov-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a3e0, #0072bb);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span:first-child {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #6c757d;
}

.brand-text span:last-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: #002855;
}

/* Breadcrumb */
.breadcrumb {
  background-color: #eef2f7;
  border-bottom: 1px solid #dde2e6;
}

.breadcrumb-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #6c757d;
}

.breadcrumb-inner a {
  color: #0072bb;
  text-decoration: none;
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}

/* Contenedor general */
.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Banner principal */
.banner {
  padding: 28px 4px 10px;
  margin-top: 10px;
}

.banner h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #004b80;
  margin-bottom: 6px;
}

.banner p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 6px;
  max-width: 760px;
}

.note {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 16px;
}

/* GRID de informes */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 22px 0 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d0d7e2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0066b3;
  font-weight: 600;
}

.title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004b80;
}

.desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.4;
}

.btn {
  align-self: flex-start;
  margin-top: 10px;
  text-decoration: none;
  background: #0066b3;
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background .25s, transform .2s;
}

.btn:hover {
  background: #004b80;
  transform: translateY(-1px);
}

/* Footer */
footer {
  border-top: 1px solid #d2d9e3;
  padding: 12px 0 16px;
  font-size: 0.83rem;
  color: #555;
  text-align: center;
  background: #f9fafb;
  margin-top: auto;
}

footer a {
  color: #004b80;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}
