:root {
  --pc-navy: #072f54;
  --pc-navy-dark: #051f39;
  --pc-blue: #125783;
  --pc-yellow: #f5c400;
  --pc-red: #d8473d;
  --pc-green: #379a72;
  --pc-white: #ffffff;
  --pc-ivory: #f5f1e7;
  --pc-surface: #f1f3f4;
  --pc-text: #181c20;
  --pc-muted: #64696e;
  --pc-border: #dadddf;
  --pc-container: 1360px;
  --pc-shadow: 0 24px 70px rgba(5, 31, 57, 0.2);
  /* el header se contrae pasado el hero: se reserva la banda de la pildora */
  --pc-header-h: 64px;
  /* Manrope unifies headings, body copy and interface text. */
  --pc-display: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (max-width: 767px) {
  :root { --pc-header-h: 71px; }
}

/* los anclajes internos no quedan debajo del header fijo */
main > section[id] {
  scroll-margin-top: var(--pc-header-h);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pc-text);
  background: var(--pc-white);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.pc-lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--pc-yellow);
  outline-offset: 4px;
}

.pc-container {
  width: min(calc(100% - 48px), var(--pc-container));
  margin-inline: auto;
}

.pc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--pc-white);
  background: linear-gradient(180deg, rgba(5, 31, 57, 0.78), rgba(5, 31, 57, 0));
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pc-header.is-scrolled,
.pc-header.is-open {
  color: var(--pc-text);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--pc-border);
  backdrop-filter: blur(14px);
}

.pc-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.pc-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.pc-brand img {
  width: clamp(140px, 12vw, 164px);
}

.pc-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 18px);
  flex: 0 1 auto;
  margin-inline: auto;
}

.pc-nav a {
  font-size: 14px;
  font-weight: 800;
}

.pc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-search,
.pc-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.pc-header.is-scrolled .pc-search,
.pc-header.is-open .pc-search,
.pc-header.is-scrolled .pc-menu-toggle,
.pc-header.is-open .pc-menu-toggle {
  background: var(--pc-white);
  border-color: var(--pc-border);
}

.pc-search::before {
  content: "";
  position: absolute;
  inset: 12px 14px 14px 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.pc-search::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 12px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.pc-search-panel[hidden] {
  display: none;
}

.pc-search-panel {
  position: fixed;
  inset: 78px 0 auto;
  z-index: 55;
  color: var(--pc-text);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--pc-border);
  box-shadow: 0 18px 44px rgba(5, 31, 57, 0.18);
  backdrop-filter: blur(14px);
}

.pc-search-panel__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding-block: 18px;
}

.pc-search-panel__form {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.pc-search-panel__form label {
  color: var(--pc-navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-search-panel__form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--pc-text);
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: 999px;
}

.pc-search-panel__close {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--pc-navy-dark);
  border: 0;
  border-radius: 50%;
}

.pc-search-panel__close::before,
.pc-search-panel__close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  width: 16px;
  height: 2px;
  background: var(--pc-white);
}

.pc-search-panel__close::before {
  transform: rotate(45deg);
}

.pc-search-panel__close::after {
  transform: rotate(-45deg);
}

.pc-menu-toggle {
  display: none;
}

.pc-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 99px;
}

.pc-access {
  padding: 12px 16px;
  color: var(--pc-navy-dark);
  background: var(--pc-yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.pc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.pc-button--light {
  margin-top:15px;
  color: var(--pc-navy-dark);
  background: var(--pc-white);
}

.pc-button--ghost {
  color: var(--pc-white);
  border-color: rgba(255, 255, 255, 0.58);
}

.pc-button--dark {
  color: var(--pc-white);
  background: var(--pc-navy-dark);
}

.pc-link,
.pc-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--pc-blue);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.pc-link::after,
.pc-link-button::after {
  content: "→";
}

.pc-eyebrow {
  margin: 0 0 14px;
  color: var(--pc-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Amarillo solo donde funciona: sobre navy / imagen oscura */
.pc-section--navy .pc-eyebrow,
.pc-hero .pc-eyebrow,
.pc-inner-hero .pc-eyebrow,
.pc-agenda .pc-eyebrow,
.pc-stats .pc-eyebrow,
.pc-allies .pc-eyebrow,
.pc-photo-statement .pc-eyebrow,
.pc-full-statement .pc-eyebrow,
.pc-eje .pc-eyebrow {
  color: var(--pc-yellow);
  font-weight: 900;
}

.pc-agenda .pc-eyebrow {
  color: var(--pc-blue) !important;
} 

.pc-hero {
  position: relative;
  min-height: clamp(460px, 62vh, 600px);
  display: grid;
  align-items: end;
  color: var(--pc-white);
  overflow: hidden;
}

.pc-hero__image,
.pc-photo-statement__image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(245, 196, 0, 0.18), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 56px),
    url("../images/banner_principal_propuesta_c.avif");
  background-size: cover;
  background-position: center;
}

.pc-photo-statement__image {
  background-image:
    linear-gradient(90deg, rgba(5, 31, 57, 0.76), rgba(5, 31, 57, 0.18)),
    url("../images/asocapitales-quienes-somos-procesos.jpg");
}

.pc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 31, 57, 0.88), rgba(5, 31, 57, 0.48) 55%, rgba(5, 31, 57, 0.3));
}

.pc-hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(92px, 12vh, 128px) clamp(44px, 6vh, 68px);
}

.pc-hero h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(30px, 2.9vw, 42px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.pc-hero p:not(.pc-eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.pc-hero__caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pc-flags {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  background: var(--pc-white);
  border-bottom: 1px solid var(--pc-border);
}

.pc-flags p {
  display: grid;
  place-items: center start;
  min-height: 58px;
  margin: 0;
  padding-inline: 28px;
  color: var(--pc-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pc-flags__track {
  display: flex;
  width: max-content;
  animation: pc-marquee 42s linear infinite;
}

.pc-flags:hover .pc-flags__track {
  animation-play-state: paused;
}

.pc-flags__track div {
  display: flex;
}

.pc-flag-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding-inline: 22px;
  color: var(--pc-text);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  border-left: 1px solid var(--pc-border);
}

.pc-flag-item img {
  display: block;
  width: 22px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(5, 31, 57, 0.16);
}

.pc-flag-name {
  display: inline;
}

@keyframes pc-marquee {
  to {
    transform: translateX(-50%);
  }
}

.pc-news,
.pc-thinking,
.pc-team,
.pc-allies {
  padding: clamp(44px, 5.2vw, 76px) 0;
}

.pc-cities h2,
.pc-agenda h2,
.pc-photo-statement h2,
.pc-news h2,
.pc-events h2,
.pc-thinking h2,
.pc-team h2,
.pc-citizen h2,
.pc-newsletter h2,
.pc-footer h2 {
  margin: 0;
  font-family: var(--pc-display);
  font-size: clamp(27px, 2.7vw, 36px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pc-stats {
  padding: clamp(44px, 5.2vw, 72px) 0;
  color: var(--pc-white);
  background: var(--pc-navy-dark);
}

.pc-stats h2 {
  margin: 0;
  color: var(--pc-yellow);
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.pc-stats p {
  max-width: 16ch;
  margin: 16px 0 36px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.pc-stats__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pc-stats__rail article {
  padding: 28px 27px 0px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.pc-stats__rail strong {
  display: block;
  color: var(--pc-white);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pc-stats__rail span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.pc-cities {
  display: flex;
  flex-direction: column;
  min-height: min(calc(100svh - var(--pc-header-h)), 700px);
  padding-block: clamp(30px, 4.2vh, 58px);
  background: var(--pc-ivory);
}

.pc-cities > .pc-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pc-cities__intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(16px, 2.2vh, 30px);
}

/* el mosaico ocupa el alto sobrante en dos filas iguales */
.pc-city-mosaic {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(14px, 1.7vh, 20px);
}

.pc-city-mosaic article {
  position: relative;
  isolation: isolate;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(14px, 1.7vh, 20px);
  color: var(--pc-white);
  background-color: var(--pc-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  overflow: hidden;
}

.pc-city-mosaic article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 31, 57, 0) 0%,
    rgba(5, 31, 57, 0.06) 34%,
    rgba(5, 31, 57, 0.52) 66%,
    rgba(5, 31, 57, 0.88) 100%
  );
}

.pc-city-mosaic article > * {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 14px rgba(5, 31, 57, 0.72), 0 1px 3px rgba(5, 31, 57, 0.5);
}

.pc-city-card--large {
  grid-row: span 2;
  min-height: 0;
}

.pc-city-mosaic p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.pc-city-mosaic a {
  margin-top: 10px;
  font-size: 14px;
}

.pc-city-card--large h3 {
  font-size: clamp(21px, 2vw, 27px);
}

.pc-photo-frame,
.pc-chapter-photo {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 42px),
    var(--pc-blue);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.pc-photo-frame img,
.pc-chapter-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.pc-city-mosaic h3,
.pc-chapters h3,
.pc-news h3,
.pc-event-list h3,
.pc-thinking h3,
.pc-team h3 {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.pc-city-mosaic p,
.pc-chapters p,
.pc-news p,
.pc-event-list p,
.pc-thinking p,
.pc-team p {
  color: rgba(255, 255, 255, 0.76);
}

.pc-chapters a,
.pc-thinking a,
.pc-city-mosaic a {
  color: var(--pc-yellow);
  font-weight: 900;
}

.pc-agenda {
  padding: clamp(24px, 5.2vw, 33px) 0;
  /* color: var(--pc-white); */
  /* background: var(--pc-white); */
  padding-bottom: 0;
  margin-bottom: 25px;
}



.pc-agenda h2 {
  max-width: 32ch;
  margin-bottom: 44px;
}

.pc-chapters {
  display: grid;
  gap: 28px;
}

.pc-chapters article {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pc-chapters article > span {
  color: var(--pc-yellow);
  font-size: 22px;
  font-weight: 900;
}

.pc-chapters strong {
  display: block;
  margin: 20px 0 12px;
  color: var(--pc-green);
  font-size: 18px;
}

.pc-photo-statement {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: center;
  color: var(--pc-white);
  overflow: hidden;
}

.pc-photo-statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 31, 57, 0.88), rgba(5, 31, 57, 0.28));
}

.pc-photo-statement .pc-container {
  position: relative;
  z-index: 1;
}

.pc-photo-statement h2 {
  max-width: 100%;
}

.pc-news {
  background: var(--pc-ivory);
}

.pc-news h2 {
  max-width: 22ch;
  margin-bottom: 28px;
}

.pc-news .pc-eyebrow {
  color: var(--pc-blue);
  /* font-weight: 900; */
}

/* ============================================================
   Noticias — portada editorial: una destacada a sangre y
   cuatro entradas con miniatura. Antes eran un bloque navy
   con la foto dentro y una lista de texto plano.
   ============================================================ */
.pc-news__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(20px, 2.4vh, 30px);
}

.pc-news__head h2 {
  max-width: none;
  margin: 0;
}

.pc-feed {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

/* --- destacada --- */
.pc-feed__hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(360px, 40vw, 470px);
  padding: clamp(22px, 2.4vw, 32px);
  color: var(--pc-white);
  border-radius: 22px;
  overflow: hidden;
}

.pc-feed__hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.pc-feed__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 46%,
    rgba(52, 38, 10, 0.58) 72%,
    rgba(34, 25, 6, 0.93) 100%
  );
}

.pc-feed__hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c9a21a, rgba(201, 162, 26, 0.3));
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.pc-feed__hero:hover img,
.pc-feed__hero:focus-visible img {
  transform: scale(1.05);
}

.pc-feed__hero:hover::after,
.pc-feed__hero:focus-visible::after {
  transform: scaleX(1.0);
  background: linear-gradient(90deg, var(--pc-yellow), rgba(245, 196, 0, 0.5));
}

.pc-feed__hero-body {
  position: relative;
  z-index: 2;
  display: block;
  text-shadow: 0 2px 18px rgba(5, 31, 57, 0.92), 0 1px 4px rgba(5, 31, 57, 0.8);
}

.pc-feed__hero strong {
  display: block;
  margin-top: 12px;
  font-family: var(--pc-display);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.pc-feed__go {
  display: inline-block;
  margin-top: clamp(14px, 1.8vh, 22px);
  color: var(--pc-yellow);
  font-size: 13.5px;
  font-weight: 800;
  transition: transform 0.24s ease;
}

.pc-feed__hero:hover .pc-feed__go {
  transform: translateX(6px);
}

/* --- entradas con miniatura --- */
.pc-feed__list {
  display: grid;
  align-content: start;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: 22px;
  overflow: hidden;
}

.pc-feed__item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(76px, 7vw, 96px) minmax(0, 1fr);
  gap: clamp(13px, 1.3vw, 18px);
  align-items: start;
  padding: clamp(14px, 1.5vw, 19px);
  transition: background 0.2s ease;
}

.pc-feed__item + .pc-feed__item {
  border-top: 1px solid var(--pc-border);
}

/* filete ambar a la izquierda al pasar por encima */
.pc-feed__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pc-yellow);
  transform: scaleY(0);
  transition: transform 0.24s ease;
}

