/* PCE Design System v1
   Figma source: PCE-Design / Styleguide node 5799:27794. */

:root {
  color-scheme: light;

  --pce-green-100: #66f288;
  --pce-green-500: #45d969;
  --pce-green-700: #2abf4e;
  --pce-frost: #f5faf9;
  --pce-mist: #dde6e5;
  --pce-silver-sage: #b6c2c1;
  --pce-sage: #889b95;
  --pce-moss: #5c7366;
  --pce-deep-moss: #42564b;
  --pce-graphite: #404040;
  --pce-charcoal: #262626;
  --pce-black: #000;
  --pce-white: #fff;

  --pce-font-sans: "Manrope", Arial, sans-serif;

  --pce-h1-size: 68px;
  --pce-h1-line: 1.2;
  --pce-h1-weight: 600;
  --pce-h2-size: 36px;
  --pce-h2-line: 1.4;
  --pce-h2-weight: 700;
  --pce-h3-size: 20px;
  --pce-h3-line: 1.4;
  --pce-h3-weight: 700;
  --pce-h4-size: 16px;
  --pce-h4-line: 1.5;
  --pce-h4-weight: 700;
  --pce-body-lg-size: 16px;
  --pce-body-lg-line: 1.5;
  --pce-body-size: 14px;
  --pce-body-line: 1.5;
  --pce-body-sm-size: 12px;
  --pce-body-sm-line: 1.5;
  --pce-button-size: 14px;
  --pce-button-line: 1;
  --pce-tag-size: 14px;
  --pce-tag-line: 1;
  --pce-tag-tracking: .84px;

  --pce-space-1: 6px;
  --pce-space-2: 8px;
  --pce-space-3: 12px;
  --pce-space-4: 16px;
  --pce-space-5: 20px;
  --pce-space-6: 24px;
  --pce-space-7: 32px;
  --pce-space-8: 40px;
  --pce-space-9: 60px;
  --pce-space-10: 80px;
  --pce-space-11: 120px;

  --pce-container: 1204px;
  --pce-gutter-desktop: 118px;
  --pce-gutter-mobile: 16px;
  --pce-radius-none: 0;
  --pce-border-subtle: 1px solid var(--pce-silver-sage);
  --pce-shadow-card: 0 63px 19px rgba(110, 110, 110, .05),
    0 28px 14px rgba(110, 110, 110, .09),
    0 7px 7px rgba(110, 110, 110, .10);
  --pce-ease: cubic-bezier(.22, 1, .36, 1);

  /* Backward-compatible aliases for existing PCE page styles. */
  --green: var(--pce-green-500);
  --gray-1: var(--pce-frost);
  --gray-2: var(--pce-mist);
  --gray-3: var(--pce-silver-sage);
  --olive-1: var(--pce-sage);
  --olive-2: var(--pce-moss);
  --olive-3: var(--pce-deep-moss);
  --black-1: var(--pce-graphite);
  --black-2: var(--pce-charcoal);
  --black-3: var(--pce-black);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pce-font-sans);
  background: var(--pce-white);
  color: var(--pce-black);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

.pce-container {
  width: min(var(--pce-container), calc(100% - 160px));
  margin-inline: auto;
}

.pce-stack {
  display: flex;
  flex-direction: column;
}

.pce-stack-20 { gap: var(--pce-space-5); }
.pce-stack-40 { gap: var(--pce-space-8); }
.pce-stack-60 { gap: var(--pce-space-9); }
.pce-stack-80 { gap: var(--pce-space-10); }

.pce-surface-frost { background: var(--pce-frost); }
.pce-surface-mist { background: var(--pce-mist); }
.pce-surface-black { background: var(--pce-black); color: var(--pce-frost); }
.pce-surface-charcoal { background: var(--pce-charcoal); color: var(--pce-frost); }
.pce-surface-moss { background: var(--pce-moss); color: var(--pce-frost); }

.pce-h1,
.pce-h2,
.pce-h3,
.pce-h4,
.pce-body,
.pce-body-lg,
.pce-body-sm,
.pce-tag-text,
.pce-button-text {
  margin: 0;
  letter-spacing: 0;
}

