@import url("footer.css");

:root {
  --accessibility-font-scale: 1;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-surface: #f7f4ef;
  --color-surface-alt: #ebe4d8;
  --color-text: #1f2230;
  --color-text-inverse: #f7f4ef;

  --theme-pt-primary: #2a3177;
  --theme-pt-secondary: #df3f52;
  --theme-pt-accent: #e6233c;

  --theme-en-primary: #13795b;
  --theme-en-secondary: #cceadf;
  --theme-en-accent: #0f5b45;

  --theme-es-primary: #b26d4d;
  --theme-es-secondary: #f1ddd2;
  --theme-es-accent: #8f5337;

  --theme-primary: var(--theme-pt-primary);
  --theme-secondary: var(--theme-pt-secondary);
  --theme-accent: var(--theme-pt-accent);

  --menu-height: 91px;
  --content-width: 1188px;
  --page-gutter: 95px;
}

body.pt-br,
body.pt,
body.lang-pt {
  --theme-primary: var(--theme-pt-primary);
  --theme-secondary: var(--theme-pt-secondary);
  --theme-accent: var(--theme-pt-accent);
}

body.en,
body.en-us,
body.lang-en {
  --theme-primary: var(--theme-en-primary);
  --theme-secondary: var(--theme-en-secondary);
  --theme-accent: var(--theme-en-accent);
}

/* The English landing page retains the institutional blue used by the home design. */
body.en.home-page,
body.es.home-page {
  --theme-primary: var(--theme-pt-primary);
  --theme-secondary: var(--theme-pt-secondary);
  --theme-accent: var(--theme-pt-accent);
}

body.es,
body.es-es,
body.lang-es {
  --theme-primary: var(--theme-es-primary);
  --theme-secondary: var(--theme-es-secondary);
  --theme-accent: var(--theme-es-accent);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  font-size: calc(16px * var(--accessibility-font-scale));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar-nav {
  min-height: var(--menu-height);
  padding: 0;
  background: var(--theme-primary);
}

.menu-wrap {
  min-height: var(--menu-height);
}

.brand-link {
  display: block;
}

.brand-logo {
  height: auto;
  max-width: none;
}

#navbarNav {
  min-width: 0;
}

.menu-links {
  gap: 21px;
  margin: 0;
  padding: 0;
}

.menu-links .nav-link {
  padding: 0;
  border-bottom: 2px solid transparent;
  color: var(--color-white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  white-space: nowrap;
}

.menu-links .nav-link:hover,
.menu-links .nav-link:focus-visible {
  color: var(--color-white);
  border-bottom-color: var(--theme-secondary);
  outline: none;
}

.menu-links .nav-link.active {
  color: var(--color-white);
  border-bottom-color: var(--theme-secondary);
}

.language-links img {
  display: block;
  width: 22px;
  height: 20px;
  object-fit: cover;
}

.language-links a {
  position: relative;
  display: block;
  outline-offset: 3px;
  transition: transform 180ms ease, filter 180ms ease;
}

@media (hover: hover) {
  .language-links a:hover {
    transform: translateY(-2px) scale(1.1);
    filter: brightness(1.12) drop-shadow(0 3px 4px rgb(0 0 0 / 25%));
  }
}

.language-links a:focus-visible {
  outline: 1px solid var(--color-white);
}

.language-links a:focus-visible,
.language-links a[aria-current="page"] {
  transform: translateY(-2px) scale(1.1);
  filter: brightness(1.12) drop-shadow(0 3px 4px rgb(0 0 0 / 25%));
}

.language-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--theme-secondary);
  transform: translateX(-50%);
}

.language-links a:active {
  transform: scale(0.95);
  filter: brightness(0.95);
}

@media (prefers-reduced-motion: reduce) {
  .language-links a {
    transition: none;
  }

  .language-links a:hover,
  .language-links a:focus-visible,
  .language-links a[aria-current="page"],
  .language-links a:active {
    transform: none;
  }
}

.hero-section {
  background: var(--theme-primary);
}

.hero-banner-image {
  width: 100%;
  height: auto;
}