.pc-feed__item:hover,
.pc-feed__item:focus-visible {
  background: var(--pc-ivory);
}

.pc-feed__item:hover::before,
.pc-feed__item:focus-visible::before {
  transform: scaleY(1);
}

.pc-feed__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 11px;
  overflow: hidden;
}

.pc-feed__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.pc-feed__item:hover .pc-feed__thumb img {
  transform: scale(1.07);
}

.pc-feed__body {
  display: block;
  min-width: 0;
}

.pc-feed__item strong {
  display: block;
  margin-top: 7px;
  color: var(--pc-navy);
  font-size: clamp(13.5px, 1.15vw, 15.5px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* --- meta: chip del eje + fecha --- */
.pc-feed__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pc-feed__meta time {
  color: var(--pc-muted);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pc-feed__hero .pc-feed__meta time {
  color: rgba(255, 255, 255, 0.72);
}

.pc-chip {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pc-chip[data-eje="seguras"] {
  color: var(--pc-red);
  background: rgba(216, 71, 61, 0.1);
  box-shadow: inset 0 0 0 1px rgba(216, 71, 61, 0.28);
}

.pc-chip[data-eje="sostenibles"] {
  color: var(--pc-green);
  background: rgba(55, 154, 114, 0.1);
  box-shadow: inset 0 0 0 1px rgba(55, 154, 114, 0.3);
}

.pc-feed__hero .pc-chip[data-eje="seguras"],
.pc-feed__hero .pc-chip[data-eje="sostenibles"] {
  color: var(--pc-white);
  background: rgba(5, 31, 57, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (max-width: 1000px) {
  .pc-feed {
    grid-template-columns: 1fr;
  }

  .pc-news__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }
}

.pc-video {
  position: relative;
  padding-top: 74px;
}

/* .pc-video::before {
  content: "▶";
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--pc-navy-dark);
  background: var(--pc-yellow);
  border-radius: 50%;
} */

.pc-x {
  border-left: 6px solid var(--pc-blue);
}

.pc-pdf {
  border-left: 6px solid var(--pc-red);
}

.pc-events {
  padding: clamp(44px, 5.2vw, 72px) 0;
  background: var(--pc-white);
}

.pc-events__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 96px);
}

.pc-event-list {
  border-top: 1px solid var(--pc-border);
}

.pc-event-list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--pc-border);
}

.pc-event-list time {
  color: var(--pc-blue);
}

.pc-event-list time strong {
  display: block;
  font-size: 40px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.pc-event-list time span {
  font-weight: 900;
  text-transform: uppercase;
}

.pc-event-list h3,
.pc-thinking h3,
.pc-team h3 {
  color: var(--pc-text);
}

.pc-event-list p,
.pc-thinking p,
.pc-team p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.pc-thinking {
  color: var(--pc-white);
  background: var(--pc-navy-dark);
}

.pc-thinking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 92px);
}

.pc-feature-report {
  margin-top: 36px;
  padding: 30px;
  background: var(--pc-white);
  border-radius: 22px;
}

.pc-feature-report h3,
.pc-feature-report p,
.pc-feature-report span {
  color: var(--pc-text);
}

.pc-feature-report span {
  display: block;
  margin: 14px 0 20px;
}

.pc-thinking-list {
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pc-thinking-list a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 26px 0;
  color: var(--pc-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pc-thinking-list span {
  color: var(--pc-yellow);
  font-weight: 900;
}

.pc-thinking-list h3 {
  color: var(--pc-white);
}

.pc-team {
  background: var(--pc-surface);
}

.pc-team h2 {
  max-width: 16ch;
  margin-bottom: 42px;
}

.pc-team__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.pc-person {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  color: var(--pc-white);
  background: var(--pc-navy);
  border-radius: 24px;
}

.pc-person div,
.pc-profile-photo {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  color: var(--pc-navy-dark);
  background: var(--pc-yellow);
  border-radius: 50%;
  font-weight: 900;
}

.pc-person h3 {
  color: var(--pc-white);
}

.pc-person button {
  width: max-content;
  padding: 0;
  color: var(--pc-yellow);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.pc-citizen {
  position: relative;
  padding: clamp(44px, 5.2vw, 72px) 0;
  color: var(--pc-white);
  background: var(--pc-navy-dark);
  border-top: 3px solid #1c6b4f;
  overflow: hidden;
}

.pc-citizen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 56, 41, 0.56), rgba(10, 56, 41, 0.34) 55%, rgba(55, 154, 114, 0.22)),
    url("../images/asocapitales-quienes-somos-procesos.jpg");
  background-size: cover;
  background-position: center;
}

.pc-citizen .pc-container {
  position: relative;
  z-index: 1;
}

/* con el velo mas suave, el titulo cae sobre fachadas claras */
.pc-citizen h2,
.pc-citizen .pc-section-lead {
  text-shadow: 0 2px 16px rgba(5, 31, 57, 0.85), 0 1px 4px rgba(5, 31, 57, 0.7);
}

.pc-citizen h2 {
  max-width: 24ch;
  margin-bottom: 12px;
}

.pc-citizen .pc-section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.pc-newsletter {
  padding: clamp(44px, 5.2vw, 72px) 0;
  background: var(--pc-ivory);
  border-top: 3px solid var(--pc-yellow);
}

.pc-newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.pc-newsletter .pc-eyebrow {
  color: var(--pc-blue);
}

.pc-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.pc-newsletter label {
  grid-column: 1 / -1;
  font-weight: 900;
}

.pc-newsletter input,
.pc-modal input {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--pc-border);
  border-radius: 999px;
}

.pc-link-button {
  grid-column: 2;
}

.pc-allies {
  position: relative;
  color: var(--pc-white);
  background:
    radial-gradient(85% 75% at 12% 8%, rgba(18, 87, 131, 0.5), transparent 62%),
    var(--pc-navy-dark);
  overflow: hidden;
}

.pc-allies::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--pc-yellow), var(--pc-red), var(--pc-green));
}

.pc-allies__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.pc-allies__copy {
  position: sticky;
  top: 120px;
}

.pc-allies__copy .pc-eyebrow {
  color: var(--pc-yellow);
}

.pc-allies h2 {
  max-width: 28ch;
  margin: 0;
  color: var(--pc-white);
}

.pc-allies__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pc-allies__logo {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* .pc-allies__logo:nth-child(3n + 1) {
  transform: translateY(18px);
} */

.pc-allies__logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px);
}

.pc-allies__logo:nth-child(3n + 1):hover {
  transform: translateY(10px);
}

.pc-allies__logos img {
  width: 100%;
  max-width: 150px;
  max-height: 56px;
  object-fit: contain;
}

.pc-footer {
  padding: clamp(56px, 7vw, 88px) 0 52px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--pc-navy-dark);
}

.pc-footer h2 {
  max-width: 10ch;
  margin-bottom: 54px;
  color: var(--pc-white);
}

.pc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 68px);
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pc-footer img {
  width: 210px;
  margin-bottom: 22px;
}

.pc-footer h3 {
  margin: 0 0 14px;
  color: var(--pc-yellow);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pc-footer a,
.pc-footer p {
  display: block;
  margin: 9px 0;
}

.pc-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.pc-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  background: rgba(245, 196, 0, 0.12);
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-radius: 50%;
}

.pc-social img {
  width: 16px;
  height: 16px;
  margin: 0;
}

.pc-modal[hidden] {
  display: none;
}

.pc-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.pc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 31, 57, 0.72);
}

.pc-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--pc-white);
  border-radius: 24px;
  box-shadow: var(--pc-shadow);
}

.pc-modal__panel--profile {
  display: block;
  width: min(100%, 520px);
  padding: 38px;
}