.pce-h1 {
  font-size: var(--pce-h1-size);
  line-height: var(--pce-h1-line);
  font-weight: var(--pce-h1-weight);
}

.pce-h2 {
  font-size: var(--pce-h2-size);
  line-height: var(--pce-h2-line);
  font-weight: var(--pce-h2-weight);
}

.pce-h3 {
  font-size: var(--pce-h3-size);
  line-height: var(--pce-h3-line);
  font-weight: var(--pce-h3-weight);
}

.pce-h4 {
  font-size: var(--pce-h4-size);
  line-height: var(--pce-h4-line);
  font-weight: var(--pce-h4-weight);
}

.pce-body-lg {
  font-size: var(--pce-body-lg-size);
  line-height: var(--pce-body-lg-line);
  font-weight: 500;
}

.pce-body {
  font-size: var(--pce-body-size);
  line-height: var(--pce-body-line);
  font-weight: 500;
}

.pce-body-sm {
  font-size: var(--pce-body-sm-size);
  line-height: var(--pce-body-sm-line);
  font-weight: 500;
}

.pce-muted { color: var(--pce-graphite); }
.pce-muted-light { color: var(--pce-silver-sage); }
.pce-green { color: var(--pce-green-500); }

.pce-section {
  padding-block: var(--pce-space-10);
}

.pce-section-lg {
  padding-block: var(--pce-space-11);
}

.pce-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: var(--pce-space-6);
  border-bottom: var(--pce-border-subtle);
  color: var(--pce-sage);
  font-size: var(--pce-tag-size);
  line-height: var(--pce-tag-line);
  font-weight: 700;
  letter-spacing: var(--pce-tag-tracking);
  text-transform: uppercase;
}

.pce-section-label[data-tone="dark"] {
  color: var(--pce-silver-sage);
  border-color: rgba(221, 230, 229, .65);
}

.pce-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pce-space-2);
  color: var(--pce-sage);
  font-size: var(--pce-tag-size);
  line-height: var(--pce-tag-line);
  font-weight: 700;
  letter-spacing: var(--pce-tag-tracking);
  text-transform: uppercase;
}

.pce-tag::before,
.pce-tag::after {
  content: "";
  width: 8px;
  height: 18px;
  border-top: 1px dashed currentColor;
  border-bottom: 1px dashed currentColor;
  opacity: .75;
}

.pce-barcode {
  display: inline-block;
  width: 105px;
  height: 24px;
  color: var(--pce-silver-sage);
  background: url("assets/official/Elementos%20de%20apoio/Pattern%20linhas%20paralelas/Pattern-Cinza-M.svg?v=figma3") center / contain no-repeat;
}

.pce-dot-grid {
  background-image: radial-gradient(var(--pce-silver-sage) .8px, transparent .8px);
  background-size: 8px 8px;
}

.pce-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: var(--pce-space-5);
  border: 0;
  border-radius: var(--pce-radius-none);
  background: var(--pce-green-500);
  color: var(--pce-black);
  cursor: pointer;
  font-size: var(--pce-button-size);
  line-height: var(--pce-button-line);
  font-weight: 700;
  text-transform: uppercase;
  padding: var(--pce-space-1) var(--pce-space-1) var(--pce-space-1) var(--pce-space-6);
  transition: background-color .2s var(--pce-ease), transform .2s var(--pce-ease);
}

.pce-button:hover {
  background: var(--pce-green-100);
}

.pce-button:active {
  transform: translateY(1px);
}

.pce-button:focus-visible,
.pce-icon-button:focus-visible,
.pce-menu-button:focus-visible {
  outline: 2px solid var(--pce-green-100);
  outline-offset: 3px;
}

.pce-button[data-size="sm"] {
  min-height: 40px;
  padding-left: var(--pce-space-4);
  font-size: 12px;
  line-height: 18px;
}