.hero-introduction {
  padding: 33px 120px 36px;
  border-top: 4px solid #e6233c;
  border-bottom: 4px solid #e6233c;
  background: var(--theme-primary);
  color: var(--color-white);
  font-family: "gineso", sans-serif;
  font-size: calc(16px * var(--accessibility-font-scale));
  font-weight: 400;
  line-height: 31px;
}

.hero-introduction strong {
  font-weight: 800;
}

.main-content {
  background: var(--color-white);
}

.content-navigation {
  padding: 104px 0;
  border-top: 1px solid #dcdee7;
}

.content-navigation__container {
  max-width: 884px;
}

.navigation-card {
  position: relative;
  min-height: 429px;
  border-right: 1px solid #dcdee7;
  background: var(--color-white);
}

.navigation-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #9e5f46;
}

.navigation-card--guia::before {
  background: #2fa479;
}

.navigation-card__body {
  display: flex;
  flex-direction: column;
  min-height: inherit;
  padding: 36px 32px 32px;
}

.navigation-card__index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  color: #14183c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 20px;
}

.navigation-card__index span {
  width: 9px;
  height: 9px;
  background: #e6233c;
}

.navigation-card h2 {
  margin: 0 0 32px;
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.13px;
  line-height: 28.6px;
  text-transform: uppercase;
}

.navigation-card__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation-card__links li {
  border-top: 1px solid #dcdee7;
}

.navigation-card__links li {
  display: block;
  padding: 11px 0;
  color: #5b6188;
  font-family: "gineso", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
}

.navigation-card__access {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  color: #9e5f46;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.68px;
  line-height: 20px;
  text-transform: uppercase;
}

.navigation-card__arrow {
  position: relative;
  width: 26px;
  height: 11px;
}

.navigation-card__arrow::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 22px;
  height: 3px;
  background: currentColor;
}

.navigation-card__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.navigation-card--guia .navigation-card__access {
  color: #2fa479;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  overflow: hidden;
}

.photo-gallery__item {
  position: relative;
  aspect-ratio: 288 / 461;
  margin: 0;
  cursor: grab;
  overflow: hidden;
}

.photo-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gallery__image--color {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.photo-gallery__item:hover .photo-gallery__image--color,
.photo-gallery__item.is-auto-highlighted .photo-gallery__image--color {
  opacity: 1;
}

.partnerships {
  padding: 84px 0 148px;
  background: var(--color-white);
}

.partnerships__container {
  max-width: 1272px;
}

.partnerships h2 {
  margin: 0 0 85px;
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.22px;
  line-height: 45.76px;
  text-transform: uppercase;
}

.partnerships__grid {
  margin: 0 auto;
  border-top: 1px solid #dcdee7;
  border-left: 1px solid #dcdee7;
}

.partner-card {
  height: 100%;
  min-height: 300px;
  border-right: 1px solid #dcdee7;
  border-bottom: 1px solid #dcdee7;
  background: var(--color-white);
}

.partner-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}

.partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 113px;
  margin-bottom: 14px;
}

.partner-card__logo img {
  max-width: 180px;
  max-height: 113px;
  object-fit: contain;
}