.pc-modal__visual {
  display: grid;
  place-items: end start;
  min-height: 430px;
  padding: 28px;
  color: var(--pc-white);
  background-image:
    linear-gradient(120deg, rgba(5, 31, 57, 0.76), rgba(5, 31, 57, 0.28)),
    url("../images/seccion-ciudades-capitales.jpg");
  background-size: cover;
  background-position: center;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-modal__content {
  position: relative;
  padding: 42px;
}

.pc-modal h2 {
  margin: 0;
  color: var(--pc-text);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pc-modal p:not(.pc-eyebrow) {
  color: var(--pc-muted);
}

.pc-modal form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pc-modal label {
  font-weight: 900;
}

.pc-check {
  display: flex;
  gap: 10px;
  color: var(--pc-muted);
  font-size: 14px;
  font-weight: 700;
}

.pc-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  border-radius: 50%;
}

.pc-modal__close::before,
.pc-modal__close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 16px;
  height: 2px;
  background: var(--pc-navy-dark);
}

.pc-modal__close::before {
  transform: rotate(45deg);
}

.pc-modal__close::after {
  transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .pc-header__actions .pc-access {
    display: none;
  }

  .pc-events__grid,
  .pc-thinking__grid,
  .pc-newsletter__grid,
  .pc-allies__layout {
    grid-template-columns: 1fr;
  }

  .pc-stats__rail,
  .pc-team__grid,
  .pc-allies__logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-allies__copy {
    position: static;
  }

  .pc-chapters article,
  .pc-footer__grid {
    grid-template-columns: 1fr;
  }

  .pc-cities {
    min-height: 0;
    padding-block: clamp(36px, 5vw, 60px);
  }

  .pc-city-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .pc-city-mosaic article {
    min-height: 210px;
  }
}

@media (max-width: 767px) {
  .pc-container {
    width: min(calc(100% - 32px), var(--pc-container));
  }

  .pc-header__inner {
    min-height: 70px;
  }

  .pc-brand {
    width: 160px;
  }

  .pc-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .pc-header__actions {
    display: flex;
    gap: 8px;
  }

  .pc-header__actions .pc-access {
    display: none;
  }

  .pc-search-panel {
    inset: 70px 0 auto;
  }

  .pc-search-panel__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .pc-search-panel__form {
    grid-template-columns: 1fr;
  }

  .pc-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    color: var(--pc-text);
    background: var(--pc-white);
    border-bottom: 1px solid var(--pc-border);
    box-shadow: var(--pc-shadow);
    transform: translateY(-125%);
    transition: transform 0.24s ease;
  }

  .pc-nav.is-open {
    transform: translateY(0);
  }

  .pc-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--pc-border);
  }

  .pc-hero {
    min-height: 600px;
  }

  .pc-hero__content {
    padding-block: 104px 56px;
  }

  .pc-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .pc-actions,
  .pc-newsletter form {
    display: grid;
  }

  .pc-button {
    width: 100%;
  }

  .pc-hero__caption {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .pc-flags {
    grid-template-columns: 1fr;
  }

  .pc-flags p {
    min-height: 42px;
  }

  .pc-stats__rail,
  .pc-allies__logos,
  .pc-newsletter form {
    grid-template-columns: 1fr;
  }

  .pc-allies__logo:nth-child(3n + 1),
  .pc-allies__logo:nth-child(3n + 1):hover {
    transform: none;
  }

  .pc-city-card--large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 300px;
  }

  .pc-event-list a {
    grid-template-columns: 82px 1fr;
  }

  .pc-modal__panel {
    display: block;
  }

  .pc-modal__visual {
    display: none;
  }

  .pc-modal__content,
  .pc-modal__panel--profile {
    padding: 34px 24px;
  }
}

/* Ciudades: una sola columna en telefono */
@media (max-width: 620px) {
  .pc-city-mosaic {
    grid-template-columns: 1fr;
  }

  .pc-city-card--large {
    grid-column: auto;
    min-height: 260px;
  }

  .pc-cities__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
  }

  .pc-flags__track {
    animation: none;
  }

  .pc-eje__video {
    display: none;
  }
}

/* ============================================================
   Propuesta C — densidad de contenido
   ============================================================ */

/* Hero: tarjetas de cifras */
.pc-hero__facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pc-hero__facts article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  background: var(--pc-white);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(5, 31, 57, 0.24);
}

.pc-hero__facts span {
  color: var(--pc-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pc-hero__facts strong {
  color: var(--pc-navy);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pc-hero__facts em {
  color: var(--pc-muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .pc-hero__facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .pc-hero__facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
  }

  .pc-hero__facts article {
    padding: 16px 14px;
  }
}

/* Cómo trabajamos */
.pc-how {
  padding: clamp(44px, 5.2vw, 76px) 0;
  background: var(--pc-ivory);
}

.pc-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pc-how article {
  padding: 26px;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: 20px;
}

.pc-how span {
  color: var(--pc-blue);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pc-how h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pc-how p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Agenda: focos por capítulo */
.pc-chapter-focus {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.pc-chapter-focus li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.pc-chapter-focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--pc-yellow);
  border-radius: 2px;
}

.pc-news__foot,
.pc-events__foot {
  margin-top: 28px;
}

/* Ciudad-mosaico: tarjeta CTA */
.pc-city-card--cta {
  justify-content: center;
  gap: 12px;
  background-color: var(--pc-blue);
  text-align: left;
}

.pc-city-card--cta::before {
  display: none;
}

.pc-city-card--cta strong {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pc-city-card--cta span {
  color: var(--pc-yellow);
  font-weight: 900;
}

/* Equipo: foto de fondo */
.pc-team__grid {
  grid-template-columns: repeat(3, 1fr);
}

.pc-person {
  position: relative;
  isolation: isolate;
  min-height: 340px;
  background-color: var(--pc-navy);
  background-size: cover;
  background-position: center top;
}

.pc-person::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 31, 57, 0) 0%,
    rgba(5, 31, 57, 0.06) 42%,
    rgba(5, 31, 57, 0.58) 72%,
    rgba(5, 31, 57, 0.94) 100%
  );
  border-radius: 24px;
}

.pc-person > * {
  position: relative;
  z-index: 1;
}

/* Junta directiva: mini-fila */
.pc-junta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--pc-border);
}

.pc-junta__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-junta__item img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.pc-junta__item strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
}

.pc-junta__item span {
  color: var(--pc-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Ciudadanía: tarjetas + contacto */
.pc-citizen__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.pc-citizen__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  color: var(--pc-text);
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(5, 31, 57, 0.22);
  transition: box-shadow 0.16s ease, transform 0.16s ease;
}

.pc-citizen__card:hover,
.pc-citizen__card:focus-visible {
  box-shadow: 0 22px 48px rgba(5, 31, 57, 0.32);
  transform: translateY(-3px);
}

.pc-citizen__go {
  margin-top: auto;
  color: var(--pc-blue);
  font-weight: 900;
}

.pc-citizen__card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
}

.pc-citizen__card p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .pc-how__grid,
  .pc-citizen__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pc-how__grid,
  .pc-citizen__cards,
  .pc-team__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Reveal on scroll — animación de entrada por sección
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-on [data-reveal] {
    transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  html.reveal-on [data-reveal]:not(.is-revealed) {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* ============================================================
   Navegación con submenús (dropdowns)
   ============================================================ */
.pc-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.pc-nav__item > a,
.pc-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 2px;
  color: inherit;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.pc-nav__btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.pc-nav__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 8px;
  color: var(--pc-text);
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  box-shadow: var(--pc-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 70;
}

.pc-nav__item--panel:hover .pc-nav__panel,
.pc-nav__item--panel:focus-within .pc-nav__panel,
.pc-nav__btn[aria-expanded="true"] + .pc-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.pc-nav__btn[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-1px);
}

/* Allow time to cross from a desktop trigger into its floating panel. */
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .pc-header:not(.is-min) .pc-nav__panel {
    transition: opacity 0.16s ease 0.5s, transform 0.16s ease 0.5s,
      visibility 0s linear 0.66s;
  }
  .pc-header:not(.is-min) .pc-nav__item--panel:hover .pc-nav__panel,
  .pc-header:not(.is-min) .pc-nav__item--panel:focus-within .pc-nav__panel,
  .pc-header:not(.is-min) .pc-nav__btn[aria-expanded="true"] + .pc-nav__panel {
    transition-delay: 0s;
  }
  .pc-header:not(.is-min) .pc-nav__panel::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 8px;
  }
}

.pc-nav__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--pc-text);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.pc-nav__panel a:hover,
.pc-nav__panel a:focus-visible {
  background: var(--pc-surface);
}

.pc-nav__panel a[aria-current="page"] {
  color: var(--pc-blue);
  background: var(--pc-surface);
}

/* Áreas: mega-panel con columnas temáticas + destacado */
.pc-nav__item--mega {
  position: static;
}

.pc-nav__panel--areas {
  left: 50%;
  right: auto;
  width: min(1080px, calc(100vw - 48px));
  min-width: 0;
  transform: translateX(-50%) translateY(10px);
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(196px, 0.8fr);
  gap: 0;
  padding: clamp(20px, 1.8vw, 28px);
  border-radius: 16px;
  overflow: visible;
}

.pc-nav__item--panel:hover .pc-nav__panel--areas,
.pc-nav__item--panel:focus-within .pc-nav__panel--areas,
.pc-nav__btn[aria-expanded="true"] + .pc-nav__panel--areas {
  transform: translateX(-50%) translateY(4px);
}

.pc-nav__panel--areas a {
  white-space: normal;
  line-height: 1.3;
}

/* Columna temática */
.pc-areas-col {
  min-width: 0;
  padding-inline: clamp(14px, 1.6vw, 26px);
}

.pc-areas-col:first-child {
  padding-left: 0;
}

.pc-areas-col + .pc-areas-col {
  border-left: 1px solid var(--pc-border);
}

.pc-areas-col__h {
  margin: 0 0 10px;
  padding-left: 12px;
  color: var(--pc-blue);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pc-nav__panel--areas .pc-areas-col a {
  position: relative;
  display: block;
  padding: 7px 8px 7px 12px;
  border-radius: 7px;
  color: var(--pc-text);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.15s ease, background 0.15s ease;
}

.pc-areas-col a::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--pc-yellow);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.16s ease;
}

.pc-nav__panel--areas .pc-areas-col a:hover,
.pc-nav__panel--areas .pc-areas-col a:focus-visible {
  color: var(--pc-navy);
  background: var(--pc-surface);
}

.pc-nav__panel--areas .pc-areas-col a[aria-current="page"] {
  color: var(--pc-blue);
  background: var(--pc-surface);
}

.pc-areas-col a:hover::before,
.pc-areas-col a:focus-visible::before,
.pc-areas-col a[aria-current="page"]::before {
  height: calc(100% - 14px);
}