.pce-button__icon,
.pce-corner-arrow {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background-color: var(--pce-frost);
  background-image: url("assets/official/Iconografia/M/Seta-Up-right-dark.svg?v=figma3");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px 26px;
}

.pce-button__icon::before,
.pce-button__icon::after,
.pce-corner-arrow::before,
.pce-corner-arrow::after {
  content: none;
}

.pce-corner-arrow {
  background-color: var(--pce-sage);
  background-image: url("assets/official/Iconografia/M/Seta-Up-right-light.svg?v=figma3");
}

.pce-header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: var(--pce-black);
  border-bottom: 1px solid rgba(245, 250, 249, .18);
  color: var(--pce-silver-sage);
}

.pce-header__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--pce-space-6);
}

.pce-header__brand img {
  width: 136px;
  height: 34px;
  object-fit: contain;
}

.pce-header__nav {
  display: flex;
  align-items: center;
  gap: var(--pce-space-6);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.pce-header__contact {
  background: var(--pce-frost);
  color: var(--pce-black);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.pce-menu-button {
  display: none;
  width: 56px;
  height: 56px;
  border: 0;
  background: rgba(38, 38, 38, .8);
  color: var(--pce-green-500);
}

.pce-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  background: currentColor;
}

.pce-hero {
  position: relative;
  min-height: 758px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--pce-black);
  color: var(--pce-frost);
  padding: 28px;
}

.pce-hero__media {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-size: cover;
}

.pce-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .08) 12%, rgba(0, 0, 0, .92) 100%);
}

.pce-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-6);
}

.pce-hero__kicker,
.pce-hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: rgba(245, 250, 249, .22);
}

.pce-hero__kicker {
  padding-bottom: var(--pce-space-6);
  border-bottom: 1px solid rgba(245, 250, 249, .22);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.pce-hero__footer {
  padding-top: var(--pce-space-6);
  border-top: 1px solid rgba(245, 250, 249, .22);
}

.pce-hero__footer p {
  max-width: 870px;
}

.pce-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--pce-space-5);
}

.pce-step-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--pce-frost);
  box-shadow: var(--pce-shadow-card);
}

.pce-step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--pce-space-4) var(--pce-space-4) 0;
  padding-bottom: var(--pce-space-3);
  border-bottom: 1px solid var(--pce-mist);
  color: var(--pce-sage);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.pce-notch {
  width: 12px;
  height: 18px;
  background: url("assets/icon-notch.svg?v=figma3") center / contain no-repeat;
}

.pce-step-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-3);
  margin-inline: var(--pce-space-4);
}

.pce-step-card__footer {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-left: var(--pce-space-5);
  background: var(--pce-charcoal);
  color: var(--pce-green-500);
}

svg.pce-line-icon {
  width: 26px;
  height: 26px;
  overflow: visible;
  color: var(--pce-green-500);
  fill: none;
}

svg.pce-line-icon *,
.pce-icon-svg * {
  vector-effect: non-scaling-stroke;
}

.pce-brand-icon {
  --pce-icon-size: 26px;
  --pce-icon-url: url("assets/official/Iconografia/M/Foco-light.svg?v=figma3");
  display: inline-block;
  flex: 0 0 var(--pce-icon-size);
  width: var(--pce-icon-size);
  height: var(--pce-icon-size);
  background: currentColor;
  -webkit-mask: var(--pce-icon-url) center / contain no-repeat;
  mask: var(--pce-icon-url) center / contain no-repeat;
}

