/* Variables institucionales */
:root {
  --color-govco: #3366cc;
  --color-govco-dark: #004884;
  --color-rojo: #c8102e;
  --color-azul: #003893;
  --color-amarillo: #fcd116;
  --color-naranja-ica: #f5a623;
  --fecha-predial: #a61d33;
  --fecha-vehiculos: #0066b3;
  --fecha-ica: #f9b249;
  --fecha-body-bg: #f2f2f2;
  --color-gris-panel: #f0f0f0;
  --color-footer-amarillo: #fdb913;
  --footer-yellow-height: 380px;
  --footer-card-overlap: 380px;
  --color-texto: #212529;
  --font-base: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hero: "Museo Sans Cond", "Museo Sans Condensed", sans-serif;
  /* Barrido hover 25° (haciendabogota.gov.co .btn-delineado) */
  --btn-sweep-rotate: 25deg;
  --btn-sweep-translate-idle: 80%, -80%;
  --btn-sweep-translate-hover: -25%, -20%;
  --btn-sweep-duration: 0.75s;
}

/* Work Sans — fonts/WorkSans-VariableFont_wght.ttf */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/WorkSans-VariableFont_wght.ttf") format("truetype");
}

/* Museo Sans Cond — fonts/MuseoSansCondensed-*.woff2 (pesos nominales en el nombre del archivo) */
@font-face {
  font-family: "Museo Sans Cond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/MuseoSansCondensed-500.woff2") format("woff2");
}

@font-face {
  font-family: "Museo Sans Cond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/MuseoSansCondensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Museo Sans Cond";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/MuseoSansCondensed-900.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  color: var(--color-texto);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-azul);
}

a:hover:not(.btn-pse):not(.btn-pagos-bogota):not(.pagos-bogota-cta__link) {
  color: var(--color-rojo);
}

/* —— Efecto hover barrido 25° (todos los botones del sitio) —— */
.btn-pagos-bogota,
.btn-pse {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-pse {
  transition: color var(--btn-sweep-duration) ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-pagos-bogota::before,
.btn-pse::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  display: block;
  width: 110%;
  padding-top: 100%;
  background-color: var(--btn-sweep-fill, var(--color-rojo));
  transform: rotate(var(--btn-sweep-rotate)) translate(var(--btn-sweep-translate-idle));
  transition: transform var(--btn-sweep-duration) ease;
  pointer-events: none;
}

.btn-pagos-bogota:hover::before,
.btn-pagos-bogota:focus-visible::before,
.btn-pse:hover::before,
.btn-pse:focus-visible::before,
.pagos-bogota-cta__link:hover .btn-pagos-bogota::before,
.pagos-bogota-cta__link:focus-visible .btn-pagos-bogota::before {
  transform: rotate(var(--btn-sweep-rotate)) translate(var(--btn-sweep-translate-hover));
}

.btn-pagos-bogota__text,
.btn-pagos-bogota > *,
.btn-pse > *,
.btn-pse .fecha-card__date,
.btn-pse .fecha-card__ica-date {
  position: relative;
  z-index: 1;
}

/* Texto blanco al hover — Pagos Bogotá */
.pagos-bogota-cta__link:hover .btn-pagos-bogota,
.pagos-bogota-cta__link:focus-visible .btn-pagos-bogota,
.btn-pagos-bogota:hover,
.btn-pagos-bogota:focus-visible,
.pagos-bogota-cta__link:hover .btn-pagos-bogota__text,
.pagos-bogota-cta__link:focus-visible .btn-pagos-bogota__text,
.btn-pagos-bogota:hover .btn-pagos-bogota__text,
.btn-pagos-bogota:focus-visible .btn-pagos-bogota__text {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

@media (prefers-reduced-motion: reduce) {
  .btn-pagos-bogota,
  .btn-pse,
  .btn-pagos-bogota::before,
  .btn-pse::before {
    transition-duration: 0.01ms;
  }
}

/* —— Barra GOV.CO —— */
.govco-bar {
  background-color: var(--color-govco);
  color: #fff;
  font-size: 0.875rem;
}

.govco-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.govco-bar__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.govco-bar__brand:hover {
  text-decoration: underline;
}

.govco-bar__brand-img {
  height: 20px;
  width: auto;
  display: block;
}

.govco-bar__flag-img {
  height: 18px;
  width: auto;
  display: block;
}

.govco-bar__link {
  color: #fff;
  text-decoration: none;
  font-size: 0.8125rem;
}

.govco-bar__link:hover {
  color: #fff;
  text-decoration: underline;
}

.govco-bar--bottom .govco-bar__inner {
  min-height: 30px;
}

.govco-bar--bottom .govco-bar__brand-img {
  height: 18px;
}

/* —— Hero full width —— */
.hero-aporte {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  background-color: #0a0a14;
  background-image: url("../images/banner-metro.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: visible;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*
  Media luna cóncava a ancho completo (100vw): el blur necesita exceder el viewport
  para no dejar triángulos oscuros en los bordes laterales.
*/
.hero-aporte::before,
.hero-aporte::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
}

.hero-aporte::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 180px;
  width: calc(100vw + 56px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 0 1600 180' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='fade' gradientUnits='userSpaceOnUse' x1='720' y1='0' x2='720' y2='180'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='0'/%3E%3Cstop offset='48%25' stop-color='%23ffffff' stop-opacity='1'/%3E%3Cstop offset='100%25' stop-color='%23ffffff' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23fade)' d='M-80,0 Q720,180 1520,0 L1520,180 L-80,180 Z'/%3E%3C/svg%3E")
    no-repeat center bottom;
  background-size: 100% 100%;
  filter: blur(11px);
  z-index: 2;
  pointer-events: none;
}

.hero-aporte::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 64px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 0 1600 64' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M-80,0 Q720,50 1520,0 L1520,64 L-80,64 Z'/%3E%3C/svg%3E")
    no-repeat center bottom;
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-aporte__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 20, 0.75) 0%,
    rgba(10, 10, 20, 0.35) 45%,
    rgba(10, 10, 20, 0.15) 100%
  );
  z-index: 1;
}