/* Tarjeta destacada: todas las áreas */
.pc-nav__panel--areas .pc-areas-feat {
  display: flex;
  flex-direction: column;
  margin-left: clamp(14px, 1.6vw, 26px);
  padding: 0;
  overflow: hidden;
  color: var(--pc-white);
  background: var(--pc-navy-dark);
  border-radius: 12px;
  white-space: normal;
}

.pc-nav__panel--areas .pc-areas-feat:hover,
.pc-nav__panel--areas .pc-areas-feat:focus-visible {
  background: var(--pc-navy);
}

.pc-areas-feat__img {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pc-areas-feat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pc-areas-feat:hover .pc-areas-feat__img img {
  transform: scale(1.05);
}

.pc-areas-feat__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 31, 57, 0.1), rgba(5, 31, 57, 0.8));
}

.pc-areas-feat__body {
  display: block;
  padding: 14px 16px 16px;
}

.pc-areas-feat__body strong {
  display: block;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pc-areas-feat__d {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.pc-areas-feat__go {
  display: block;
  margin-top: 12px;
  color: var(--pc-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Utilidades de espaciado (sustituyen inline styles repetidos) */
.pc-u-mt-1 { margin-top: 18px; }
.pc-u-mt-2 { margin-top: 28px; }
.pc-u-mt-3 { margin-top: 44px; }
.pc-source-note { margin-top: 24px; color: var(--pc-muted); font-size: 14px; }
.pc-form-field { display: grid; gap: 8px; font-weight: 800; }
.pc-form-field input,
.pc-form-field select,
.pc-form-field textarea { min-height: 48px; padding: 10px 14px; border: 1px solid var(--pc-border); border-radius: 12px; font: inherit; background: var(--pc-white); color: var(--pc-text); }
.pc-form-field textarea { min-height: 108px; }
.pc-form-field--full { grid-column: 1 / -1; }
.pc-form { align-items: start; }

@media (max-width: 767px) {
  .pc-nav__item {
    display: block;
    border-bottom: 1px solid var(--pc-border);
  }

  .pc-nav__item > a,
  .pc-nav__btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 14px 4px;
    text-align: left;
    font-size: 15px;
  }

  .pc-nav__panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: max-height 0.24s ease;
  }

  .pc-nav__item--panel:hover .pc-nav__panel,
  .pc-nav__item--panel:focus-within .pc-nav__panel,
  .pc-nav__btn[aria-expanded="true"] + .pc-nav__panel {
    transform: none;
    max-height: 0;
  }

  .pc-nav__btn[aria-expanded="true"] + .pc-nav__panel {
    max-height: 460px;
  }

  .pc-nav__btn[aria-expanded="true"] + .pc-nav__panel--areas {
    max-height: min(66vh, 560px);
    overflow-y: auto;
  }

  .pc-nav__panel--areas {
    left: auto;
    width: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 0;
  }

  .pc-areas-col,
  .pc-areas-col:first-child {
    padding-inline: 0;
  }

  .pc-areas-col + .pc-areas-col {
    margin-top: 10px;
    padding-top: 10px;
    border-left: 0;
    border-top: 1px solid var(--pc-border);
  }

  .pc-areas-col__h {
    padding-left: 16px;
  }

  .pc-nav__panel--areas .pc-areas-col a {
    padding: 10px 4px 10px 16px;
    font-size: 14px;
  }

  .pc-areas-col a::before {
    left: 6px;
  }

  .pc-nav__panel--areas .pc-areas-feat {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 12px 0 4px;
  }

  .pc-areas-feat__img {
    flex: 0 0 96px;
    aspect-ratio: 1 / 1;
  }

  .pc-areas-feat__body {
    padding: 10px 14px 10px 0;
  }

  .pc-areas-feat__d {
    display: none;
  }

  .pc-nav__panel a {
    padding: 11px 4px 11px 16px;
    border-bottom: 0;
    font-size: 14px;
    white-space: normal;
  }
}

/* Intro/lead de sección sobre fondo oscuro (sustituye inline styles repetidos) */
.pc-section-lead {
  max-width: 70ch;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.pc-microcopy-ondark {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.6;
}

.pc-microcopy-ondark--caps {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Áreas en Home
   ============================================================ */
.pc-areas-home {
  padding: clamp(44px, 5.2vw, 76px) 0;
  background: var(--pc-white);
}

.pc-areas-home__head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.pc-areas-home__head h2 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pc-areas-home__head p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 15px;
  line-height: 1.6;
}

.pc-areas-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.pc-area-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--pc-ivory);
  border: 1px solid var(--pc-border);
  border-radius: 16px;
}

.pc-area-tile h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.pc-area-tile p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.55;
}

.pc-area-tile a {
  margin-top: auto;
  color: var(--pc-blue);
  font-size: 13px;
  font-weight: 900;
}

.pc-area-tile a::after {
  content: " →";
}

@media (max-width: 960px) {
  .pc-areas-home__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-areas-home__head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pc-areas-home__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Home · Banner "Centro de Inteligencia"
   Reproducción fiel de la portada del Centro Nacional de
   Inteligencia (dashboards.asocapitales.co). Estilos y tokens
   tomados de esa portada; todo vive bajo el scope .pc-cih para
   no afectar el resto de la Propuesta C.
   ============================================================ */
.pc-cih {
  --cih-deep: #040b18;
  --cih-ink: #eaf1fb;
  --cih-amber: #f4c20d;
  --cih-blue: #17407f;
  --cih-glow: #3e8fe0;
  --cih-gris: #5a6674;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cih-ink);
  background: var(--cih-deep);
}

.pc-cih__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/propuesta-c/hero-centro-inteligencia.jpg");
  background-size: cover;
  background-position: 58% 48%;
}

.pc-cih__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(4, 11, 24, 0.97) 0%, rgba(6, 20, 40, 0.93) 38%, rgba(9, 32, 62, 0.62) 66%, rgba(10, 38, 72, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 11, 24, 0.22), rgba(3, 9, 20, 0.72)),
    radial-gradient(1200px 700px at 74% 34%, rgba(62, 143, 224, 0.3), transparent 64%);
}

.pc-cih__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(160, 205, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 205, 255, 0.1) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: linear-gradient(to right, black, transparent 76%);
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.pc-cih__rings {
  position: absolute;
  z-index: 1;
  right: -150px;
  bottom: -230px;
  pointer-events: none;
}

.pc-cih__rings i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(244, 194, 13, 0.26);
}

.pc-cih__rings i:nth-child(1) { width: 330px; height: 330px; }
.pc-cih__rings i:nth-child(2) { width: 520px; height: 520px; border-color: rgba(62, 143, 224, 0.22); }
.pc-cih__rings i:nth-child(3) { width: 720px; height: 720px; border-color: rgba(62, 143, 224, 0.13); }

.pc-cih__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 60px);
  width: min(calc(100% - 48px), var(--pc-container));
  margin-inline: auto;
  padding-block: clamp(88px, 12vh, 128px) clamp(40px, 7vh, 72px);
}

.pc-cih__left {
  flex: 1 1 460px;
  min-width: 0;
  max-width: 580px;
}

.pc-cih__eyebrow {
  margin: 0 0 14px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(234, 241, 251, 0.66);
  animation: pcCihUp 0.85s cubic-bezier(0.2, 0.8, 0.3, 1) 0.05s both;
}

.pc-cih__title {
  margin: 0 0 22px;
  font-family: var(--pc-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #fff;
  animation: pcCihUp 0.95s cubic-bezier(0.2, 0.8, 0.3, 1) 0.16s both;
}

.pc-cih__title span { display: block; }
.pc-cih__title .pc-cih__amber { color: var(--cih-amber); }

.pc-cih__desc {
  position: relative;
  max-width: 560px;
  margin: 0;
  padding-left: 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(234, 241, 251, 0.8);
  animation: pcCihUp 0.95s cubic-bezier(0.2, 0.8, 0.3, 1) 0.26s both;
}

.pc-cih__desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  border-radius: 3px;
  background: var(--cih-amber);
}

.pc-cih__desc b { color: #fff; font-weight: 600; }

.pc-cih__cta {
  margin-top: 26px;
  animation: pcCihUp 0.95s cubic-bezier(0.2, 0.8, 0.3, 1) 0.36s both;
}

.pc-cih__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #201800;
  background: var(--cih-amber);
  box-shadow: 0 10px 30px -12px rgba(244, 194, 13, 0.7);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.pc-cih__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(244, 194, 13, 0.85);
}

.pc-cih__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(20px, 2.6vh, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  animation: pcCihUp 0.95s cubic-bezier(0.2, 0.8, 0.3, 1) 0.46s both;
}

.pc-cih__stat {
  min-width: 0;
  padding: clamp(11px, 1.5vh, 17px) 18px clamp(11px, 1.5vh, 17px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

/* filete vertical entre las dos columnas del riel */
.pc-cih__stat:nth-child(even) {
  padding-right: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

/* la ultima fila no lleva filete inferior */
.pc-cih__stat:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.pc-cih__stat-l {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 241, 251, 0.5);
}

.pc-cih__stat-v {
  margin: 7px 0 0;
  font-family: var(--pc-display);
  font-size: clamp(25px, 2.5vw, 33px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cih-amber);
  font-variant-numeric: tabular-nums;
}

.pc-cih__stat-n {
  margin: 5px 0 0;
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(234, 241, 251, 0.58);
}

.pc-cih__mapwrap {
  flex: 1.3 1 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  animation: pcCihFade 1.1s ease 0.1s both;
}

.pc-cih__map { width: 100%; display: flex; justify-content: center; }

#pc-cih-svg {
  height: min(82vh, 880px);
  max-width: 100%;
  width: auto;
  overflow: visible;
}

.pc-cih-fill {
  fill: rgba(62, 143, 224, 0.2);
  opacity: 0;
  animation: pcCihFade 1.5s ease 0.9s forwards;
}

.pc-cih-line {
  fill: none;
  stroke: rgba(158, 205, 255, 0.78);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(62, 143, 224, 0.55));
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  animation: pcCihDraw 2.2s cubic-bezier(0.36, 0, 0.18, 1) 0.3s forwards;
  pointer-events: none;
}

.pc-cih-cap { cursor: pointer; }
.pc-cih-cap:focus { outline: none; }
.pc-cih-cap:focus-visible { outline: 2px solid var(--cih-amber); outline-offset: 2px; border-radius: 4px; }
.pc-cih-cap:focus-visible .pc-cih-cap__ring { opacity: 1; }
.pc-cih-cap:focus-visible .pc-cih-cap__dot { fill: var(--cih-amber); }
.pc-cih-cap__hit { fill: transparent; }