.pce-brand-icon[data-size="g"] { --pce-icon-size: 40px; }
.pce-brand-icon[data-size="p"] { --pce-icon-size: 18px; }
.pce-brand-icon[data-icon="seta-up-right"] { --pce-icon-url: url("assets/official/Iconografia/M/Seta-Up-right-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="foco"] { --pce-icon-url: url("assets/official/Iconografia/M/Foco-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="prancheta"] { --pce-icon-url: url("assets/official/Iconografia/M/Prancheta-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="grafico-crescimento"] { --pce-icon-url: url("assets/official/Iconografia/M/Grafico_crescimento-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="grafico-linha"] { --pce-icon-url: url("assets/official/Iconografia/M/Grafico_linha-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="dialogo"] { --pce-icon-url: url("assets/official/Iconografia/M/Dialogo-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="check"] { --pce-icon-url: url("assets/official/Iconografia/M/Check-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="bussola"] { --pce-icon-url: url("assets/figma/icon-bussula-g.svg"); }
.pce-brand-icon[data-icon="customizacao"] { --pce-icon-url: url("assets/official/Iconografia/M/Customizacao-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="lupa"] { --pce-icon-url: url("assets/official/Iconografia/M/Lupa-light.svg?v=arch1"); }
.pce-brand-icon[data-icon="elo"] { --pce-icon-url: url("assets/official/Iconografia/M/Elo-light.svg?v=figma3"); }
.pce-brand-icon[data-icon="sino"] { --pce-icon-url: url("assets/official/Iconografia/M/Sino-light.svg?v=figma3"); }

span.pce-line-icon {
  position: relative;
  width: 28px;
  height: 28px;
  color: var(--pce-green-500);
}

span.pce-line-icon[data-icon="target"] {
  border: 2px dashed currentColor;
  border-radius: 8px;
}

span.pce-line-icon[data-icon="clipboard"] {
  border: 2px solid currentColor;
  border-radius: 3px;
}

span.pce-line-icon[data-icon="clipboard"]::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -6px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  background: var(--pce-charcoal);
}

span.pce-line-icon[data-icon="chart"] {
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

span.pce-line-icon[data-icon="chart"]::before {
  content: "";
  position: absolute;
  inset: 7px 3px 4px 7px;
  background: linear-gradient(135deg, transparent 35%, currentColor 36% 42%, transparent 43%);
  border-bottom: 2px solid currentColor;
}

span.pce-line-icon[data-icon="chat"] {
  border: 2px solid currentColor;
  border-radius: 3px;
}

span.pce-line-icon[data-icon="chat"]::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -7px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.pce-proof-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: var(--pce-space-5);
}

.pce-proof-grid .pce-proof-card:nth-child(3) {
  grid-column: span 1;
}

.pce-proof-grid .pce-proof-card:nth-child(4) {
  grid-column: span 1;
}

.pce-proof-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--pce-mist);
}

.pce-proof-card__image {
  position: relative;
  min-height: 388px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pce-moss), var(--pce-deep-moss));
}

.pce-proof-card__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.pce-proof-card__body {
  position: relative;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-2);
  padding: 48px var(--pce-space-5) var(--pce-space-5);
}

.pce-icon-tile {
  position: absolute;
  top: -27px;
  left: var(--pce-space-5);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--pce-charcoal);
  color: var(--pce-green-500);
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.pce-icon-tile .pce-line-icon {
  width: 26px;
  height: 26px;
}

.pce-icon-tile .pce-brand-icon {
  --pce-icon-size: 26px;
}

.pce-metric-grid {
  display: flex;
  justify-content: center;
  gap: var(--pce-space-5);
  min-height: 310px;
}

.pce-metric-card {
  width: 204px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(221, 230, 229, .88);
}

.pce-metric-card:nth-child(2) {
  margin-top: 64px;
}

.pce-metric-card__body {
  padding: var(--pce-space-5);
}

.pce-metric-card__value {
  margin: 0 0 var(--pce-space-3);
  color: var(--pce-charcoal);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.92px;
}

.pce-metric-card__footer {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding-left: var(--pce-space-5);
  background: var(--pce-charcoal);
  color: var(--pce-green-500);
}

.pce-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 200px));
  justify-content: center;
  gap: var(--pce-space-5);
}

.pce-logo-tile {
  display: grid;
  width: 200px;
  height: 80px;
  place-items: center;
  border: 1px solid rgba(245, 250, 249, .08);
  background: var(--pce-charcoal);
}

.pce-logo-tile img {
  max-width: 78%;
  max-height: 44px;
  filter: grayscale(1);
}

