:root {
  --pps-green: #2f7f43;
  --pps-green-dark: #256a36;
  --pps-green-soft: #edf6ef;
  --pps-navy: #173f48;
  --pps-blue: #0e637c;
  --pps-blue-soft: #edf6f8;
  --pps-gold: #8f6117;
  --pps-gold-soft: #fbf5e9;
  --pps-brown: #3f321f;
  --pps-paper: #f3f6f4;
  --pps-surface: #ffffff;
  --pps-line: #d7dfda;
  --pps-muted: #5d6c63;
  --pps-danger: #b5433e;
  --pps-ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--pps-paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--pps-paper);
  color: #202720;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.pps-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--pps-navy);
  color: #fff;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms var(--pps-ease);
}

.pps-skip:focus {
  transform: translateY(0);
}

.pps-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--pps-line);
  background: rgba(255, 255, 255, .98);
}

.pps-header__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.pps-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.pps-brand img {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.pps-brand > span {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.pps-brand small {
  color: var(--pps-green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.pps-brand strong {
  overflow: hidden;
  color: var(--pps-brown);
  font: 500 18px/1.25 Georgia, "Times New Roman", serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pps-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pps-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--pps-navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms var(--pps-ease), background-color 160ms var(--pps-ease);
}

.pps-nav a:hover {
  background: var(--pps-green-soft);
  color: var(--pps-green-dark);
}

.pps-nav a:active {
  transform: scale(.97);
}

.pps-nav a:focus-visible,
.pps-brand:focus-visible,
.pps-primary-link:focus-visible,
.pps-tool__action:focus-visible,
.pps-content-action:focus-visible {
  outline: 3px solid rgba(14, 99, 124, .28);
  outline-offset: 3px;
}

.pps-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--pps-navy);
  color: #fff;
}

.pps-intro::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  top: 50%;
  z-index: -1;
  width: 230px;
  height: 230px;
  background: url("/marca/Logo S.png") center / contain no-repeat;
  opacity: .13;
  transform: translateY(-50%);
}

.pps-intro__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 292px;
  display: grid;
  align-content: center;
  justify-items: start;
  margin: 0 auto;
  padding: 48px 270px 48px 0;
}

.pps-eyebrow {
  margin: 0 0 8px;
  color: var(--pps-green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pps-intro .pps-eyebrow {
  color: #a9d7b2;
}

.pps-intro h1 {
  margin: 0;
  color: #fff;
  font: 500 46px/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.pps-intro p:not(.pps-eyebrow) {
  max-width: 600px;
  margin: 14px 0 0;
  color: #e6efec;
  font-size: 18px;
}

.pps-primary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--pps-green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 170ms var(--pps-ease), transform 120ms var(--pps-ease);
}

.pps-primary-link:hover {
  background: var(--pps-green-dark);
}

.pps-primary-link:active,
.pps-tool__action:active,
.pps-content-action:active {
  transform: scale(.97);
}

.pps-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.pps-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.pps-section__heading h2 {
  margin: 0;
  color: var(--pps-brown);
  font: 500 30px/1.18 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.pps-section__heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--pps-muted);
  text-align: right;
}

.pps-directory {
  overflow: hidden;
  border: 1px solid var(--pps-line);
  border-radius: 8px;
  background: var(--pps-surface);
}

.pps-tool {
  min-height: 152px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border-bottom: 1px solid var(--pps-line);
  transition: border-color 170ms var(--pps-ease), background-color 170ms var(--pps-ease);
}

.pps-tool:last-child {
  border-bottom: 0;
}

.pps-tool:hover {
  background: #fff;
}

.pps-tool--priority {
  background: var(--pps-green-soft);
  box-shadow: inset 4px 0 0 var(--pps-green);
}

.pps-tool--priority:hover {
  background: #f5faf6;
}

.pps-tool__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d7cd;
  border-radius: 50%;
  background: #fff;
  color: var(--pps-green-dark);
  font: 500 24px/1 Georgia, "Times New Roman", serif;
}

.pps-tool__body {
  min-width: 0;
}

.pps-tool__type {
  margin: 0 0 3px;
  color: var(--pps-blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.pps-tool h3 {
  margin: 0;
  color: var(--pps-navy);
  font-size: 20px;
  line-height: 1.25;
}

.pps-tool__body > p:not(.pps-tool__type) {
  max-width: 700px;
  margin: 6px 0 9px;
  color: #36443a;
}

.pps-tool__domain {
  color: var(--pps-muted);
  font-size: 12px;
}

.pps-tool__action,
.pps-content-action {
  min-width: 112px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--pps-green);
  border-radius: 6px;
  background: #fff;
  color: var(--pps-green-dark);
  font-weight: 900;
  text-decoration: none;
  transition: background-color 170ms var(--pps-ease), color 170ms var(--pps-ease), transform 120ms var(--pps-ease);
}

.pps-tool__action:hover,
.pps-content-action:hover {
  background: var(--pps-green);
  color: #fff;
}

.pps-band {
  border-top: 1px solid var(--pps-line);
  border-bottom: 1px solid var(--pps-line);
}

.pps-band--gold {
  background: var(--pps-gold-soft);
}

.pps-band--blue {
  background: var(--pps-blue-soft);
}

.pps-content-list {
  display: grid;
  gap: 12px;
}

.pps-empty {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px 24px;
  border-left: 4px solid var(--pps-gold);
  background: rgba(255, 255, 255, .75);
}

.pps-empty strong {
  color: var(--pps-brown);
  font-size: 16px;
}

.pps-empty span {
  color: var(--pps-muted);
}

.pps-content-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  border: 1px solid var(--pps-line);
  border-radius: 8px;
  background: #fff;
}