.pc-cih-cap__dot {
  fill: var(--cih-amber);
  stroke: rgba(4, 11, 24, 0.75);
  stroke-width: 1;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: pcCihPop 0.6s cubic-bezier(0.2, 1.5, 0.45, 1) forwards;
  animation-delay: calc(1.45s + var(--i) * 0.035s);
  transition: fill 0.18s ease;
}

.pc-cih-cap.is-big .pc-cih-cap__dot { fill: #fff; }

.pc-cih-cap text {
  fill: rgba(234, 241, 251, 0.86);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  pointer-events: none;
  opacity: 0;
  animation: pcCihFade 0.7s ease forwards;
  animation-delay: calc(1.7s + var(--i) * 0.035s);
  paint-order: stroke;
  stroke: rgba(4, 11, 24, 0.8);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.pc-cih-cap.is-sm text { opacity: 0; animation: none; }
.pc-cih-cap.is-sm:hover text,
.pc-cih-cap.is-sm:focus-visible text { opacity: 1; transition: opacity 0.15s ease; }

.pc-cih-cap__ping {
  fill: none;
  stroke: var(--cih-amber);
  stroke-width: 1.2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: pcCihPing 3.6s ease-out infinite;
  animation-delay: calc(2.4s + var(--i) * 0.22s);
}

.pc-cih-cap__ring {
  fill: none;
  stroke: var(--cih-amber);
  stroke-width: 1.4;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.pc-cih-cap:hover .pc-cih-cap__ring { opacity: 1; }
.pc-cih-cap:hover .pc-cih-cap__dot { fill: var(--cih-amber); }

@keyframes pcCihDraw { to { stroke-dashoffset: 0; } }
@keyframes pcCihPop { 0% { opacity: 0; transform: scale(0); } 62% { opacity: 1; transform: scale(1.4); } 100% { opacity: 1; transform: scale(1); } }
@keyframes pcCihUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes pcCihFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pcCihPing { 0% { transform: scale(0.35); opacity: 0.9; } 70% { transform: scale(2.6); opacity: 0; } 100% { transform: scale(2.6); opacity: 0; } }

@media (max-width: 980px) {
  .pc-cih { min-height: 0; }
  .pc-cih__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding-block: clamp(96px, 16vh, 132px) 44px;
  }
  .pc-cih__left { flex: none; max-width: none; width: 100%; }
  .pc-cih__mapwrap { flex: none; width: 100%; }
  #pc-cih-svg { height: auto; max-height: 62vh; }
}

@media (max-width: 600px) {
  .pc-cih__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pc-cih__stat { min-width: 0; }
  .pc-cih__stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .pc-cih-cap.is-sm text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pc-cih__eyebrow,
  .pc-cih__title,
  .pc-cih__desc,
  .pc-cih__cta,
  .pc-cih__stats,
  .pc-cih__mapwrap,
  .pc-cih-fill,
  .pc-cih-cap__dot,
  .pc-cih-cap text { animation: none; opacity: 1; }
  .pc-cih-cap__dot { transform: none; }
  .pc-cih-cap__ping { animation: none; opacity: 0; }
  .pc-cih-line { animation: none; stroke-dashoffset: 0; }
}

/* ============================================================
   Home · Carrusel de Áreas (visual homogénea con la página de Áreas)
   ============================================================ */
.pc-media-card {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: 20px;
  overflow: hidden;
}

.pc-media-card img {
  width: 100%;
  height: clamp(158px, 17vw, 190px);
  object-fit: cover;
  object-position: center;
}

.pc-media-card > div { padding: 22px; }

.pc-media-card h3 {
  margin: 8px 0 6px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pc-media-card p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.pc-carousel {
  position: relative;
  margin-top: clamp(24px, 3vw, 36px);
}

.pc-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pc-carousel__track::-webkit-scrollbar { display: none; }

.pc-carousel__track > .pc-media-card {
  flex: 0 0 clamp(258px, 30vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.pc-carousel__track > .pc-media-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.pc-carousel__track > .pc-media-card .pc-link {
  margin-top: auto;
  padding-top: 8px;
}

.pc-carousel__nav {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pc-carousel__btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pc-border);
  border-radius: 50%;
  background: var(--pc-white);
  color: var(--pc-navy);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pc-carousel__btn::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.pc-carousel__btn[data-pc-carousel-prev]::before {
  transform: rotate(135deg);
  margin-left: 3px;
}

.pc-carousel__btn[data-pc-carousel-next]::before {
  transform: rotate(-45deg);
  margin-right: 3px;
}

.pc-carousel__btn:hover {
  background: var(--pc-navy);
  color: var(--pc-white);
  border-color: var(--pc-navy);
}

.pc-carousel__btn[disabled] {
  opacity: 0.35;
  cursor: default;
}

.pc-carousel__btn[disabled]:hover {
  background: var(--pc-white);
  color: var(--pc-navy);
  border-color: var(--pc-border);
}

@media (max-width: 600px) {
  .pc-carousel__track > .pc-media-card { flex-basis: 82vw; }
}

/* ============================================================
   Home · Ejes de la Agenda estratégica a todo el ancho
   (imagen de fondo + overlay + texto superpuesto)
   ============================================================ */
.pc-ejes {
  display: flex;
  flex-direction: column;
  margin-top: clamp(32px, 5vw, 52px);
}

.pc-eje {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(240px, 32vw, 360px);
  color: var(--pc-white);
  background-color: var(--pc-navy-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.pc-eje__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pc-eje__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 31, 57, 0.92) 0%, rgba(5, 31, 57, 0.55) 46%, rgba(5, 31, 57, 0.22) 100%),
    linear-gradient(135deg, rgba(245, 196, 0, 0.14), transparent 42%);
}

.pc-eje__inner {
  position: relative;
  z-index: 2;
  display: block;
  width: min(calc(100% - 48px), var(--pc-container));
  margin-inline: auto;
  padding-block: clamp(28px, 5vw, 56px);
}

.pc-eje__num {
  display: block;
  color: var(--pc-yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pc-eje__title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pc-eje__title span {
  color: var(--pc-yellow);
  font-weight: 700;
  transition: transform 0.18s ease;
}

.pc-eje:hover .pc-eje__title span,
.pc-eje:focus-visible .pc-eje__title span {
  transform: translateX(6px);
}

.pc-eje__text {
  display: block;
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .pc-eje__title { flex-wrap: wrap; gap: 8px; }
}

/* ============================================================
   Home · Botones de redes ("Asocapitales en redes")
   Cada red es un botón: icono + nombre + enlace externo.
   ============================================================ */
.pc-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--pc-navy-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pc-social-link img,
.pc-social-link svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.pc-social-link:hover,
.pc-social-link:focus-visible {
  background: var(--pc-yellow);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(5, 31, 57, 0.28);
}

@media (max-width: 480px) {
  .pc-social-links {
    flex-direction: column;
    align-items: stretch;
  }
  .pc-social-link {
    justify-content: center;
  }
}

/* Vista previa de redes (Home) — componente preparado, sin publicaciones simuladas (§17) */
.pc-allies__feed {
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
}

.pc-social-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pc-social-preview__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  color: var(--pc-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.pc-social-preview__card:hover,
.pc-social-preview__card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.pc-social-preview__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.pc-social-preview__head img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pc-social-preview__head b {
  font-weight: 900;
}

.pc-social-preview__head span {
  color: rgba(255, 255, 255, 0.66);
}

.pc-social-preview__body {
  display: grid;
  gap: 9px;
  min-height: 132px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  align-content: center;
}

.pc-social-preview__line {
  height: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.pc-social-preview__line--short {
  width: 55%;
}

/* Cuerpo con imagen real del perfil como fondo del touch point */
.pc-social-preview__body--img {
  padding: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background-color: var(--pc-navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pc-social-preview__body--video {
  place-items: center;
}

.pc-social-preview__play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pc-red);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  position: relative;
}

.pc-social-preview__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--pc-white);
}

.pc-social-preview__cta {
  margin-top: auto;
  color: var(--pc-yellow);
  font-weight: 900;
  font-size: 13px;
}

@media (max-width: 600px) {
  .pc-social-preview {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Header · logo negro cuando el menú tiene fondo (scroll / abierto)
   ============================================================ */
.pc-brand__dark { display: none; }

.pc-header.is-scrolled .pc-brand,
.pc-header.is-open .pc-brand {
  background: transparent;
  padding-inline: 0;
}

.pc-header.is-scrolled .pc-brand__light,
.pc-header.is-open .pc-brand__light { display: none; }

.pc-header.is-scrolled .pc-brand__dark,
.pc-header.is-open .pc-brand__dark { display: block; }

/* Foto real del miembro dentro del popup de perfil */
.pc-profile-photo.has-photo {
  color: transparent;
  background-color: var(--pc-surface);
  background-size: cover;
  background-position: center top;
}

/* ============================================================
   RESPONSIVE — Portátil / escritorio intermedio (1200–1440)
   y pantallas de poca altura (≤ 820). Reduce alto de heroes,
   escala tipográfica y aire vertical SIN comprimir el desktop
   grande (>1440) ni deteriorar tablet/móvil (<1100 ya cubierto).
   ============================================================ */
@media (min-width: 1101px) and (max-width: 1440px) {
  :root { --pc-container: 1240px; }

  .pc-hero { min-height: clamp(420px, 56vh, 540px); }
  .pc-hero__content { padding-block: clamp(84px, 11vh, 116px) clamp(40px, 5vh, 60px); }
  .pc-hero h1 { font-size: clamp(28px, 2.6vw, 38px); }
  .pc-hero p:not(.pc-eyebrow) { font-size: clamp(15px, 1.4vw, 17px); margin-top: 18px; }
  .pc-hero__facts article { padding: 14px 16px; }

  .pc-cih__title { font-size: clamp(1.9rem, 3.6vw, 3.2rem); margin-bottom: 16px; }
  .pc-cih__desc { font-size: 15px; }
  .pc-cih__stat-v { font-size: clamp(24px, 2.3vw, 30px); }

  .pc-stats h2 { font-size: clamp(40px, 5vw, 54px); }
}

@media (min-width: 1101px) and (max-height: 820px) {
  .pc-hero { min-height: min(90vh, 500px); }
  .pc-hero__content { padding-block: 84px 44px; }
  .pc-hero h1 { font-size: clamp(26px, 3.2vh, 36px); }
  .pc-hero__facts { margin-top: 20px; }
  .pc-hero__facts article { padding: 12px 14px; }
  .pc-hero__facts strong { font-size: 22px; }

  .pc-cih { min-height: 100svh; }
  .pc-cih__inner { padding-block: 36px; align-items: center; }
  .pc-cih__title { font-size: clamp(1.8rem, 4.4vh, 2.9rem); margin-bottom: 14px; }
  .pc-cih__desc { font-size: 14px; margin-bottom: 16px; }
  .pc-cih__stats { margin-top: 16px; }
  .pc-cih__stat { padding-block: 10px; }
  .pc-cih__stat-v { font-size: 24px; margin-top: 5px; }
  .pc-cih__stat-n { font-size: 11px; }
  #pc-cih-svg { height: min(70vh, 560px); }

  .pc-inner-hero { min-height: min(80vh, 400px); padding-block: 88px 40px; }
}

@media (min-width: 1101px) and (max-width: 1440px) and (max-height: 800px) {
  /* portátil "clásico" (1280×720, 1366×768…): aire mínimo + titulares controlados */
  .pc-news, .pc-thinking, .pc-team, .pc-allies,
  .pc-agenda, .pc-stats, .pc-how, .pc-areas-home, .pc-citizen, .pc-newsletter,
  .pc-photo-statement { padding-block: clamp(38px, 4.4vw, 60px); }
}

/* ------------------------------------------------------------
   Manifiesto — "Una sola voz" (segundo viewport)
   Split: foto a sangre a la izquierda + declaración a la derecha.
   Se dimensiona para caber en una pantalla.
   ------------------------------------------------------------ */
.pc-voice {
  background: var(--pc-white);
  overflow: hidden;
}

.pc-voice__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  min-height: min(calc(100svh - var(--pc-header-h)), 820px);
}

.pc-voice__media {
  position: relative;
}

.pc-voice__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pc-voice__card {
  position: absolute;
  right: 0;
  bottom: clamp(22px, 3vh, 38px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: clamp(22px, 2.6vw, 40px);
  padding: clamp(16px, 1.7vw, 22px) clamp(20px, 2.2vw, 28px);
  color: var(--pc-white);
  background: var(--pc-navy-dark);
  box-shadow: 0 24px 60px rgba(5, 31, 57, 0.32);
  /* la incursión sobre la columna de texto nunca supera su padding izquierdo */
  transform: translateX(clamp(18px, 2.6vw, 46px));
}

/* las cifras se alinean abajo aunque la etiqueta ocupe una o dos líneas */
.pc-voice__card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pc-voice__card b {
  display: block;
  color: var(--pc-yellow);
  font-family: var(--pc-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.pc-voice__card span {
  display: block;
  max-width: 18ch;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pc-voice__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(44px, 5vh, 76px);
  padding-left: clamp(62px, 6.4vw, 104px);
  padding-right: max(24px, calc((100vw - var(--pc-container)) / 2));
}

.pc-voice__eyebrow {
  margin: 0 0 14px;
  color: var(--pc-blue);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pc-voice__title {
  max-width: 16ch;
  margin: 0;
  color: var(--pc-navy);
  font-family: var(--pc-display);
  font-size: clamp(29px, 3.1vw, 46px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.pc-voice__body > p {
  max-width: 48ch;
  margin: 18px 0 0;
  color: var(--pc-text);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
}

/* Lista de funciones: nodos numerados enlazados por una espina,
   eco de los puntos y trazos del mapa del hero. */
.pc-voice__list {
  --voice-gap: clamp(12px, 1.6vh, 20px);
  position: relative;
  display: grid;
  gap: var(--voice-gap);
  margin: clamp(24px, 3vh, 38px) 0 0;
  padding: 0;
  list-style: none;
}

.pc-voice__list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: clamp(12px, 1.2vw, 18px);
  align-items: start;
}

/* tramo de espina hasta el nodo siguiente */
.pc-voice__list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 13.5px;
  top: 28px;
  bottom: calc(var(--voice-gap) * -1);
  width: 1px;
  background: linear-gradient(180deg, rgba(7, 47, 84, 0.26), rgba(7, 47, 84, 0.1));
}

.pc-voice__list i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--pc-blue);
  background: var(--pc-white);
  border: 1px solid rgba(7, 47, 84, 0.24);
  border-radius: 50%;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.pc-voice__list li:hover i {
  color: var(--pc-navy-dark);
  background: var(--pc-yellow);
  border-color: var(--pc-yellow);
}

.pc-voice__list p {
  margin: 3px 0 0;
  color: var(--pc-muted);
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.55;
}

.pc-voice__list strong {
  color: var(--pc-navy);
  font-weight: 800;
  transition: box-shadow 0.18s ease;
}

.pc-voice__list li:hover strong {
  box-shadow: inset 0 -2px 0 var(--pc-yellow);
}

.pc-voice__cta {
  margin-top: clamp(22px, 2.8vh, 34px);
  align-self: start;
}

/* Portatiles de 1200-1440: titulares y cuerpo un punto mas bajos */
@media (min-width: 1101px) and (max-width: 1440px) {
  .pc-voice__title { font-size: clamp(26px, 2.8vw, 38px); }
  .pc-voice__body > p { font-size: 15.5px; }
  .pc-voice__list p { font-size: 14.5px; }
}

/* Pantallas bajas (1280x720, 1366x768...): cabe completa */
@media (min-width: 1101px) and (max-height: 820px) {
  .pc-voice__grid { min-height: calc(100svh - var(--pc-header-h)); }
  .pc-voice__body { padding-block: clamp(32px, 4vh, 52px); }
  .pc-voice__title { font-size: clamp(24px, 4.2vh, 34px); }
  .pc-voice__body > p { margin-top: 14px; font-size: 15px; }
  .pc-voice__list { --voice-gap: 10px; margin-top: 22px; }
  .pc-voice__list p { font-size: 14px; }
}

@media (max-width: 1000px) {
  .pc-voice__grid { grid-template-columns: 1fr; min-height: 0; }
  .pc-voice__media { min-height: clamp(280px, 48vw, 400px); }
  .pc-voice__card {
    right: max(24px, calc((100vw - var(--pc-container)) / 2));
    bottom: 0;
    transform: none;
  }
  .pc-voice__body {
    padding-block: clamp(40px, 6vw, 64px);
    padding-inline: max(24px, calc((100vw - var(--pc-container)) / 2));
  }
}

@media (max-width: 560px) {
  .pc-voice__card {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: repeat(2, 1fr);
    padding-inline: max(24px, calc((100vw - var(--pc-container)) / 2));
    box-shadow: none;
  }
}


/* ============================================================
   Header contraido — pasado el hero la barra se reduce a
   logo + buscador + boton, y el menu entra como panel completo.
   Estados: .is-min (contraido) / .is-min.is-open (panel abierto)
   ============================================================ */
.pc-nav {
  transition: opacity 0.2s ease, transform 0.34s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.34s;
}

.pc-header__inner {
  transition: min-height 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-brand {
  transition: padding 0.34s cubic-bezier(0.2, 0.8, 0.3, 1),
    background 0.3s ease, border-color 0.3s ease, box-shadow 0.34s ease;
}

/* el boton no puede transicionar display: entra con keyframes */
@keyframes pcHdrPop {
  from { opacity: 0; transform: scale(0.4) rotate(-25deg); }
  62%  { opacity: 1; transform: scale(1.12) rotate(4deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes pcHdrPill {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}

.pc-header.is-min {
  color: var(--pc-text);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}

.pc-header.is-min .pc-header__inner {
  min-height: var(--pc-header-h);
  gap: 12px;
}

/* la barra de navegacion se retira hacia arriba */
.pc-header.is-min .pc-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px) scale(0.97);
  pointer-events: none;
}

/* logo, buscador y boton quedan como piezas flotantes */
.pc-header.is-min .pc-brand {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--pc-border);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(5, 31, 57, 0.13);
  backdrop-filter: blur(10px);
  animation: pcHdrPill 0.4s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

.pc-header.is-min .pc-brand img {
  width: clamp(104px, 9vw, 126px);
}

.pc-header.is-min .pc-header__actions {
  order: 2;
  margin-left: auto;
  animation: pcHdrPop 0.46s cubic-bezier(0.34, 1.45, 0.5, 1) 0.1s both;
}

.pc-header.is-min .pc-menu-toggle {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--pc-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--pc-border);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(5, 31, 57, 0.13);
  backdrop-filter: blur(10px);
  animation: pcHdrPop 0.46s cubic-bezier(0.34, 1.45, 0.5, 1) 0.2s both;
}

.pc-header.is-min .pc-menu-toggle:hover {
  border-color: var(--pc-navy);
}

.pc-header.is-min .pc-menu-toggle span {
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.18s ease;
}

/* ---- panel abierto ---- */
.pc-header.is-min.is-open .pc-brand,
.pc-header.is-min.is-open .pc-header__actions,
.pc-header.is-min.is-open .pc-menu-toggle {
  position: relative;
  z-index: 2;
}

.pc-header.is-min.is-open .pc-menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.pc-header.is-min.is-open .pc-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.pc-header.is-min.is-open .pc-menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.pc-header.is-min.is-open .pc-nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  margin: 0;
  padding: calc(var(--pc-header-h) + 18px)
    max(24px, calc((100vw - var(--pc-container)) / 2)) 56px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  animation: pcNavIn 0.26s ease both;
}

@keyframes pcNavIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}

.pc-header.is-min.is-open .pc-nav__item {
  display: block;
  border-bottom: 1px solid var(--pc-border);
}

.pc-header.is-min.is-open .pc-nav__item > a,
.pc-header.is-min.is-open .pc-nav__btn {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: clamp(14px, 1.8vh, 20px) 2px;
  color: var(--pc-navy);
  font-family: var(--pc-display);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: left;
}

.pc-header.is-min.is-open .pc-nav__btn::after {
  width: 9px;
  height: 9px;
}

/* los paneles pasan a acordeon: solo abren por clic, no por hover */
.pc-header.is-min.is-open .pc-nav__panel {
  position: static;
  display: block;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: max-height 0.26s ease;
}

.pc-header.is-min.is-open .pc-nav__item--panel:hover .pc-nav__panel,
.pc-header.is-min.is-open .pc-nav__item--panel:focus-within .pc-nav__panel {
  max-height: 0;
}

.pc-header.is-min.is-open .pc-nav__btn[aria-expanded="true"] + .pc-nav__panel {
  max-height: 460px;
  padding-bottom: 16px;
}

.pc-header.is-min.is-open .pc-nav__panel:not(.pc-nav__panel--areas) a {
  padding: 9px 12px;
  font-size: 15px;
  white-space: normal;
}

/* el mega panel de areas conserva sus columnas dentro del overlay */
.pc-header.is-min.is-open .pc-nav__panel--areas {
  left: auto;
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 0.7fr);
}

.pc-header.is-min.is-open .pc-nav__btn[aria-expanded="true"] + .pc-nav__panel--areas {
  max-height: min(58vh, 520px);
  padding-bottom: 20px;
  overflow-y: auto;
}

/* por debajo de 768 sigue mandando el menu movil de siempre */
@media (max-width: 767px) {
  .pc-header.is-min .pc-brand,
  .pc-header.is-min .pc-menu-toggle {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .pc-header.is-min .pc-brand img {
    width: 160px;
  }

  .pc-header.is-min .pc-nav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-125%);
    pointer-events: none;
  }

  .pc-header.is-min.is-open .pc-nav {
    position: fixed;
    inset: 70px 0 auto;
    padding: 12px 16px 20px;
    background: var(--pc-white);
    backdrop-filter: none;
    animation: none;
  }

  .pc-header.is-min.is-open .pc-nav__item > a,
  .pc-header.is-min.is-open .pc-nav__btn {
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: normal;
    padding: 14px 4px;
  }

  .pc-header.is-min.is-open .pc-nav__panel--areas {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-header.is-min.is-open .pc-nav,
  .pc-header.is-min .pc-brand,
  .pc-header.is-min .pc-header__actions,
  .pc-header.is-min .pc-menu-toggle {
    animation: none;
  }
}


/* ============================================================
   Areas en portada — las 15 en una pantalla.
   La descripcion aparece al pasar el mouse o al enfocar.
   ============================================================ */
.pc-areas-home {
  display: flex;
  flex-direction: column;
  min-height: min(calc(100svh - var(--pc-header-h)), 780px);
  padding-block: clamp(30px, 4.2vh, 56px);
}

.pc-areas-home > .pc-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pc-areas-home__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(16px, 2.2vh, 28px);
}

.pc-area-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(8px, 1.1vh, 14px);
}

.pc-area-tile {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 124px;
  padding: clamp(11px, 1.4vh, 15px);
  color: var(--pc-white);
  border-radius: 14px;
  overflow: hidden;
}

.pc-area-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}

/* encuadres puntuales: las panoramicas de 3,6:1 pierden el motivo al
   recortarse en fichas de 1,2:1, asi que se fija el punto de interes */
.pc-area-tile img[src*="estudios-estrategicos"] { object-position: center 52%; }
.pc-area-tile img[src*="sostenibilidad-financiera"] { object-position: center 46%; }
.pc-area-tile img[src*="plan-estrategico"] { object-position: center 42%; }
.pc-area-tile img[src*="principios"] { object-position: center 55%; }

.pc-area-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 31, 57, 0) 0%,
    rgba(5, 31, 57, 0.08) 38%,
    rgba(5, 31, 57, 0.58) 70%,
    rgba(5, 31, 57, 0.9) 100%
  );
  transition: background 0.3s ease;
}

/* filete ambar que se dibuja al pasar por encima */
.pc-area-tile::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 0;
  height: 3px;
  background: var(--pc-yellow);
  transition: width 0.34s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.pc-area-tile__body {
  position: relative;
  z-index: 2;
  display: block;
  text-shadow: 0 1px 12px rgba(5, 31, 57, 0.75), 0 1px 3px rgba(5, 31, 57, 0.5);
}

.pc-area-tile strong {
  display: block;
  font-size: clamp(12.5px, 1.05vw, 14px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.pc-area-tile__d {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  transition: max-height 0.32s cubic-bezier(0.2, 0.8, 0.3, 1),
    margin-top 0.32s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.24s ease;
}

.pc-area-tile:hover img,
.pc-area-tile:focus-visible img {
  transform: scale(1.07);
}

.pc-area-tile:hover::before,
.pc-area-tile:focus-visible::before {
  background: linear-gradient(180deg, rgba(5, 31, 57, 0.7), rgba(5, 31, 57, 0.96));
}

.pc-area-tile:hover::after,
.pc-area-tile:focus-visible::after {
  width: 100%;
}

.pc-area-tile:hover .pc-area-tile__d,
.pc-area-tile:focus-visible .pc-area-tile__d {
  max-height: 66px;
  margin-top: 7px;
  opacity: 1;
}

@media (max-width: 1100px) {
  .pc-areas-home {
    min-height: 0;
    padding-block: clamp(36px, 5vw, 60px);
  }

  .pc-area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .pc-area-tile {
    min-height: 150px;
  }

  /* sin hover fiable: la descripcion se muestra siempre */
  .pc-area-tile__d {
    max-height: 66px;
    margin-top: 7px;
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .pc-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-areas-home__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }
}


/* ============================================================
   Centro de pensamiento — tres destinos y las portadas reales
   de los boletines como prueba de produccion propia.
   ============================================================ */
.pc-think {
  position: relative;
  padding-block: clamp(46px, 6vh, 84px);
  color: var(--pc-white);
  background-color: var(--pc-navy-dark);
  background-image: url("../images/fondo-pensamiento.jpg");
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  /* la foto queda quieta mientras el contenido pasa por encima */
  background-attachment: fixed;
  overflow: hidden;
}

/* iOS no soporta background-attachment: fixed y lo rompe;
   en tactil se comporta como fondo normal */
@media (hover: none) and (pointer: coarse) {
  .pc-think {
    background-attachment: scroll;
  }
}

/* velo que sostiene la legibilidad del texto sobre la foto */
.pc-think::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 31, 57, 0.34) 0%,
    rgba(5, 31, 57, 0.24) 46%,
    rgba(5, 31, 57, 0.38) 100%
  );
}

/* velo diagonal muy tenue que da profundidad sin dibujar retícula */
.pc-think::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 38%, rgba(255, 255, 255, 0.035) 52%, transparent 66%);
}