.pce-map-panel {
  display: grid;
  min-height: 672px;
  grid-template-columns: minmax(320px, 465px) 1fr;
  align-items: center;
  gap: var(--pce-space-8);
  color: var(--pce-frost);
}

.pce-map-panel__copy {
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-5);
}

.pce-map-panel__copy .pce-body {
  color: var(--pce-mist);
}

.pce-map-panel__map {
  justify-self: end;
  width: min(584px, 100%);
  height: auto;
  aspect-ratio: 602 / 594;
  object-fit: contain;
}

.pce-media-proof {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--pce-space-5);
  background: var(--pce-black);
  color: var(--pce-frost);
}

.pce-play-button {
  position: relative;
  width: 110px;
  height: 110px;
  border: 12px solid rgba(245, 250, 249, .4);
  border-radius: 50%;
  background: rgba(245, 250, 249, .9);
}

.pce-play-button::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 31px;
  width: 0;
  height: 0;
  border-left: 29px solid var(--pce-black);
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}

.pce-bi-panel {
  display: grid;
  min-height: 601px;
  grid-template-columns: minmax(360px, 488px) minmax(0, 1fr);
  background: var(--pce-mist);
}

.pce-bi-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--pce-space-8);
  padding: var(--pce-space-9);
}

.pce-bi-panel__mockup {
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pce-moss);
  padding: 50px 0 50px 50px;
}

.pce-dashboard {
  width: min(666px, 100%);
  min-width: 0;
  background: var(--pce-frost);
  color: var(--pce-charcoal);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.pce-dashboard__top {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pce-space-4);
  border-bottom: 1px solid var(--pce-mist);
}

.pce-dashboard__body {
  display: grid;
  grid-template-columns: minmax(96px, 132px) minmax(0, 1fr);
}

.pce-dashboard__rail {
  min-height: 310px;
  padding: var(--pce-space-4);
  border-right: 1px solid var(--pce-mist);
  background: rgba(221, 230, 229, .35);
}

.pce-dashboard__nav-item {
  height: 28px;
  margin-bottom: var(--pce-space-3);
  background: rgba(182, 194, 193, .35);
}

.pce-dashboard__nav-item:first-child {
  background: var(--pce-green-500);
}

.pce-dashboard__main {
  padding: var(--pce-space-5);
}

.pce-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pce-space-3);
  margin-bottom: var(--pce-space-5);
}

.pce-dashboard__stat {
  min-height: 110px;
  padding: var(--pce-space-4);
  background: var(--pce-white);
}

.pce-dashboard__number {
  margin-top: var(--pce-space-6);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
  font-weight: 600;
}

.pce-dashboard__chart {
  height: 130px;
  background:
    linear-gradient(180deg, rgba(69, 217, 105, .10), rgba(69, 217, 105, .02)),
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(64, 64, 64, .08) 25px 26px);
  clip-path: polygon(0 75%, 12% 64%, 21% 68%, 32% 45%, 42% 58%, 53% 18%, 62% 64%, 72% 48%, 83% 55%, 100% 34%, 100% 100%, 0 100%);
}

.pce-contact-panel {
  display: grid;
  min-height: 807px;
  grid-template-columns: 1fr 530px;
  gap: var(--pce-space-11);
  align-items: center;
  background: linear-gradient(90deg, var(--pce-mist) 0 72%, var(--pce-moss) 72% 100%);
}

.pce-contact-panel__copy {
  display: flex;
  height: 567px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.pce-person-art {
  position: relative;
  width: 530px;
  height: 567px;
}

.pce-person-art img {
  position: absolute;
  max-width: none;
}

.pce-person-art__dots {
  width: 490px;
  height: 490px;
  left: 40px;
  top: 77px;
}

.pce-person-art__back {
  width: 490px;
  height: 490px;
  left: 0;
  top: 37px;
}

.pce-person-art__front {
  width: 490px;
  height: 527px;
  left: 0;
  top: 0;
}

.pce-person-art .pce-corner-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}