.pps-content-item__body {
  min-width: 0;
}

.pps-content-item__meta {
  margin: 0 0 4px;
  color: var(--pps-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pps-content-item h3 {
  margin: 0;
  color: var(--pps-navy);
  font-size: 18px;
}

.pps-content-item__description {
  max-width: 760px;
  margin: 7px 0 0;
  color: #3f4d44;
}

.pps-content-item__details {
  display: grid;
  gap: 5px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pps-content-item__details li {
  position: relative;
  padding-left: 18px;
  color: #3f4d44;
}

.pps-content-item__details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pps-green);
  font-weight: 900;
}

.pps-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--pps-line);
  border-radius: 8px;
  background: #fff;
  list-style: none;
}

.pps-checklist li {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 22px;
  border-right: 1px solid var(--pps-line);
}

.pps-checklist li:last-child {
  border-right: 0;
}

.pps-checklist li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pps-green-soft);
  color: var(--pps-green-dark);
  font-weight: 900;
}

.pps-checklist p {
  margin: 2px 0 0;
  color: #3f4d44;
}

.pps-checklist strong {
  color: var(--pps-navy);
}

.pps-footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--pps-line);
  background: #fff;
  color: var(--pps-muted);
}

.pps-footer > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pps-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.pps-footer p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.pps-footer strong {
  color: var(--pps-brown);
}

.pps-footer span,
.pps-footer small {
  font-size: 12px;
}

@media (max-width: 840px) {
  .pps-header__inner {
    width: min(100% - 28px, 720px);
    min-height: 72px;
  }

  .pps-brand img {
    width: 52px;
    height: 52px;
  }

  .pps-brand strong {
    font-size: 16px;
  }

  .pps-nav {
    display: none;
  }

  .pps-intro__inner,
  .pps-section {
    width: min(100% - 28px, 720px);
  }

  .pps-intro::after {
    right: 16px;
    width: 170px;
    height: 170px;
  }

  .pps-intro__inner {
    min-height: 250px;
    padding: 38px 160px 38px 0;
  }

  .pps-intro h1 {
    font-size: 39px;
  }

  .pps-section {
    padding: 44px 0;
  }

  .pps-section__heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .pps-section__heading > p {
    max-width: 620px;
    text-align: left;
  }

  .pps-tool {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .pps-tool__number {
    width: 48px;
    height: 48px;
  }

  .pps-tool__action {
    grid-column: 2;
    justify-self: start;
  }

  .pps-checklist {
    grid-template-columns: 1fr;
  }

  .pps-checklist li {
    border-right: 0;
    border-bottom: 1px solid var(--pps-line);
  }

  .pps-checklist li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .pps-header__inner,
  .pps-intro__inner,
  .pps-section {
    width: min(100% - 24px, 520px);
  }

  .pps-header__inner {
    min-height: 68px;
  }

  .pps-brand {
    gap: 9px;
  }

  .pps-brand img {
    width: 48px;
    height: 48px;
  }

  .pps-brand small {
    font-size: 9px;
  }

  .pps-brand strong {
    font-size: 15px;
  }

  .pps-intro::after {
    right: -18px;
    width: 150px;
    height: 150px;
    opacity: .1;
  }

  .pps-intro__inner {
    min-height: 236px;
    padding: 32px 78px 32px 0;
  }

  .pps-intro h1 {
    font-size: 34px;
  }

  .pps-intro p:not(.pps-eyebrow) {
    font-size: 16px;
  }

  .pps-primary-link {
    width: 100%;
    margin-top: 22px;
  }

  .pps-section {
    padding: 38px 0;
  }

  .pps-section__heading h2 {
    font-size: 26px;
  }

  .pps-tool {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }

  .pps-tool__number {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .pps-tool h3 {
    font-size: 18px;
  }

  .pps-tool__body > p:not(.pps-tool__type) {
    margin-top: 5px;
  }

  .pps-tool__domain {
    overflow-wrap: anywhere;
  }

  .pps-tool__action {
    width: 100%;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .pps-content-item {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .pps-content-action {
    width: 100%;
  }

  .pps-empty {
    padding: 20px 18px;
  }

  .pps-checklist li {
    padding: 19px 17px;
  }

  .pps-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