.pc-think > .pc-container {
  position: relative;
}

/* el titular ya no se apoya en el velo: lo sostiene su sombra */
.pc-think h2,
.pc-think .pc-eyebrow {
  text-shadow: 0 2px 18px rgba(5, 31, 57, 0.9), 0 1px 4px rgba(5, 31, 57, 0.75);
}

.pc-think__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(28px, 3.4vh, 44px);
}

.pc-think .pc-eyebrow {
  color: #fff;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.pc-think h2 {
  max-width: 26ch;
  margin: 0;
  font-family: var(--pc-display);
  font-size: clamp(29px, 3.3vw, 48px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.pc-think__head .pc-link {
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(5, 31, 57, 0.9), 0 1px 4px rgba(5, 31, 57, 0.75);
}

.pc-think__head .pc-link:hover {
  color: var(--pc-yellow);
}

/* --- los tres destinos --- */
.pc-think__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.pc-think__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 26px);
  color: var(--pc-navy);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.pc-think__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--pc-yellow);
  transition: width 0.36s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.pc-think__card:hover,
.pc-think__card:focus-visible {
  background: rgba(255, 255, 255, 0.62);
  border-color: #fff;
  transform: translateY(-3px);
}

.pc-think__card:hover::before,
.pc-think__card:focus-visible::before {
  width: 100%;
}