.partner-card__logo--pnud {
  width: 64px;
  height: 113px;
  margin-right: auto;
  margin-left: auto;
  background: #1688c9;
  color: var(--color-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.partner-card h3 {
  margin: 0 0 8px;
  color: #14183c;
  font-family: "Archivo", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 31.35px;
  text-transform: uppercase;
}

.partner-card p {
  margin: 0;
  color: #5b6188;
  font-family: "Archivo", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
}

.partner-card a {
  width: fit-content;
  margin-top: 14px;
  color: #11835b;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.32px;
  line-height: 18.15px;
  text-transform: uppercase;
}

.partner-card a:hover,
.partner-card a:focus-visible {
  color: var(--theme-primary);
  outline: none;
}

.partner-card a i {
  margin-left: 3px;
  font-size: 12px;
}

.accessibility-tools {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1030;
}

.accessibility-trigger {
  display: grid;
  position: relative;
  width: 66px;
  height: 66px;
  place-items: center;
  padding: 0;
  border: 1px solid #159be8;
  border-radius: 42px;
  background: var(--color-white);
  color: var(--color-white);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.accessibility-trigger::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--theme-primary);
  z-index: 0;
}

.accessibility-trigger__label {
  position: relative;
  z-index: 1;
}

.accessibility-trigger:focus-visible,
.accessibility-action:focus-visible,
.page-back-button:focus-visible {
  outline: 3px solid #159be8;
  outline-offset: 3px;
}

.accessibility-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-action {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: var(--theme-primary);
  color: var(--color-white);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  border: 5px solid #fff;
}

.accessibility-action:hover,
.accessibility-trigger:hover {
  filter: brightness(1.08);
}

.page-back-button {
  display: none;
  width: 50px;
  height: 50px;
  place-items: center;
  margin: 8px auto 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--theme-primary);
  color: var(--color-white);
  font-size: 21px;
  border: 4px solid #ffffff;
}

body.has-page-back .page-back-button {
  display: grid;
}

.page-back-button:hover {
  filter: brightness(1.08);
}

.navbar-toggler {
  padding: 8px;
  border: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
}

.navbar-toggler-icon {
  position: relative;
  background-image: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

@media (min-width: 1200px) {
  #navbarNav {
    display: flex !important;
    flex: 1 1 auto;
    width: auto;
  }

  #navbarNav > .menu-panel {
    width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .menu-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .menu-wrap > .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 16px;
  }

  .menu-wrap > .row > .col-auto:first-child {
    min-width: 0;
  }

  .brand-logo {
    width: 260px;
    max-width: 100%;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  #navbarNav {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .menu-panel > .row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 24px;
    margin: 0;
  }

  .menu-links {
    width: 100%;
    gap: 8px;
  }

  .menu-links .nav-link {
    padding: 6px 0;
    white-space: normal;
  }

  .menu-panel .language-links {
    padding: 0 0 8px;
    gap: 16px !important;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-gutter: 24px;
  }

  .brand-logo {
    width: min(100%, 260px);
  }

  .hero-introduction {
    padding: 24px;
    font-size: calc(15px * var(--accessibility-font-scale));
    line-height: 26px;
  }

  .accessibility-tools {
    right: 16px;
    bottom: 16px;
  }

  .content-navigation {
    padding: 56px 0;
  }

  .content-navigation__container {
    max-width: 100%;
  }

  .navigation-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #dcdee7;
  }

  .navigation-card__body {
    min-height: 429px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partnerships {
    padding: 56px 0;
  }

  .partnerships h2 {
    margin-bottom: 48px;
    font-size: 36px;
    line-height: 1;
  }

  .partner-card {
    min-height: 280px;
  }
}

body.pobreza-page {
  --theme-primary: #9e5f46;
  --theme-secondary: #e6233c;
  --theme-accent: #e6233c;
}

body.guia-page {
  --theme-primary: #0f7055;
  --theme-secondary: #e6233c;
  --theme-accent: #0b5a44;
}

.pobreza-page .menu-links .nav-link.active {
  border-bottom-color: var(--theme-secondary);
  color: #ffffff;
}

.guia-page .menu-links .nav-link.active {
  border-bottom-color: var(--theme-secondary);
  color: #ffffff;
}

.pobreza-main {
  background: var(--color-white);
}

.pobreza-hero {
  background: var(--theme-primary);
}

.pobreza-hero__banner {
  width: 100%;
  height: auto;
}

.pobreza-section-nav {
  display: flex;
  align-items: center;
  min-height: 149px;
  padding: 22px 0;
  border-top: 4px solid #e6233c;
  border-bottom: 4px solid #e6233c;
  background: var(--theme-primary);
  color: var(--color-white);
}

.pobreza-section-nav .container {
  max-width: 1296px;
}