.pce-newsletter {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: var(--pce-space-8);
  padding: var(--pce-space-6) var(--pce-space-8);
  background: var(--pce-charcoal);
  color: var(--pce-frost);
}

.pce-newsletter__title {
  display: flex;
  align-items: center;
  gap: var(--pce-space-5);
}

.pce-newsletter__icon {
  position: relative;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--pce-moss);
  color: var(--pce-frost);
}

.pce-newsletter__icon .pce-brand-icon {
  --pce-icon-size: 26px;
}

.pce-newsletter__form {
  display: flex;
  width: min(462px, 100%);
  height: 52px;
  align-items: center;
  justify-content: space-between;
  background: var(--pce-frost);
  padding: var(--pce-space-2);
  padding-left: 18px;
}

.pce-newsletter__form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--pce-charcoal);
}

.pce-footer {
  background: var(--pce-black);
  color: var(--pce-silver-sage);
}

.pce-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 462px);
  gap: clamp(var(--pce-space-7), 5vw, var(--pce-space-10));
  padding: var(--pce-space-9) var(--pce-space-8) var(--pce-space-8);
}

.pce-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pce-space-7) 48px;
}

.pce-footer__group {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-3);
  border-top: 1px solid var(--pce-graphite);
  padding-top: var(--pce-space-3);
}

.pce-footer__contact {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-4);
  background: rgba(38, 38, 38, .5);
  padding: var(--pce-space-6);
}

.pce-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--pce-space-6);
  margin-bottom: var(--pce-space-8);
}

.pce-footer__brand img {
  width: 144px;
  height: 36px;
  object-fit: contain;
}

.pce-footer__divider {
  width: 1px;
  height: 40px;
  background: var(--pce-silver-sage);
}

.pce-social {
  display: flex;
  gap: var(--pce-space-3);
  margin-top: var(--pce-space-6);
}

.pce-social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--pce-charcoal);
  color: var(--pce-frost);
  font-weight: 700;
}

.pce-footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--pce-graphite);
  padding: 28px var(--pce-space-8);
}