.pc-think__n {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--pc-blue);
}

.pc-think__t {
  margin-top: 16px;
  font-family: var(--pc-display);
  font-size: clamp(19px, 1.9vw, 25px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pc-think__d {
  margin-top: 10px;
  color: var(--pc-navy);
  font-size: 15px;
  line-height: 1.5;
}

.pc-think__go {
  margin-top: auto;
  padding-top: clamp(14px, 1.8vh, 22px);
  color: var(--pc-blue);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.24s ease;
}

.pc-think__card:hover .pc-think__go,
.pc-think__card:focus-visible .pc-think__go {
  transform: translateX(6px);
}

/* --- estante de portadas --- */
.pc-think__shelf {
  margin-top: clamp(30px, 3.6vh, 48px);
  padding-top: clamp(20px, 2.4vh, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pc-think__shelf-l {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pc-think__covers {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}

.pc-think__covers a {
  display: block;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.pc-think__covers img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.8);
  transition: filter 0.28s ease;
  filter: saturate(0.85) brightness(0.86);
}

.pc-think__covers span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 1px 8px rgba(5, 31, 57, 0.85);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pc-think__covers a:hover span,
.pc-think__covers a:focus-visible span {
  color: var(--pc-yellow);
}

.pc-think__covers a:hover,
.pc-think__covers a:focus-visible {
  transform: translateY(-6px);
}

.pc-think__covers a:hover img,
.pc-think__covers a:focus-visible img {
  filter: none;
}

@media (max-width: 1000px) {
  .pc-think__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .pc-think__grid {
    grid-template-columns: 1fr;
  }

  .pc-think__covers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* Navigation accents: explicitly excludes the Areas menu. */
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) {
  --menu-accent: #173b5a;
  --menu-tint: #f1f4f7;
  min-width: 270px;
  padding: 8px;
  gap: 0;
  border: 1px solid #dce2e8;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px -12px rgba(4, 30, 54, .22);
}
#pc-nav-cp { min-width: 290px; }
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border: 0;
  border-radius: 3px;
  white-space: normal;
  line-height: 1.4;
  color: #16334e;
  font-weight: 600;
  transition: background .18s ease, color .18s ease;
}
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a + a { border-top: 1px solid #edf0f3; }
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: var(--menu-icon) center / contain no-repeat;
}
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a:hover,
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a:focus-visible,
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a[aria-current="page"] {
  color: var(--menu-accent);
  background: var(--menu-tint);
}
:is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a:focus-visible { outline: 2px solid var(--menu-accent); outline-offset: 2px; }
@media (max-width: 767px) {
  :is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) { min-width: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
}
.pc-header.is-min.is-open :is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) { min-width: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.pc-header.is-min.is-open .pc-nav__btn[aria-expanded="true"] + :is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) { padding-bottom: 16px; }
@media (prefers-reduced-motion: reduce) {
  :is(#pc-nav-asoc, #pc-nav-act, #pc-nav-cp, #pc-nav-ciu) > a { transition: none; }
}
#pc-nav-asoc > a[href$="propuesta-c-asociacion.html"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%2021h18M5%2021V7l7-4%207%204v14M9%2021v-4h6v4M8%209h1m6%200h1M8%2013h1m6%200h1%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-asoc > a[href$="propuesta-c-equipo.html"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%229%22%20cy%3D%228%22%20r%3D%223%22%2F%3E%3Cpath%20d%3D%22M3%2021v-3a6%206%200%200%201%2012%200v3M16%205a3%203%200%200%201%200%206m2%204a5%205%200%200%201%203%205%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-asoc > a[href$="propuesta-c-junta-directiva.html"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%225%22%20r%3D%222%22%2F%3E%3Cpath%20d%3D%22M8%2012v-1a4%204%200%200%201%208%200v1M3%2015h18M5%2015v6m14-6v6M9%2015v4m6-4v4%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-act > a[href$="propuesta-c-actualidad.html"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%224%22%20y%3D%223%22%20width%3D%2216%22%20height%3D%2218%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M8%207h8M8%2011h8M8%2015h3m3%200h2M8%2018h8%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-act > a[href$="#eventos"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%2218%22%20height%3D%2216%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M7%203v4m10-4v4M3%2011h18m-13%205h2m4%200h2%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-cp > a[href$="#documentos-tecnicos"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%205v16M3%203h5a4%204%200%200%201%204%204%204%204%200%200%201%204-4h5v16h-5a4%204%200%200%200-4%202%204%204%200%200%200-4-2H3Z%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-cp > a[href$="#boletines-informes"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14%203H6a2%202%200%200%200-2%202v14a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V9Zm0%200v6h6M8%2017v-3m4%203v-5m4%205v-2%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-cp > a[href$="https://dashboards.asocapitales.co/"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%203v18h18M7%2016l5-6%204%203%205-8M17%205h4v4%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-ciu > a[href$="propuesta-c-atencion-ciudadania.html"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M21%2011a8%208%200%200%201-8%208H7l-4%203V11a9%209%200%200%201%2018%200ZM7%2010h10M7%2014h6%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-ciu > a[href$="#transparencia"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m12%203%208%203v6c0%205-8%209-8%209s-8-4-8-9V6Z%22%2F%3E%3Cpath%20d%3D%22m8%2012%203%203%205-6%22%2F%3E%3C%2Fsvg%3E"); }
#pc-nav-ciu > a[href$="#contacto"] { --menu-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23526779%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%2218%22%20height%3D%2214%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22m3%206%209%207%209-7%22%2F%3E%3C%2Fsvg%3E"); }


/* Newsletter: compact dialog anchored to the lower left corner. */
#pc-newsletter-modal {
  place-items: end start;
  padding: 24px;
}
#pc-newsletter-modal .pc-modal__panel {
  display: block;
  width: min(100%, 420px);
  max-height: calc(100dvh - 48px);
  border-radius: 10px;
}
#pc-newsletter-modal .pc-modal__visual { display: none; }
#pc-newsletter-modal .pc-modal__content { padding: 30px 28px 26px; }
#pc-newsletter-modal .pc-eyebrow { padding-right: 38px; }
#pc-newsletter-modal h2 { font-size: 26px; line-height: 1.15; }
@media (max-width: 480px) {
  #pc-newsletter-modal { padding: 12px; }
  #pc-newsletter-modal .pc-modal__panel { max-height: calc(100dvh - 24px); }
  #pc-newsletter-modal .pc-modal__content { padding: 28px 22px 22px; }
}


/* About section: content determines height, without the statistic overlay. */
#asociacion .pc-voice__grid { min-height: 0; }
#asociacion .pc-voice__media img {
  position: absolute;
  inset: 0;
  display: block;
}
#asociacion .pc-voice__body {
  padding-block: clamp(32px, 3vw, 44px);
}
#asociacion .pc-voice__eyebrow { margin-top: 0; }
@media (max-width: 1000px) {
  #asociacion .pc-voice__media { min-height: clamp(240px, 38vw, 340px); }
  #asociacion .pc-voice__body { padding-block: 32px; }
}