.pobreza-section-nav__page {
  color: var(--color-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 16.5px;
  text-transform: uppercase;
}

.pobreza-section-nav__title {
  color: var(--color-white);
  font-family: "gineso", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  text-transform: uppercase;
}

.pobreza-section-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pobreza-section-nav__links li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.pobreza-section-nav__links li {
  color: var(--color-white);
  font-family: "gineso", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 15.6px;
  white-space: nowrap;
}

.pobreza-section-nav__links a {
  color: inherit;
  text-decoration: none;
}

.pobreza-section-nav__links a:hover,
.pobreza-section-nav__links a:focus-visible {
  color: inherit;
  text-decoration: underline;
}

.pobreza-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--color-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 20px;
}

.pobreza-kicker span {
  width: 9px;
  height: 9px;
  background: #e6233c;
}

.pobreza-kicker--terra {
  color: #14183c;
}

.impa-intro h2,
.pobreza-dimensions h2,
.pobreza-panorama h2 {
  margin: 0;
  font-family: "gineso", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.pobreza-overview,
.pobreza-dimensions,
.pobreza-panorama {
  padding: 112px 0;
}

.pobreza-overview {
  padding: 104px 0;
  border-top: 1px solid #dcdee7;
}

.pobreza-overview .container,
.pobreza-dimensions .container,
.pobreza-panorama .container,
.impa-intro .container {
  max-width: 1194px;
}

.pobreza-dimensions h2,
.pobreza-panorama h2 {
  color: #14183c;
  font-size: 42px;
  line-height: 1.08;
}

.pobreza-overview p,
.pobreza-dimensions .col-lg-5 > p,
.pobreza-panorama p {
  margin: 0 0 18px;
  color: #5b6188;
  font-family: "gineso", sans-serif;
  font-size: 18px;
  line-height: 29.7px;
}

.pobreza-overview__callout {
  max-width: 420px;
  margin-top: 24px !important;
  color: #9e5f46 !important;
  font-size: 25px !important;
  font-weight: 600;
  line-height: 36.25px !important;
}

.pobreza-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
}

.pobreza-photo-strip__item {
  position: relative;
  aspect-ratio: 288 / 461;
  margin: 0;
  cursor: grab;
  overflow: hidden;
}