.hero-aporte,
.hero-aporte__content {
  font-family: var(--font-hero);
}

.hero-aporte__content {
  position: relative;
  z-index: 4; /* por encima de la media luna */
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

.hero-aporte__logos img {
  max-height: 52px;
  width: auto;
}

.hero-aporte__logos .hero-aporte__logo-bogota {
  max-height: 44px;
}

.hero-aporte__graphic img {
  max-width: 420px;
}

.hero-aporte__title {
  font-family: var(--font-hero);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-aporte__lead {
  font-family: var(--font-hero);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-aporte__lead strong {
  color: var(--color-amarillo);
  font-weight: 700;
}

/* —— Intro —— */
.section-intro {
  position: relative;
  z-index: 2;
  background: #fff;
  margin-top: -6px;
}

.section-intro p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

/* —— Video institucional —— */
.section-video {
  background: #fff;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #eceff3;
  overflow: hidden;
}

.video-card__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eef1f4;
}

.video-card__title {
  color: var(--color-azul);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
}

.video-card__subtitle {
  color: #5f6b78;
  font-size: 0.92rem;
}

.video-card__media {
  background: #000;
}

.video-card__media video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* —— Card tarjeta —— */
.card-tarjeta {
  border-radius: 12px;
  background-color: #fafafa;
}

.card-tarjeta__media {
  min-height: 220px;
  object-fit: cover;
  width: 80%;
  height: 100%;
  min-height: 100%;
}

.card-tarjeta__title {
  color: var(--color-azul);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
}

.card-tarjeta__list {
  padding-left: 1.15rem;
  margin-bottom: 0;
}

.card-tarjeta__list li {
  margin-bottom: 0.65rem;
}

.card-tarjeta__list li:last-child {
  margin-bottom: 0;
}

/* —— Fechas de pago —— */
.section-fechas {
  font-family: var(--font-base);
}

.section-fechas__intro {
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Pagos Bogotá: estrellas + botón píldora */
.pagos-bogota-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagos-bogota-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  max-width: 100%;
}

.pagos-bogota-cta__link:hover,
.pagos-bogota-cta__link:focus,
.pagos-bogota-cta__link:focus-visible {
  color: inherit;
  text-decoration: none;
}

.pagos-bogota-cta__stars {
  display: block;
  width: auto;
  height: 4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.btn-pagos-bogota {
  --btn-sweep-fill: var(--color-rojo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0.65rem 2.75rem 0.65rem 2.25rem;
  background-color: transparent;
  border: 2px solid var(--color-rojo);
  border-radius: 10rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-pagos-bogota__text {
  font-family: var(--font-base);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-rojo);
}

.pagos-bogota-cta__link:hover .btn-pagos-bogota,
.pagos-bogota-cta__link:focus-visible .btn-pagos-bogota,
.btn-pagos-bogota:hover,
.btn-pagos-bogota:focus-visible {
  border-color: var(--color-rojo);
}

.fecha-cards-row {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.fecha-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  background-color: var(--fecha-body-bg);
  box-shadow: none;
}

.fecha-card__header {
  flex-shrink: 0;
  padding: 0.9rem 0.65rem;
  text-align: center;
}

.fecha-card__header-text {
  font-family: var(--font-base);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}

.fecha-card--predial .fecha-card__header {
  background-color: var(--fecha-predial);
}

.fecha-card--vehiculos .fecha-card__header {
  background-color: var(--fecha-vehiculos);
}

.fecha-card__header--ica {
  background-color: var(--fecha-ica);
  padding: 0.75rem 0.5rem 0.7rem;
}

.fecha-card__header-ica-title {
  font-family: var(--font-base);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #000000;
  letter-spacing: 0.01em;
}

.fecha-card__header-ica-sub {
  font-family: var(--font-base);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.25;
  color: #000000;
  margin-top: 0.2rem;
}

.fecha-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;   /* antes: center */
  padding: 1.85rem 0.75rem 2rem;
  text-align: center;
  background-color: var(--fecha-body-bg);
}

/* Empuja el botón al borde inferior del body */
.fecha-card__body > .btn-pse {
  margin-top: auto;
  transform: translateY(15px);
}

.fecha-card__date {
  font-family: var(--font-base);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.fecha-card__date-em {
  font-weight: 700;
}

.fecha-card--predial .fecha-card__date {
  /* color: var(--fecha-predial); */
}

.fecha-card--vehiculos .fecha-card__date {
  /* color: var(--fecha-vehiculos); */
}

.fecha-card__note {
  font-family: var(--font-base);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.fecha-card__ica-block {
  width: 100%;
}

.fecha-card__ica-block + .fecha-card__ica-block {
  margin-top: 1.35rem;
}

.fecha-card__ica-label {
  font-family: var(--font-base);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fecha-ica);
  margin-bottom: 0.2rem;
}

.fecha-card__ica-date {
  font-family: var(--font-base);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.25;
  /* color: #000000; */
}

.fecha-card--ica .fecha-card__date-em {
  font-weight: 700;
}

/* —— Panel impacto —— */
.impacto-panel {
  background-color: var(--color-gris-panel);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.impacto-col__logo {
  max-width: 280px;
  /* filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28)); */
}

.impacto-col__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.impacto-col__figure img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.badge-watermark {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #666;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.impacto-col__title {
  color: var(--color-azul);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.impacto-col__list {
  padding-left: 1.15rem;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.impacto-col__list li {
  margin-bottom: 0.5rem;
}

.impacto-col__intro {
  font-size: 0.95rem;
}

/* —— Footer: franja amarilla 500px (fondo) + tarjeta superpuesta —— */
.footer-prefooter {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

/* Cajón amarillo: solo 500px de alto, anclado al bottom del bloque footer */
.footer-zone {
  position: relative;
  z-index: 0;
  width: 100%;
  height: var(--footer-yellow-height);
  min-height: var(--footer-yellow-height);
  max-height: var(--footer-yellow-height);
  background-color: var(--color-footer-amarillo);
  flex-shrink: 0;
}

/* Tarjeta en área segura, superpuesta sobre la franja amarilla */
.footer-prefooter__content {
  position: relative;
  z-index: 2;
  margin-bottom: calc(-1 * var(--footer-card-overlap));
  padding-bottom: 1.5rem;
}

.footer-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 3rem 2rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #333;
}

/* Cabecera: título + logos (sin línea divisoria) */
.footer-card__header {
  margin-bottom: 1.5rem;
}

.footer-card__title {
  color: #a51d21;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.15;
}

.footer-card__nit {
  color: #6b6b6b;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 0;
}

.footer-card__logos-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-card__logos-row {
  margin-bottom: 0.35rem;
}

.footer-card__logo-shd {
  max-height: 58px;
  width: auto;
}

.footer-card__logo-iso {
  max-height: 38px;
  width: auto;
  margin-right: 68px; /* alinea inicio izquierdo con logo Secretaría */
}

/* Bloques de contenido */
.footer-card__section {
  margin-bottom: 1.1rem;
}

.footer-card__section:last-of-type {
  margin-bottom: 1.35rem;
}

.footer-card__heading {
  color: #a51d21;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-card__datos li {
  margin-bottom: 0.2rem;
  line-height: 1.55;
  color: #333;
  font-size: 0.9375rem;
}

.footer-card__datos strong {
  font-weight: 700;
  color: #222;
}

/* Enlaces de servicios */
.footer-card__nav {
  margin-top: 0.15rem;
}

.footer-card__nav li {
  margin-bottom: 0.28rem;
}

.footer-card__nav a {
  color: #a51d21;
  text-decoration: underline;
  font-weight: 400;
  font-size: 0.9375rem;
}

.footer-card__nav a:hover {
  color: #7a1519;
}

/* Correos */
.footer-card__correos li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
  font-size: 0.9375rem;
  color: #333;
}

.footer-card__correos strong {
  font-weight: 700;
  color: #222;
}

.footer-card__correos a {
  color: #a51d21;
  text-decoration: underline;
  font-weight: 400;
  word-break: break-word;
}

.footer-card__correos a:hover {
  color: #7a1519;
}

/* Redes: fila principal + NovHA en línea aparte */
.footer-card__social {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.75rem;
  padding: 0;
}

.footer-social__item {
  display: inline-flex;
  align-items: center;
}

.footer-social__item--novha {
  flex: 0 0 100%;
  margin-top: 0.15rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #a51d21;
}

.footer-social__link:hover {
  color: #7a1519;
  text-decoration: none;
}

.footer-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #a51d21;
  color: #fff;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.footer-social__icon--novha {
  background: transparent;       /* antes: #25d366 — la imagen ya trae su fondo amarillo */
  font-size: 1rem;
  overflow: hidden;              /* recorta la imagen al círculo del contenedor */
  padding: 0;
}

.footer-social__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* llena el círculo sin deformar */
  display: block;
}

.footer-social__text {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.25;
  color: #a51d21;
}

/* Enlaces legales (fila horizontal, sin borde superior) */
.footer-card__legal {
  padding-top: 0.25rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal__item {
  display: inline-block;
}

.footer-legal a {
  color: #a51d21;
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: underline;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: #7a1519;
}

/* Barra GOV.CO inferior (postfooter) */
.govco-bar--bottom {
  background-color: var(--color-govco);
}

.govco-bar__inner--footer {
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  min-height: 48px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.govco-bar--bottom .govco-bar__flag-img {
  height: 26px;
  width: auto;
}

.govco-bar--bottom .govco-bar__brand-img {
  height: 22px;
  width: auto;
}

/* Botón flotante PSE (sobre franja amarilla, encima de barra GOV.CO) */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 4.75rem;
  z-index: 1000;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.btn-pse {
  --btn-sweep-fill: var(--color-amarillo);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background-color: var(--color-rojo);
  color: #ffffff !important;
  border: 0;
  border-radius: 10px;
  padding: 0.5rem 0.75rem 0.45rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.btn-pse:hover,
.btn-pse:focus-visible {
  color: #000000 !important;
  text-decoration: none;
}

.btn-pse__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  text-align: center;
  white-space: nowrap;
}

/* Texto dentro del botón en tarjetas de fechas */
.btn-pse:hover .fecha-card__date,
.btn-pse:hover .fecha-card__ica-date,
.btn-pse:hover .fecha-card__date-em,
.btn-pse:focus .fecha-card__date,
.btn-pse:focus .fecha-card__ica-date,
.btn-pse:focus .fecha-card__date-em {
  color: inherit;
}

.btn-pse__logo {
  display: block;
  width: auto;
  height: 60px;
}

/* —— Utilidades —— */
.text-azul {
  color: var(--color-azul) !important;
}

@media (min-width: 768px) {
  .hero-aporte {
    min-height: 580px;
  }

  .hero-aporte__logos img {
    max-height: 64px;
  }

  .hero-aporte__logos .hero-aporte__logo-bogota {
    max-height: 56px;
  }

  .card-tarjeta__media-wrap {
    min-height: 280px;
  }
}

@media (min-width: 992px) {
  .hero-aporte {
    min-height: 620px;
  }

  .hero-aporte__graphic img {
    max-width: 480px;
  }
}

@media (max-width: 767.98px) {
  .hero-aporte {
    background-position: 70% center;
    min-height: auto;
  }

  .hero-aporte::before {
    height: 120px;
    width: calc(100vw + 48px);
    filter: blur(10px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 0 1600 120' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='fade' gradientUnits='userSpaceOnUse' x1='720' y1='0' x2='720' y2='120'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='0'/%3E%3Cstop offset='48%25' stop-color='%23ffffff' stop-opacity='1'/%3E%3Cstop offset='100%25' stop-color='%23ffffff' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23fade)' d='M-80,0 Q720,120 1520,0 L1520,120 L-80,120 Z'/%3E%3C/svg%3E");
  }

  .hero-aporte::after {
    height: 52px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-80 0 1600 52' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M-80,0 Q720,42 1520,0 L1520,52 L-80,52 Z'/%3E%3C/svg%3E");
  }

  .hero-aporte__graphic {
    text-align: center;
  }

  .hero-aporte__graphic img {
    max-width: 180px;
  }

  .hero-aporte__title,
  .hero-aporte__lead {
    text-align: center;
    font-size: 1.2rem;
  }

  .footer-prefooter {
    --footer-yellow-height: 280px;
    --footer-card-overlap: 180px;
  }

  .footer-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .footer-card__title {
    font-size: 1.5rem;
  }

  .footer-card__logos-wrap {
    align-items: flex-start;
    text-align: left;
    margin-top: 1rem;
  }

  .footer-card__logo-iso {
    margin-right: 0;
  }

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .footer-social__item--novha {
    flex: none;
    margin-top: 0;
  }

  .footer-legal a {
    white-space: normal;
  }

  .floating-actions {
    right: 0.5rem;
    bottom: 4rem;
  }

  .btn-pse {
    padding: 0.45rem 0.6rem 0.4rem;
  }

  .btn-pse__label {
    font-size: 0.72rem;
  }

  .btn-pse__logo {
    height: 54px;
  }

  .pagos-bogota-cta__stars {
    height: 3.25rem;
    margin-right: -1rem;
  }

  .btn-pagos-bogota {
    min-height: 3.25rem;
    padding: 0.55rem 2rem 0.55rem 1.75rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-prefooter {
    --footer-card-overlap: 280px;
  }
}

@media (min-width: 992px) {
  .footer-social__item--novha {
    flex: 0 0 100%;
  }

  .footer-legal a {
    font-size: 0.8125rem;
  }
}