/* Citizen service cards: restrained institutional treatment. */
#ciudadania .pc-citizen__cards { gap: 18px; align-items: stretch; }
#ciudadania .pc-citizen__card {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 18px 12px;
  padding: 26px 24px;
  color: #072f54;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(255, 255, 255, .55);
  border-top: 3px solid #1c6b4f;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(3, 24, 43, .12);
  overflow: hidden;
  text-decoration: none;
  transition: background .2s ease, border-color .18s ease, box-shadow .18s ease;
}
#ciudadania .pc-citizen__ico {
  display: block;
  width: 28px;
  height: 28px;
  background: var(--citizen-icon) center / contain no-repeat;
}
#ciudadania .pc-citizen__card h3 {
  align-self: center;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #1c6b4f;
}
#ciudadania .pc-citizen__card p {
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: 6px;
  color: #526374;
  font-size: 14px;
  line-height: 1.65;
}
#ciudadania .pc-citizen__go {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 -24px;
  padding: 15px 24px;
  border-top: 1px solid #e2e8ee;
  background: #f5f7f9;
  color: #125783;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}
#ciudadania .pc-citizen__go > span { font-size: 20px; line-height: 1; }
#ciudadania .pc-citizen__card:hover,
#ciudadania .pc-citizen__card:focus-visible {
  transform: none;
  background: #fff;
  border-color: rgba(255, 255, 255, .9);
  border-top-color: #f5c400;
  box-shadow: 0 12px 30px rgba(3, 24, 43, .22);
}
#ciudadania .pc-citizen__card:hover .pc-citizen__go,
#ciudadania .pc-citizen__card:focus-visible .pc-citizen__go { background: #eaf0f5; color: #072f54; }
#ciudadania .pc-citizen__card:focus-visible { outline: 3px solid #f5c400; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  #ciudadania .pc-citizen__card { transition: none; }
}
#ciudadania .pc-citizen__card[data-ico="contacto"] { --citizen-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%231c6b4f%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%204h4l2%205-3%202a14%2014%200%200%200%206%206l2-3%205%202v4a2%202%200%200%201-2%202A18%2018%200%200%201%202%206a2%202%200%200%201%202-2Z%22%2F%3E%3C%2Fsvg%3E"); }
#ciudadania .pc-citizen__card[data-ico="pqrs"] { --citizen-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%231c6b4f%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M21%2011a8%208%200%200%201-8%208H7l-4%203V11a9%209%200%200%201%2018%200ZM7%2010h10M7%2014h6%22%2F%3E%3C%2Fsvg%3E"); }
#ciudadania .pc-citizen__card[data-ico="transparencia"] { --citizen-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%231c6b4f%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14%203H6a2%202%200%200%200-2%202v14a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V9Zm0%200v6h6M8%2013h8M8%2017h5%22%2F%3E%3C%2Fsvg%3E"); }
#ciudadania .pc-citizen__card[data-ico="datos"] { --citizen-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%231c6b4f%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22m12%203%208%203v6c0%205-8%209-8%209s-8-4-8-9V6Z%22%2F%3E%3Cpath%20d%3D%22m8%2012%203%203%205-6%22%2F%3E%3C%2Fsvg%3E"); }

/* Mobile navigation is visible only after an explicit menu action. */
.pc-header.is-search-open { color: var(--pc-text); background: rgba(255,255,255,.96); }
@media (max-width: 767px) {
  .pc-header .pc-header__inner { gap: 8px; }
  .pc-header .pc-brand { flex: 1 1 auto; min-width: 0; width: auto; }
  .pc-header .pc-brand img { width: clamp(112px, 38vw, 160px); }
  .pc-header .pc-menu-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 0 0 44px; order: 3; margin-left: 0; animation: none; }
  .pc-header .pc-header__actions { flex: 0 0 auto; order: 2; margin-left: auto; }
  .pc-header .pc-nav:not(.is-open) { display: none; visibility: hidden; pointer-events: none; }
  .pc-header .pc-nav.is-open { display: block; position: fixed; inset: 70px 0 auto; max-height: calc(100dvh - 70px); padding: 12px 16px 20px; overflow-y: auto; overscroll-behavior: contain; background: #fff; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .pc-header .pc-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .pc-header .pc-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .pc-header .pc-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

.pc-a11y { position: fixed; z-index: 1100; right: 16px; top: 112px; color: #072f54; font: 14px/1.5 "Manrope",sans-serif; }
.pc-a11y__buttons { display: grid; gap: 8px; justify-items: end; }
.pc-a11y button { font: inherit; cursor: pointer; }
.pc-a11y__toggle,.pc-a11y__language { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #d3dce3; border-radius: 50%; background: #fff; color: #072f54; box-shadow: 0 4px 16px #072f5415; }
.pc-a11y__language { text-decoration: none; cursor: pointer; }
.pc-a11y__language:hover { background: #e8f0f7; }
.pc-a11y__panel { position: absolute; right: 54px; top: 0; width: 270px; max-width: calc(100vw - 86px); max-height: calc(100dvh - 140px); overflow-y: auto; background: #fff; border: 1px solid #cbd6df; border-radius: 12px; padding: 12px; box-shadow: 0 12px 36px #072f5426; }
.pc-a11y__panel[hidden] { display: none; }
.pc-a11y__heading { display: flex; align-items: start; gap: 8px; margin-bottom: 10px; }
.pc-a11y__heading h2 { margin: 0; font-size: 15px; line-height: 1.5; color: #072f54; }
.pc-a11y__heading button { border: 0; background: transparent; color: #072f54; font-size: 24px; padding: 0 6px; }
.pc-a11y__panel > button { width: 100%; min-height: 42px; border: 0; border-radius: 5px; background: #fff; color: #072f54; padding: 8px; text-align: left; display: flex; justify-content: space-between; }
.pc-a11y__panel > button:hover,.pc-a11y__panel > button[aria-pressed="true"] { background: #e8f0f7; }
.pc-a11y__panel > button:disabled { opacity: .45; cursor: default; }
.pc-a11y :is(button,a):focus-visible { outline: 3px solid #f5c400; outline-offset: 2px; }
.pc-a11y__status { margin: 8px 0 0; font-size: 12px; }
.pc-a11y-gray > :is(header,main,footer) { filter: grayscale(1); }
.pc-a11y-links :is(main,footer,header) a { text-decoration: underline !important; text-underline-offset: 3px; }
.pc-a11y-light :is(main,footer,main section) { background-color: #fff !important; background-image: none !important; color: #072f54 !important; }
.pc-a11y-light :is(main,footer) :is(h1,h2,h3,h4,p,li,label) { color: #072f54 !important; }
.pc-a11y-light main section::before,.pc-a11y-light main section::after { background: none !important; }
.pc-a11y-light :is(.pc-inner-hero__video,.pc-hero__video) { visibility: hidden; }
@media(max-width:767px) { .pc-a11y { right: 10px; top: 88px; } .pc-a11y__panel { max-height: calc(100dvh - 108px); } }