.pobreza-photo-strip__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pobreza-photo-strip__image--original {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.pobreza-photo-strip__item:hover .pobreza-photo-strip__image--original,
.pobreza-photo-strip__item.is-auto-highlighted .pobreza-photo-strip__image--original {
  opacity: 1;
}

.impa-intro {
  margin-top: 56px;
  padding: 104px 0;
  background: var(--theme-primary);
  color: var(--color-white);
}

.impa-intro__header {
  max-width: 397px;
}

.impa-intro__index {
  width: fit-content;
  margin: 0 0 16px;
  padding: 0 3px;
  background: var(--color-white);
  color: #e6233c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 20px;
}

.impa-intro h2 {
  max-width: 397px;
  font-size: 44px;
  line-height: 45.76px;
}

.impa-intro__subtitle {
  margin: 0;
  color: #aeafba;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 19.8px;
}

.impa-intro__content {
  margin-top: 92px;
}

.impa-intro__content p {
  margin: 0;
  font-family: "gineso", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.7px;
}

.impa-intro__content p + p {
  margin-top: 24px;
}

.impa-intro__content strong {
  font-style: italic;
  font-weight: 700;
}

.pobreza-dimensions {
  padding: 104px 0;
  border-top: 1px solid #dcdee7;
  color: #14183c;
}

.dimensions-header h2,
.panorama-header h2 {
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 45.76px;
  text-transform: uppercase;
}

.dimensions-index,
.panorama-header > p {
  margin: 0;
  color: #e6233c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 19.8px;
}

.dimensions-header h2 { margin: 10px 0 0; }

.dimensions-instruction,
.panorama-header span,
.dimension-row__label p,
.dimension-detail__dimension,
.dimension-detail__weight span {
  margin: 0;
  color: #5b6188;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.76px;
  line-height: 18.15px;
  text-transform: uppercase;
}

.dimensions-stats {
  display: flex;
  gap: 0;
  margin: 72px 0 28px;
  border-bottom: 1px solid #dcdee7;
  padding-bottom: 28px;
}

.dimensions-stats div {
  min-width: 190px;
  padding-left: 14px;
  border-left: 3px solid #e6233c;
}

.dimensions-stats div + div { margin-left: 14px; }

.dimensions-stats strong,
.dimension-detail__weight strong {
  display: block;
  color: #9e5f46;
  font-family: "gineso", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 44px;
}

.dimensions-stats span {
  color: #5b6188;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

.dimension-row {
  display: grid;
  grid-template-columns: 180px 96px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid #dcdee7;
}

.dimension-row__label h3 {
  margin: 0 0 9px;
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20.7px;
  text-transform: uppercase;
}

.dimension-row__label p { font-size: 11px; letter-spacing: .88px; }

.dimension-row > img { width: 96px; height: 96px; object-fit: cover; }

.dimension-row__items {
  display: grid;
  grid-template-columns: repeat(var(--items, 4), minmax(0, 1fr));
  gap: 2px;
}
.dimension-row:nth-child(1) .dimension-row__items { --items: 6; }
.dimension-row:nth-child(2) .dimension-row__items,
.dimension-row:nth-child(4) .dimension-row__items { --items: 4; }
.dimension-row:nth-child(3) .dimension-row__items { --items: 3; }
.dimension-row:nth-child(5) .dimension-row__items { --items: 2; }

.dimension-item {
  display: flex;
  min-height: 92px;
  padding: 10px 10px 8px;
  border: 0;
  border-top: 3px solid #9e5f46;
  background: transparent;
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 15.6px;
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.dimension-row[data-color="blue"] .dimension-item { border-top-color: #2a3177; }
.dimension-item:hover, .dimension-item:focus-visible, .dimension-item.is-active { background: #f3f4f8; outline: 0; }
.dimension-item small { color: #5b6188; font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 400; line-height: 16.5px; }

.dimension-detail {
  display: flex;
  justify-content: space-between;
  min-height: 230px;
  margin-top: 40px;
  padding: 22px 0 36px;
  border-top: 3px solid #14183c;
  border-bottom: 1px solid #dcdee7;
}

.dimension-detail h3 { margin: 8px 0 8px; font-family: "gineso", sans-serif; font-size: 28px; font-weight: 600; line-height: 30.8px; text-transform: uppercase; }
.dimension-detail__description { max-width: 656px; margin: 0; color: #14183c; font-family: "gineso", sans-serif; font-size: 18px; line-height: 27.9px; }
.dimension-detail__link { display: inline-block; text-decoration: none; margin-top: 24px; padding: 12px 23px; border: 1px solid #14183c; background: transparent; color: #14183c; font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 1.68px; line-height: 16px; text-transform: uppercase; }
.dimension-detail__weight { min-width: 150px; padding-top: 4px; text-align: right; }
.dimension-detail__weight strong { color: #e6233c; }
.dimension-detail__weight span { display: block; margin-top: 9px; font-size: 10px; letter-spacing: 1.12px; }

.pobreza-panorama { padding-top: 0; border-top: 0; }
.panorama-header { padding-top: 64px; }
.panorama-header h2 { margin: 9px 0 0; font-size: 28px; line-height: 30.8px; }
.panorama-header span { display: block; font-size: 10px; letter-spacing: 1.12px; }
.panorama-copy { max-width: 1200px; margin-top: 46px; }
.pobreza-panorama .panorama-copy p {
  margin: 0;
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.7px;
}

.pobreza-panorama .panorama-copy p + p { margin-top: 24px; }
.panorama-copy strong { font-weight: 700; }

.panorama-charts--svg { display: none; }
.panorama-charts { margin: 64px 0 0; }
.panorama-charts img { display: block; width: 100%; height: auto; }
.panorama-charts__titles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 3.1667%;
  margin-bottom: 24px;
}
.panorama-charts__titles h3 {
  margin: 0;
  color: #14183c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}
.panorama-charts__plot { overflow: hidden; }
.panorama-charts figure { margin: 0; }
.panorama-charts figcaption {
  min-height: 40px;
  margin-bottom: 18px;
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
}

.panorama-charts svg { display: block; width: 100%; height: auto; overflow: visible; }
.panorama-charts text { fill: #303030; font-family: Arial, sans-serif; font-size: 10px; }
.panorama-charts .chart-title { font-size: 12px; }
.panorama-charts .chart-grid path { fill: none; stroke: #d9d9d9; stroke-width: 1; }
.panorama-charts .chart-series { fill: none; stroke-width: 1.5; }
.panorama-charts .chart-series--orange { stroke: #f05a00; }
.panorama-charts .chart-series--blue { stroke: #3482c4; }
.panorama-charts .chart-series--gray { stroke: #8b8b8b; }
.panorama-charts .chart-dots circle { stroke: none; }
.panorama-charts .chart-dots--orange circle { fill: #f05a00; }
.panorama-charts .chart-dots--blue circle { fill: #3482c4; }
.panorama-charts .chart-dots--gray circle { fill: #8b8b8b; }
.panorama-charts .chart-legend path { fill: none; stroke-width: 2; }
.panorama-charts .chart-text--orange, .panorama-charts .chart-note--orange { fill: #f05a00; }
.panorama-charts .chart-text--blue, .panorama-charts .chart-note--blue { fill: #3482c4; }
.panorama-charts .chart-note { font-size: 12px; }

.guia-page .pobreza-section-nav {
  border-top-color: #d4515d;
  border-bottom-color: #d4515d;
}

.guia-page .pobreza-section-nav__links a {
  color: inherit;
}

.guia-page .pobreza-overview {
  padding: 152px 0 104px;
}

.guia-page .pobreza-overview .container {
  max-width: 1200px;
}

.guia-page .pobreza-overview p,
.guia-page .guia-impact__content p {
  color: #14183c;
}

.guia-page .pobreza-overview__callout {
  max-width: 520px;
  color: #0f7055 !important;
}

.guia-photo-strip .pobreza-photo-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.guia-photo-strip {
  margin-top: 56px;
  padding: 56px 0;
}

.guia-photo-strip .pobreza-photo-strip__image {
  filter: none;
}

.guia-photo-strip .pobreza-photo-strip__image--original {
  filter: none;
}

.guia-photo-strip .pobreza-photo-strip__item:hover::after {
  opacity: 0;
}

.guia-partnerships {
  padding: 104px 0;
  border-top: 1px solid #dcdee7;
}

.guia-partnerships .partnerships__container {
  max-width: 1200px;
}

.guia-section-index {
  width: fit-content;
  margin: 0 0 12px;
  padding: 0 3px;
  background: #ffffff;
  color: #e6233c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 20px;
}

.guia-section-index--light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.guia-partnerships h2,
.guia-impact h2,
.guia-next h2 {
  margin: 0;
  color: #14183c;
  font-family: "gineso", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 45.76px;
  text-transform: uppercase;
}

.guia-partnerships__subtitle {
  margin: 0 0 48px;
  color: #5b6188;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 19.8px;
}

.partner-card__logo--guide-text {
  width: 128px;
  height: 113px;
  margin-right: auto;
  margin-left: auto;
  background: #0f7055;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.guia-impact {
  padding: 104px 0;
  border-top: 1px solid #dcdee7;
}

.guia-impact .container,
.guia-next .container {
  max-width: 1200px;
}

.guia-impact__header {
  max-width: 369px;
}

.guia-impact__header h2 {
  margin-top: 8px;
}

.guia-section-subtitle {
  margin: 0;
  color: #5b6188;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 19.8px;
}

.guia-impact__content {
  margin-top: 56px;
}

.guia-impact__content p {
  margin: 0;
  font-family: "gineso", sans-serif;
  font-size: 18px;
  line-height: 29.7px;
}

.guia-impact__content p + p {
  margin-top: 24px;
}

.guia-quote {
  margin: 48px 0 0;
  padding: 0 0 0 24px;
  border-left: 4px solid #e6233c;
}

.guia-quote p {
  margin: 0;
  font-family: "gineso", sans-serif;
}

.guia-quote__copy {
  max-width: 1100px;
  color: #14183c;
  font-size: 18px;
  line-height: 29.7px;
}

.guia-quote__copy + .guia-quote__copy {
  margin-top: 16px;
}

.guia-quote__statement {
  max-width: 800px;
  margin-top: 28px !important;
  color: #0f8a62;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.guia-next {
  margin-bottom: 72px;
  padding: 104px 0 72px;
  background: #0c6446;
  color: #ffffff;
}

.guia-next .guia-section-index--light {
  margin: 0 0 10px;
  background: #ffffff;
  color: #e6233c;
}

.guia-next h2 {
  color: #ffffff;
}

.guia-next__subtitle {
  margin: 0;
  color: #cacaca;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 19.8px;
}

.guia-next__timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 93px;
  padding-top: 36px;
  border-top: 4px solid #ffffff;
}

.guia-next__item {
  position: relative;
}

.guia-next__dot {
  position: absolute;
  top: -46px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #e6233c;
  border: 3px solid #0c6446;
}

.guia-next__item h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  line-height: 19.8px;
}

.guia-next__item p {
  margin: 0;
  color: #ffffff;
  font-family: "gineso", sans-serif;
  font-size: 17px;
  line-height: 24.65px;
}

@media (max-width: 991.98px) {
  .dimension-row {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 20px;
    padding: 24px 0;
  }

  .dimension-row__items {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .pobreza-section-nav {
    display: block;
    min-height: auto;
  }

  .pobreza-section-nav__links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pobreza-overview,
  .pobreza-dimensions,
  .pobreza-panorama,
  .impa-intro {
    padding: 80px 0;
  }

  .guia-page .pobreza-overview {
    padding: 80px 0;
  }

  .pobreza-panorama {
    padding-top: 0;
  }

  .guia-next__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .dimensions-stats {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
  }

  .dimensions-stats div {
    flex: 1 1 120px;
    min-width: 0;
  }

  .dimensions-stats div + div { margin-left: 0; }

  .dimension-row {
    grid-template-columns: minmax(0, 1fr) 80px;
    gap: 16px;
  }

  .dimension-row > img { width: 80px; height: 80px; }

  .dimension-row__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dimension-item {
    min-width: 0;
    min-height: 104px;
    gap: 12px;
    font-size: 16px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .dimension-detail {
    flex-direction: column;
    gap: 24px;
    margin-top: 28px;
  }

  .dimension-detail h3 { overflow-wrap: anywhere; }

  .dimension-detail__weight {
    min-width: 0;
    padding-top: 0;
    text-align: left;
  }

  .pobreza-section-nav {
    padding: 28px 0;
  }

  .pobreza-section-nav .container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .pobreza-section-nav__links {
    display: block;
  }

  .pobreza-section-nav__links li {
    white-space: normal;
  }

  .pobreza-section-nav__links li + li {
    margin-top: 10px;
    padding-left: 0;
    border-left: 0;
  }

  .pobreza-overview,
  .pobreza-dimensions,
  .pobreza-panorama,
  .impa-intro {
    padding: 64px 0;
  }

  .pobreza-overview {
    padding-top: 96px;
  }

  .guia-page .pobreza-overview {
    padding: 96px 0 64px;
  }

  .pobreza-overview .container,
  .pobreza-dimensions .container,
  .pobreza-panorama .container,
  .impa-intro .container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .pobreza-overview h2,
  .pobreza-dimensions h2,
  .pobreza-panorama h2,
  .impa-intro h2 {
    font-size: 34px;
  }

  .pobreza-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pobreza-photo-strip__item:last-child {
    grid-column: 1 / -1;
  }

  .pobreza-panorama {
    padding-top: 0;
  }

  .guia-partnerships,
  .guia-impact {
    padding-bottom: 64px;
  }

  .guia-partnerships h2,
  .guia-impact h2,
  .guia-next h2 {
    font-size: 34px;
    line-height: 1;
  }

  .guia-quote__statement {
    font-size: 24px;
  }

  .guia-next {
    padding: 48px 0 56px;
  }

  .guia-next__timeline {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