@media (max-width: 900px) {
  :root {
    --pce-h1-size: 30px;
    --pce-h2-size: 24px;
    --pce-h3-size: 20px;
    --pce-tag-size: 12px;
    --pce-tag-tracking: .72px;
  }

  .pce-container {
    width: calc(100% - 32px);
  }

  .pce-section,
  .pce-section-lg {
    padding-block: var(--pce-space-9);
  }

  .pce-header {
    min-height: 56px;
    padding: 0 0 0 var(--pce-space-4);
  }

  .pce-header__brand img {
    width: 96px;
    height: 24px;
  }

  .pce-header__nav {
    display: none;
  }

  .pce-menu-button {
    display: block;
  }

  .pce-hero {
    min-height: 780px;
    padding: var(--pce-space-4);
  }

  .pce-hero__kicker {
    font-size: 16px;
    padding-bottom: var(--pce-space-4);
  }

  .pce-hero__footer {
    flex-direction: column;
    align-items: stretch;
    gap: var(--pce-space-6);
    padding-top: var(--pce-space-4);
  }

  .pce-button {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
  }

  .pce-step-grid,
  .pce-proof-grid,
  .pce-logo-grid,
  .pce-map-panel,
  .pce-bi-panel,
  .pce-contact-panel,
  .pce-footer__grid,
  .pce-footer__links {
    grid-template-columns: 1fr;
  }

  .pce-step-card {
    min-height: 275px;
  }

  .pce-step-card__footer {
    height: 40px;
  }

  .pce-proof-card {
    min-height: 540px;
  }

  .pce-metric-grid {
    flex-direction: column;
    align-items: center;
  }

  .pce-metric-card:nth-child(2) {
    margin-top: 0;
    opacity: .55;
  }

  .pce-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pce-logo-tile {
    width: 100%;
    height: 56px;
  }

  .pce-map-panel__map {
    justify-self: center;
  }

  .pce-bi-panel__copy {
    padding: var(--pce-space-8);
  }

  .pce-bi-panel__mockup {
    padding: var(--pce-space-8) 0 0 var(--pce-space-8);
  }

  .pce-contact-panel {
    gap: var(--pce-space-8);
    background: linear-gradient(var(--pce-mist) 0 72%, var(--pce-moss) 72% 100%);
  }

  .pce-contact-panel__copy {
    height: auto;
    align-items: center;
    text-align: center;
    gap: var(--pce-space-8);
    padding-top: var(--pce-space-9);
  }

  .pce-person-art {
    justify-self: center;
    width: 344px;
    height: 368px;
  }

  .pce-person-art__dots,
  .pce-person-art__back {
    width: 318px;
    height: 318px;
  }

  .pce-person-art__dots {
    left: 26px;
    top: 50px;
  }

  .pce-person-art__back {
    top: 24px;
  }

  .pce-person-art__front {
    width: 318px;
    height: 342px;
  }

  .pce-newsletter {
    flex-direction: column;
    align-items: stretch;
    min-height: 203px;
    padding: var(--pce-space-6) var(--pce-space-4);
  }

  .pce-footer__grid {
    gap: var(--pce-space-6);
    padding: var(--pce-space-8) 0 0;
  }

  .pce-footer__links {
    padding-inline: var(--pce-space-4);
    gap: 0;
  }

  .pce-footer__group {
    min-height: 49px;
    overflow: hidden;
  }

  .pce-footer__contact {
    min-height: auto;
  }

  .pce-footer__bottom {
    padding: var(--pce-space-6) var(--pce-space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Applied styleguide: closer to the PCE Figma landing/styleguide proportions. */
.pce-brand-icon[data-icon="escudo"] { --pce-icon-url: url("assets/official/Iconografia/M/Escudo-light.svg?v=figma4"); }

.ds-applied {
  background: var(--pce-white);
}

.ds-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
}

.ds-cover {
  position: relative;
  min-height: 696px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--pce-black);
  color: var(--pce-frost);
}

.ds-cover__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .72) 46%, rgba(0, 0, 0, .35) 100%),
    url("assets/figma/vantagem-reuniao.webp") center / cover no-repeat;
}

.ds-cover__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 80px;
}

.ds-cover__grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) 330px;
  gap: 114px;
  align-items: end;
}

.ds-cover__aside {
  display: flex;
  min-height: 244px;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--pce-space-8);
  color: var(--pce-mist);
}

.ds-foundations,
.ds-components {
  padding-block: 80px;
  background: var(--pce-frost);
}

.ds-foundations__grid,
.ds-components__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 488px);
  gap: var(--pce-space-5);
}

.ds-token-board,
.ds-type-board,
.ds-component-block {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--pce-space-5);
  background: var(--pce-white);
  border: 1px solid var(--pce-mist);
}

.ds-token-rows {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.ds-token-rows span {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: var(--pce-space-3);
  color: var(--pce-black);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.ds-type-sample {
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-5);
}

.pce-centered {
  align-items: center;
  text-align: center;
}

.pce-process-section {
  min-height: 952px;
  padding-block: 80px;
  background:
    radial-gradient(circle at 72% -6%, rgba(255, 255, 255, .98) 0 10%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, var(--pce-mist) 0 73.573%, var(--pce-white) 73.573% 100%);
}

.pce-process-section .pce-container,
.pce-advantages-section .pce-container {
  align-items: center;
}

.pce-process-copy {
  width: min(996px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-5);
  text-align: center;
}

.pce-process-copy .pce-body-lg {
  max-width: 996px;
}

.pce-section-cta {
  width: 260px;
}

.pce-process-section .pce-step-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--pce-space-5);
}

.pce-process-section .pce-step-card {
  height: 360px;
  min-height: 360px;
}

.pce-process-section .pce-step-card__body {
  gap: var(--pce-space-3);
}

.pce-step-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
}

.pce-process-section .pce-step-card__footer {
  padding-left: 0;
}

.pce-process-section .pce-step-card__footer .pce-barcode {
  width: 152px;
  height: 60px;
  background-size: 152px 60px;
  opacity: 1;
}

.pce-advantages-section {
  min-height: 1528px;
  padding-block: 80px;
  background: var(--pce-white);
}

.pce-adv-grid {
  display: grid;
  width: 100%;
  min-height: 1100px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 540px;
  gap: var(--pce-space-5);
}

.pce-adv-card {
  grid-column: span 5;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  overflow: hidden;
  background: var(--pce-mist);
}

.pce-adv-card--wide {
  grid-column: span 7;
}

.pce-adv-card__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 388px;
  margin-bottom: -28px;
  overflow: hidden;
  background: var(--pce-moss);
}

.pce-adv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pce-adv-card:nth-child(1) .pce-adv-card__media img { object-position: center 46%; }
.pce-adv-card:nth-child(2) .pce-adv-card__media img { object-position: center 50%; }
.pce-adv-card:nth-child(3) .pce-adv-card__media img { object-position: center 36%; }
.pce-adv-card:nth-child(4) .pce-adv-card__media img { object-position: center 48%; }

.pce-adv-card__body {
  position: relative;
  z-index: 1;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: var(--pce-space-2);
  padding: 48px var(--pce-space-5) var(--pce-space-5);
  background: var(--pce-mist);
}

.pce-adv-card__body .pce-icon-tile {
  top: -28px;
}

.ds-component-block {
  gap: var(--pce-space-5);
}

.ds-component-block.pce-surface-black {
  border-color: var(--pce-charcoal);
}

.ds-component-block.pce-surface-black .pce-tag {
  color: var(--pce-silver-sage);
}

.ds-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 54px);
  gap: var(--pce-space-5);
}

.ds-icon-grid .pce-icon-tile {
  position: relative;
  top: auto;
  left: auto;
}

.ds-bi-band {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--pce-black) 0 32.262%, var(--pce-frost) 32.262% 100%);
}

.ds-bi-band .pce-bi-panel {
  min-height: 600px;
}

.ds-bi-image {
  width: min(666px, 100%);
  max-width: none;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.ds-code-section {
  padding-block: 80px;
  background: var(--pce-black);
  color: var(--pce-frost);
}

.ds-code-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: var(--pce-space-9);
  align-items: start;
}

.ds-code-block {
  overflow-x: auto;
  margin: 0;
  padding: var(--pce-space-5);
  background: var(--pce-charcoal);
  color: var(--pce-frost);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .ds-cover {
    min-height: 720px;
  }

  .ds-cover__content,
  .ds-foundations,
  .ds-components,
  .pce-process-section,
  .pce-advantages-section,
  .ds-code-section {
    padding-block: var(--pce-space-9);
  }

  .ds-cover__grid,
  .ds-foundations__grid,
  .ds-components__grid,
  .ds-code-grid {
    grid-template-columns: 1fr;
    gap: var(--pce-space-8);
  }

  .ds-cover__aside {
    min-height: auto;
  }

  .ds-token-board,
  .ds-type-board,
  .ds-component-block {
    min-height: 0;
  }

  .ds-token-rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pce-process-section .pce-step-grid,
  .pce-adv-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    min-height: 0;
  }

  .pce-process-section .pce-step-card {
    height: auto;
    min-height: 312px;
  }

  .pce-process-section .pce-step-card__footer .pce-barcode {
    width: 120px;
    height: 40px;
    background-size: 120px 40px;
  }

  .pce-step-card__icon {
    width: 40px;
    height: 40px;
  }

  .pce-step-card__icon .pce-brand-icon {
    --pce-icon-size: 26px;
  }

  .pce-adv-card,
  .pce-adv-card--wide {
    grid-column: auto;
    min-height: 520px;
  }

  .pce-adv-card__media {
    flex: 0 0 360px;
    height: 360px;
    min-height: 360px;
  }

  .pce-section-cta {
    width: 100%;
  }

  .ds-icon-grid {
    grid-template-columns: repeat(4, 54px);
  }

  .ds-bi-band {
    padding-block: var(--pce-space-9);
  }
}
