@charset "UTF-8";
/**
 * Design System: Primeira Infância em Dados
 * Implementado por Datapedia e baseado em design criado pela Sintrópika
 * Prefixo classes CSS: *pid-*
 */
.pid-base {
  --pid-color-primary-soft: #FFF1F1;
  --pid-color-primary-light: #F2A8A8;
  --pid-color-primary-pure: #CF696A;
  --pid-color-primary-dark: #A82C2D;
  --pid-color-secondary-soft: #EDFAFA;
  --pid-color-secondary-light: #AFD4D4;
  --pid-color-secondary-pure: #70A7A5;
  --pid-color-secondary-dark: #268582;
  --pid-color-tertiary-soft: #FFF8E9;
  --pid-color-tertiary-light: #FFE5AB;
  --pid-color-tertiary-pure: #FED16E;
  --pid-color-tertiary-dark: #CC9233;
  --pid-color-tertiary-deep: #9D6321;
  --pid-color-neutral-white: #FFFFFF;
  --pid-color-neutral-soft: #FAF9F7;
  --pid-color-neutral-light: #E0DFDC;
  --pid-color-neutral-medium: #CBCAC9;
  --pid-color-neutral-dark: #AAA9A8;
  --pid-color-neutral-deep: #4F4D73;
  --pid-color-neutral-black: #1E1D36;
  --pid-font-size-xxxs: 12px;
  --pid-font-size-xxs: 14px;
  --pid-font-size-xs: 16px;
  --pid-font-size-sm: 18px;
  --pid-font-size-md: 20px;
  --pid-font-size-lg: 24px;
  --pid-font-size-xl: 32px;
  --pid-font-size-xxl: 40px;
  --pid-font-size-xxxl: 48px;
  --pid-font-size-display: 56px;
  --pid-font-size-giant: 64px;
  --pid-font-size-huge: 80px;
  --pid-font-size-jumbo: 96px;
  --pid-font-size-massive: 136px;
  --pid-font-size-super: 160px;
  --pid-font-size-supra: 200px;
  --pid-font-size-ultra: 240px;
  --pid-gap: 24px;
}
.pid-base a, .pid-base div, .pid-base h1, .pid-base h2, .pid-base h3, .pid-base h4, .pid-base h5, .pid-base h6, .pid-base input, .pid-base p, .pid-base span, .pid-base textarea {
  font-family: unset;
  font-style: unset;
  font-weight: unset;
}

.pid-base h1, .pid-base h2, .pid-base h3, .pid-base h4, .pid-base h5, .pid-base h6 {
  line-height: 115%;
  letter-spacing: 0;
}

.pid-base p {
  letter-spacing: 0;
}

/* **** HEADLINE DEFAULT **** */
/* **** HEADLINE ALTERNATIVE **** */
/* **** HEADLINE DISPLAY **** */
/* **** BODY DEFAULT **** */
/* **** BODY HIGHLIGHT **** */
/* **** OVERLINE **** */
/* **** FONT FAMILIES **** */
.pid-container {
  max-width: 1116px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1116px) {
  .pid-container {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.pid-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}

.pid-grid-1-5 {
  grid-column-start: 1;
  grid-column-end: span 5;
}

.pid-grid-1-6 {
  grid-column-start: 1;
  grid-column-end: span 6;
}

.pid-grid-1-7 {
  grid-column-start: 1;
  grid-column-end: span 7;
}

.pid-grid-6-12 {
  grid-column-start: 6;
  grid-column-end: 13;
}

.pid-grid-7-12 {
  grid-column-start: 7;
  grid-column-end: 13;
}

.pid-grid-8-12 {
  grid-column-start: 8;
  grid-column-end: 13;
}

.pid-flex-horizontal {
  display: flex;
  flex-direction: row;
  gap: var(--pid-gap);
}

/* **** SEÇÕES **** */
header.pid-header {
  position: relative;
  background-color: var(--pid-color-neutral-soft);
  border-bottom: 1px solid var(--pid-color-neutral-light);
  height: 72px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
header.pid-header .pid-header-logo {
  display: flex;
  padding-left: 24px;
  height: 40px;
}
header.pid-header .pid-header-logo img {
  height: 100%;
}
header.pid-header .pid-header-menu {
  flex-grow: 1;
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 100%;
  letter-spacing: 0;
}
header.pid-header .pid-header-menu > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 100%;
}
header.pid-header .pid-header-menu > ul > li {
  position: relative;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header.pid-header .pid-header-menu > ul > li > a {
  color: var(--pid-color-neutral-deep);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
header.pid-header .pid-header-menu > ul > li > a svg.pid-icon {
  color: var(--pid-color-secondary-dark);
  width: 16px;
  height: 16px;
}
header.pid-header .pid-header-menu > ul > li:hover > a {
  color: var(--pid-color-secondary-dark);
  text-decoration: underline;
}
header.pid-header .pid-header-menu > ul > li:hover > a svg.pid-icon {
  color: var(--pid-color-secondary-dark);
}
header.pid-header .pid-header-menu > ul > li:active > a {
  color: var(--pid-color-primary-dark);
  text-decoration: underline;
}
header.pid-header .pid-header-menu > ul > li:active > a svg.pid-icon {
  color: var(--pid-color-primary-dark);
}
header.pid-header .pid-header-menu > ul > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: -94px;
  min-width: 220px;
  padding: 20px 24px 24px 24px;
  background: var(--pid-color-neutral-white);
  border: 1px solid var(--pid-color-neutral-light);
  border-top: 4px solid var(--pid-color-primary-pure);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  z-index: 1000;
}
header.pid-header .pid-header-menu > ul > li > ul.right {
  right: -94px;
  left: unset;
}
header.pid-header .pid-header-menu > ul > li > ul > li {
  cursor: pointer;
  display: block;
  min-width: 228px;
  border-bottom: 1px solid var(--pid-color-neutral-light);
}
header.pid-header .pid-header-menu > ul > li > ul > li > a {
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  text-wrap: nowrap;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  color: var(--pid-color-neutral-black);
}
header.pid-header .pid-header-menu > ul > li > ul > li > a svg {
  width: 16px;
  height: 16px;
  color: var(--pid-color-primary-pure);
}
header.pid-header .pid-header-menu > ul > li > ul > li:hover > a {
  color: var(--pid-color-secondary-dark);
  text-decoration: underline;
}
header.pid-header .pid-header-menu > ul > li:hover > ul {
  display: flex;
  gap: 0;
  flex-direction: column;
}
#pid-header-search-close {
  display: none;
}

.pid-header-search-overlay {
  transition: opacity 0.5s ease-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--pid-color-tertiary-pure);
  border-bottom: 1px solid var(--pid-color-tertiary-dark);
  box-sizing: content-box;
  height: 50px;
  padding: 8px 8px 7px 8px;
  z-index: 2;
}

section.pid-section-main {
  background-color: var(--pid-color-neutral-soft);
  background-image: url("./assets/pid/hero-main.png"), url("./assets/pid/hero-linhas.png");
  background-position: bottom center, bottom center;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, auto;
  padding: 48px 0 320px 0;
  text-align: center;
}
section.pid-section-main h1 {
  margin: 0 auto 24px auto;
  max-width: 925px;
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xxxl);
}
@media (max-width: 768px) {
  section.pid-section-main h1 {
    font-size: var(--pid-font-size-xl);
  }
}
section.pid-section-main h1 {
  color: var(--pid-color-neutral-black);
}
section.pid-section-main h1 mark {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxxl);
}
@media (max-width: 768px) {
  section.pid-section-main h1 mark {
    font-size: var(--pid-font-size-xl);
  }
}
section.pid-section-main h1 mark {
  color: var(--pid-color-neutral-white);
  padding: 0 6px 0 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-size: 100% 90%;
  background: white linear-gradient(90deg, var(--pid-color-secondary-pure) 0%, var(--pid-color-secondary-pure) 100%) no-repeat center;
}
section.pid-section-main p {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
  font-size: var(--pid-font-size-sm);
  line-height: 145%;
}
@media (max-width: 768px) {
  section.pid-section-main p {
    font-size: var(--pid-font-size-xs);
  }
}
section.pid-section-main p {
  margin-bottom: 32px;
}

.pid-section-main__action {
  display: flex;
  flex-direction: row;
  gap: var(--pid-gap);
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.pid-section-main__action > span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 115%;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pid-color-neutral-dark);
}

section.pid-section-sentence {
  background-color: var(--pid-color-neutral-white);
  margin: 80px 0 68px 0;
}
section.pid-section-sentence h2 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xxl);
}
@media (max-width: 768px) {
  section.pid-section-sentence h2 {
    font-size: var(--pid-font-size-lg);
  }
}
section.pid-section-sentence h2 {
  color: var(--pid-color-neutral-black);
}
section.pid-section-sentence p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xs);
  line-height: 160%;
}
@media (max-width: 768px) {
  section.pid-section-sentence p {
    font-size: var(--pid-font-size-xxs);
  }
}
section.pid-section-sentence p {
  color: var(--pid-color-neutral-deep);
}

/* **** ESTRUTURA GENÉRICA GERAL DO BLOCO DE CONTEÚDO **** */
section.pid-section-content {
  margin: 0 0 24px 0;
}

.pid-section-content__inner {
  background-color: var(--pid-color-neutral-soft);
  border-color: var(--pid-color-neutral-light);
  border-width: 0 1px 1px 1px;
  border-style: solid;
  width: 100%;
  box-sizing: border-box;
}

.pid-section-content__header {
  display: flex;
  flex-direction: row;
  gap: var(--pid-gap);
  gap: 0;
}
.pid-section-content__header > div {
  border-top: 4px solid var(--pid-color-neutral-light);
  flex: 1;
}
.pid-section-content__header > div:nth-child(1) {
  padding: 20px 0 24px 32px;
  flex: 0;
}
.pid-section-content__header > div:nth-child(1) > div {
  box-sizing: content-box;
  width: 100px;
  height: 100px;
  border-right: 1px solid var(--pid-color-neutral-light);
  padding-right: 24px;
  margin-right: 24px;
}
.pid-section-content__header > div:nth-child(1) img {
  width: 100%;
  height: 100%;
}
.pid-section-content__header > div:nth-child(2) {
  padding: 20px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.pid-section-content__header > div:nth-child(2) h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-lg);
}
@media (max-width: 768px) {
  .pid-section-content__header > div:nth-child(2) h3 {
    font-size: var(--pid-font-size-sm);
  }
}
.pid-section-content__header > div:nth-child(2) h3 {
  color: var(--pid-color-neutral-black);
}
.pid-section-content__header > div:nth-child(2) p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  .pid-section-content__header > div:nth-child(2) p {
    font-size: var(--pid-font-size-xxxs);
  }
}
.pid-section-content__header > div:nth-child(2) p {
  color: var(--pid-color-neutral-deep);
}
.pid-section-content__header > div:nth-child(2) p strong {
  font-weight: bold;
  color: var(--pid-color-neutral-black);
}
.pid-section-content__header > a.pid-button {
  flex-shrink: 0;
}

.pid-section-content__body {
  padding: 32px;
}

section.pid-section-content--tools {
  margin-bottom: 0;
}

/* **** COMPORTAMENTO DE ABRE/FECHA DE CADA BLOCO **** */
.pid-section-content .pid-button-vertical:not(.active) {
  display: inherit;
}
.pid-section-content .pid-button-vertical.active {
  display: none;
}
.pid-section-content .pid-section-content__body {
  display: none;
}

.pid-section-content-open .pid-button-vertical:not(.active) {
  display: none;
}
.pid-section-content-open .pid-button-vertical.active {
  display: flex;
}
.pid-section-content-open .pid-section-content__body {
  display: inherit;
}

/* **** CARDS DA SEÇÃO DE INDICADORES **** */
.pid-section-content__indicators-cards {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-evenly;
  align-content: space-between;
  align-items: stretch;
}
.pid-section-content__indicators-cards article {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 12px 16px 16px;
  border-top: 4px solid var(--pid-color-tertiary-dark);
  background-color: var(--pid-color-tertiary-pure);
}
.pid-section-content__indicators-cards article:hover {
  border-color: var(--pid-color-secondary-dark);
  background-color: var(--pid-color-secondary-soft);
}
.pid-section-content__indicators-cards article svg {
  stroke: var(--pid-color-primary-pure);
  width: 24px;
  height: 24px;
}
.pid-section-content__indicators-cards article h4 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-md);
}
@media (max-width: 768px) {
  .pid-section-content__indicators-cards article h4 {
    font-size: var(--pid-font-size-xs);
  }
}
.pid-section-content__indicators-cards article h4 {
  color: var(--pid-color-neutral-black);
}
.pid-section-content__indicators-cards article p {
  flex-grow: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  .pid-section-content__indicators-cards article p {
    font-size: var(--pid-font-size-xxxs);
  }
}
.pid-section-content__indicators-cards article p {
  color: var(--pid-color-neutral-black);
  line-height: 145%;
}

/* **** CARDS DA SEÇÃO ANALÍTICA **** */
.pid-section-content__tools-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.pid-section-content__tools-cards article {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 1px solid var(--pid-color-neutral-light);
  border-top: 4px solid var(--pid-color-neutral-light);
  background-color: var(--pid-color-neutral-white);
}
.pid-section-content__tools-cards article:hover {
  border-color: var(--pid-color-secondary-pure);
  background-color: var(--pid-color-secondary-soft);
}
.pid-section-content__tools-cards article img {
  width: 100%;
  margin-bottom: 24px;
}
.pid-section-content__tools-cards article h4 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-lg);
}
@media (max-width: 768px) {
  .pid-section-content__tools-cards article h4 {
    font-size: var(--pid-font-size-sm);
  }
}
.pid-section-content__tools-cards article h4 {
  color: var(--pid-color-neutral-black);
  margin: 0 24px 16px 24px;
  text-align: center;
}
.pid-section-content__tools-cards article p {
  flex-grow: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  .pid-section-content__tools-cards article p {
    font-size: var(--pid-font-size-xxxs);
  }
}
.pid-section-content__tools-cards article p {
  color: var(--pid-color-neutral-deep);
  line-height: 145%;
  margin: 0 24px 30px 24px;
  text-align: center;
}
.pid-section-content__tools-cards article a.pid-button-secondary {
  margin-bottom: 24px;
}

section.pid-section-numbers {
  position: relative;
  overflow: hidden;
  margin: 120px 0 0 0;
  padding-top: 40px;
  min-height: 432px;
  background-color: var(--pid-color-tertiary-pure);
  background-image: url("./assets/pid/foto-1.png"), linear-gradient(to right, var(--pid-color-tertiary-dark), var(--pid-color-tertiary-dark)), linear-gradient(to right, var(--pid-color-tertiary-dark), var(--pid-color-tertiary-dark)), linear-gradient(to right, var(--pid-color-tertiary-dark), var(--pid-color-tertiary-dark));
  background-size: auto auto, 31% 30%, 48% 30%, 37% 30%;
  background-position: bottom right calc((100vw - 1366px - 48px) / 2), right 0, right 50%, right 100%;
  background-repeat: no-repeat;
}
section.pid-section-numbers .carousel-content {
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
section.pid-section-numbers span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-lg);
}
@media (max-width: 768px) {
  section.pid-section-numbers span {
    font-size: var(--pid-font-size-sm);
  }
}
section.pid-section-numbers span {
  color: var(--pid-color-tertiary-deep);
  line-height: 115%;
  width: fit-content;
}
section.pid-section-numbers strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxxl);
  line-height: 115%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  section.pid-section-numbers strong {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: var(--pid-font-size-xl);
  }
}
section.pid-section-numbers strong {
  color: var(--pid-color-tertiary-deep);
  line-height: 115%;
  padding: 8px 16px;
  background-color: var(--pid-color-tertiary-light);
  width: fit-content;
}
section.pid-section-numbers h3 {
  display: block;
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xxxl);
}
@media (max-width: 768px) {
  section.pid-section-numbers h3 {
    font-size: var(--pid-font-size-xl);
  }
}
section.pid-section-numbers h3 {
  font-style: italic;
  color: var(--pid-color-neutral-black);
}
section.pid-section-numbers h3.small {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xxl);
}
@media (max-width: 768px) {
  section.pid-section-numbers h3.small {
    font-size: var(--pid-font-size-lg);
  }
}
section.pid-section-numbers h3.small {
  font-style: italic;
}
section.pid-section-numbers em {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  section.pid-section-numbers em {
    font-size: var(--pid-font-size-xxxs);
  }
}
section.pid-section-numbers em {
  color: var(--pid-color-neutral-deep);
}
section.pid-section-numbers .pid-section-numbers__carrossel {
  margin-bottom: 48px;
}
section.pid-section-numbers .slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}
section.pid-section-numbers .slide.active {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 24px;
  opacity: 1;
  pointer-events: auto;
}
section.pid-section-numbers .dot {
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 12px 0 0;
  border-radius: 50%;
  border: 2px solid var(--pid-color-tertiary-deep);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}
section.pid-section-numbers .dot.active {
  background-color: var(--pid-color-tertiary-deep);
}

section.pid-section-methodology {
  background-color: var(--pid-color-tertiary-soft);
  padding: 120px 0 120px 0;
}
section.pid-section-methodology h2 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xxl);
}
@media (max-width: 768px) {
  section.pid-section-methodology h2 {
    font-size: var(--pid-font-size-lg);
  }
}
section.pid-section-methodology h2 {
  color: var(--pid-color-neutral-black);
  margin-bottom: 40px;
}
section.pid-section-methodology h2 + p {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
  font-size: var(--pid-font-size-md);
  line-height: 145%;
}
@media (max-width: 768px) {
  section.pid-section-methodology h2 + p {
    font-size: var(--pid-font-size-xs);
  }
}
section.pid-section-methodology h2 + p {
  color: var(--pid-color-neutral-black);
  margin-bottom: 24px;
}
section.pid-section-methodology h2 + p + p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xs);
  line-height: 160%;
}
@media (max-width: 768px) {
  section.pid-section-methodology h2 + p + p {
    font-size: var(--pid-font-size-xxs);
  }
}
section.pid-section-methodology h2 + p + p {
  color: var(--pid-color-neutral-deep);
  margin-bottom: 40px;
}
section.pid-section-methodology article {
  border-left: 4px solid var(--pid-color-tertiary-pure);
  padding-left: 28px;
  padding-right: 8px;
  margin-bottom: 48px;
}
section.pid-section-methodology article h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-lg);
}
@media (max-width: 768px) {
  section.pid-section-methodology article h3 {
    font-size: var(--pid-font-size-sm);
  }
}
section.pid-section-methodology article h3 {
  color: var(--pid-color-neutral-black);
  margin-bottom: 12px;
}
section.pid-section-methodology article h3 + p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  section.pid-section-methodology article h3 + p {
    font-size: var(--pid-font-size-xxxs);
  }
}
section.pid-section-methodology article h3 + p {
  color: var(--pid-color-neutral-deep);
}

section.pid-section-news {
  background-color: var(--pid-color-secondary-dark);
  margin: 0;
  padding: 32px 0 32px 0;
}

.pid-section-news__column-1 {
  display: flex;
  flex-direction: row;
  gap: var(--pid-gap);
  align-items: center;
}
.pid-section-news__column-1 > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pid-section-news__column-1 > div:nth-child(2) span {
  color: var(--pid-color-secondary-light);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  letter-spacing: 1px;
  line-height: 115%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .pid-section-news__column-1 > div:nth-child(2) span {
    font-size: var(--pid-font-size-xxs);
    letter-spacing: 0;
  }
}
.pid-section-news__column-1 > div:nth-child(2) strong {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-md);
}
@media (max-width: 768px) {
  .pid-section-news__column-1 > div:nth-child(2) strong {
    font-size: var(--pid-font-size-xs);
  }
}
.pid-section-news__column-1 > div:nth-child(2) strong {
  color: var(--pid-color-neutral-white);
  line-height: 115%;
}
.pid-section-news__column-1 > div:nth-child(2) em {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  .pid-section-news__column-1 > div:nth-child(2) em {
    font-size: var(--pid-font-size-xxxs);
  }
}
.pid-section-news__column-1 > div:nth-child(2) em {
  color: var(--pid-color-neutral-white);
  line-height: 145%;
}
.pid-section-news__column-1 > div:nth-child(2) a.pid-button {
  margin-bottom: 80px;
}

.pid-section-news__column-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.pid-section-news__column-2 label {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xs);
}
@media (max-width: 768px) {
  .pid-section-news__column-2 label {
    font-size: var(--pid-font-size-xxs);
  }
}
.pid-section-news__column-2 label {
  color: var(--pid-color-neutral-white);
}

section.pid-section-about {
  background-color: var(--pid-color-primary-soft);
  padding: 80px 0 80px 0;
  background-image: url("./assets/pid/foto-2.png"), linear-gradient(to right, var(--pid-color-primary-light), var(--pid-color-primary-light)), linear-gradient(to right, var(--pid-color-primary-light), var(--pid-color-primary-light)), linear-gradient(to right, var(--pid-color-primary-light), var(--pid-color-primary-light));
  background-size: auto auto, 38% 30%, 46% 30%, 40% 30%;
  background-position: bottom right calc((100vw - 1366px - 48px) / 2), right 0, right 50%, right 100%;
  background-repeat: no-repeat;
}
section.pid-section-about h2 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xxl);
}
@media (max-width: 768px) {
  section.pid-section-about h2 {
    font-size: var(--pid-font-size-lg);
  }
}
section.pid-section-about h2 {
  font-style: italic;
  color: var(--pid-color-neutral-black);
  margin-bottom: 32px;
}
section.pid-section-about p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xs);
  line-height: 160%;
}
@media (max-width: 768px) {
  section.pid-section-about p {
    font-size: var(--pid-font-size-xxs);
  }
}
section.pid-section-about p {
  color: var(--pid-color-neutral-black);
  padding-right: 8px;
}
section.pid-section-about p strong {
  font-weight: bold;
}
section.pid-section-about p a {
  text-decoration: underline;
  color: var(--pid-color-primary-dark);
}
section.pid-section-about h2 + p {
  margin-bottom: 24px;
}
section.pid-section-about h2 + p + p {
  margin-bottom: 32px;
}
section.pid-section-about a.pid-button {
  margin-bottom: 80px;
}

footer.pid-footer {
  background-color: var(--pid-color-neutral-black);
  padding: 48px 0 48px 0;
}
footer.pid-footer .pid-container > span {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xs);
}
@media (max-width: 768px) {
  footer.pid-footer .pid-container > span {
    font-size: var(--pid-font-size-xxs);
  }
}
footer.pid-footer .pid-container > span {
  color: var(--pid-color-tertiary-pure);
  line-height: 115%;
}
footer.pid-footer h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  letter-spacing: 1px;
  line-height: 115%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  footer.pid-footer h3 {
    font-size: var(--pid-font-size-xxs);
    letter-spacing: 0;
  }
}
footer.pid-footer h3 {
  color: var(--pid-color-neutral-white);
}
footer.pid-footer ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  footer.pid-footer ul li a {
    font-size: var(--pid-font-size-xxxs);
  }
}
footer.pid-footer ul li a {
  color: var(--pid-color-neutral-medium);
  line-height: 145%;
  transition: 0.5s ease-out;
  text-decoration: none;
}
footer.pid-footer ul li a:hover {
  color: var(--pid-color-tertiary-pure);
  text-decoration: underline;
}

.pid-footer__logos {
  margin-top: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--pid-color-neutral-deep);
  margin-bottom: 48px;
  display: flex;
  flex-direction: row;
  gap: var(--pid-gap);
  justify-content: space-between;
  align-items: baseline;
}
.pid-footer__logos ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.pid-footer__logos svg.pid-facebook path, .pid-footer__logos svg.pid-youtube path, .pid-footer__logos svg.pid-linkedin path {
  transition: fill 0.5s ease-out;
}
.pid-footer__logos svg.pid-facebook:hover path, .pid-footer__logos svg.pid-youtube:hover path, .pid-footer__logos svg.pid-linkedin:hover path {
  fill: #FED16E;
}
.pid-footer__logos svg.pid-instagram path {
  transition: stroke 0.5s ease-out;
}
.pid-footer__logos svg.pid-instagram:hover path {
  stroke: #FED16E;
}

.pid-footer__menu {
  display: flex;
  flex-direction: row;
  gap: var(--pid-gap);
  justify-content: space-between;
  margin-bottom: 48px;
}
.pid-footer__menu div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pid-footer__menu div ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

section.pid-section-baseboard {
  background-color: var(--pid-color-neutral-deep);
  padding: 24px 0 24px 0;
}
section.pid-section-baseboard a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  section.pid-section-baseboard a {
    font-size: var(--pid-font-size-xxxs);
  }
}
section.pid-section-baseboard a {
  color: var(--pid-color-neutral-white);
  line-height: 145%;
  transition: all 0.5s ease-out;
  text-decoration: none;
}
section.pid-section-baseboard span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 160%;
}
@media (max-width: 768px) {
  section.pid-section-baseboard span {
    font-size: var(--pid-font-size-xxxs);
  }
}
section.pid-section-baseboard span {
  color: var(--pid-color-tertiary-pure);
  line-height: 145%;
}
section.pid-section-baseboard a:hover {
  color: var(--pid-color-tertiary-pure);
  text-decoration: underline;
}

.pid-section-baseboard__columns {
  display: flex;
  flex-direction: row;
  gap: var(--pid-gap);
  justify-content: space-between;
  align-items: center;
}
.pid-section-baseboard__columns > div:nth-child(1) {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

section.pid-section-states {
  margin: 48px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
section.pid-section-states article {
  margin-bottom: var(--margin-default);
  border-left: 1px solid var(--pid-color-neutral-light);
  padding-left: 12px;
}
section.pid-section-states h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  letter-spacing: 1px;
  line-height: 115%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  section.pid-section-states h3 {
    font-size: var(--pid-font-size-xxs);
    letter-spacing: 0;
  }
}
section.pid-section-states h3 {
  color: var(--pid-color-neutral-deep);
  margin-bottom: 24px;
}
section.pid-section-states a + h3 {
  margin-top: 24px;
}
section.pid-section-states .fmcsv-link-state {
  display: flex;
  align-items: center;
  justify-content: left;
  color: var(--pid-color-neutral-black);
  text-align: left;
  margin-top: 12px;
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-xs);
}
@media (max-width: 768px) {
  section.pid-section-states .fmcsv-link-state {
    font-size: var(--pid-font-size-xxs);
  }
}
section.pid-section-states .fmcsv-link-state {
  text-decoration: none;
}
section.pid-section-states .fmcsv-link-state img {
  border: 1px solid var(--pid-color-neutral-light);
  margin-right: 8px;
  transition: border 200ms;
  transition: border-color 0.5s ease-out;
}
section.pid-section-states .fmcsv-link-state {
  transition: color 0.5s ease-out;
}
section.pid-section-states .fmcsv-link-state:hover {
  color: var(--pid-color-secondary-dark);
  text-decoration: underline;
}
section.pid-section-states .fmcsv-link-state:hover img {
  border: 1px solid var(--pid-color-secondary-dark);
}

@media (max-width: 992px) {
  .pid-base .pid-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 993px) {
  .pid-base .pid-hide-desktop {
    display: none !important;
  }
}

@media (max-width: 992px) {
  body.pid-menu-overlay {
    height: 100vh;
    overflow-y: hidden;
  }
  header.pid-header {
    position: relative;
  }
  header.pid-header .pid-header-logo {
    flex: 1;
  }
  header.pid-header #pid-header-mobile-search-close {
    display: none;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  header.pid-header nav.pid-header-menu {
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--pid-color-neutral-white);
    padding: 12px;
    z-index: 1;
    overflow-y: scroll;
  }
  header.pid-header nav.pid-header-menu > div:nth-child(1) {
    margin-bottom: 12px;
  }
  header.pid-header nav.pid-header-menu > ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    height: auto;
  }
  header.pid-header nav.pid-header-menu > ul > li {
    position: relative;
    display: block;
    height: auto;
    cursor: default;
    width: 100%;
  }
  header.pid-header nav.pid-header-menu > ul > li > a, header.pid-header nav.pid-header-menu > ul > li > a:hover, header.pid-header nav.pid-header-menu > ul > li > a:active, header.pid-header nav.pid-header-menu > ul > li:hover > a, header.pid-header nav.pid-header-menu > ul > li:active > a {
    color: var(--pid-color-primary-pure);
    cursor: default;
    text-decoration: none;
    padding: 0 0 8px 0;
    border-bottom: 2px solid var(--pid-color-primary-pure);
    width: 100%;
  }
  header.pid-header nav.pid-header-menu > ul > li > a svg.pid-icon, header.pid-header nav.pid-header-menu > ul > li > a:hover svg.pid-icon, header.pid-header nav.pid-header-menu > ul > li > a:active svg.pid-icon, header.pid-header nav.pid-header-menu > ul > li:hover > a svg.pid-icon, header.pid-header nav.pid-header-menu > ul > li:active > a svg.pid-icon {
    display: none;
  }
  header.pid-header nav.pid-header-menu > ul > li > ul {
    position: static;
    display: flex;
    gap: 0;
    flex-direction: column;
    top: unset;
    left: unset;
    min-width: auto;
    padding: 12px 0;
    background: var(--pid-color-neutral-white);
    border: 0;
    border-radius: unset;
    box-shadow: unset;
  }
  header.pid-header nav.pid-header-menu > ul > li > ul.right {
    right: unset;
  }
  header.pid-header nav.pid-header-menu > ul > li > ul > li {
    display: block;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid var(--pid-color-neutral-light);
  }
  header.pid-header nav.pid-header-menu > ul > li > ul > li:last-child {
    border-bottom: 0;
  }
  header.pid-header nav.pid-header-menu > ul > li:first-child > ul > li:first-child {
    padding: 0;
  }
  header.pid-header nav.pid-header-menu > ul > li:hover > ul {
    gap: 0;
  }
}
@media (max-width: 992px) {
  .pid-section-main__action {
    flex-direction: column;
    gap: 8px;
  }
  .pid-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  section.pid-section-sentence {
    text-align: center;
  }
  section.pid-section-numbers {
    margin: 80px 0 0 0;
    padding-top: 20px;
    background-image: none;
    text-align: center;
  }
  section.pid-section-numbers .carousel-content {
    height: 340px;
  }
  section.pid-section-numbers strong, section.pid-section-numbers img, section.pid-section-numbers span {
    margin-right: auto;
    margin-left: auto;
  }
  .pid-section-final-image {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-left: 24px;
  }
  .pid-section-final-image img {
    max-width: fit-content;
    width: 100%;
  }
  section.pid-section-methodology {
    padding: 80px 0 80px 0;
  }
  section.pid-section-about {
    padding: 80px 0 0 0;
    background-image: none;
  }
  section.pid-section-news .pid-text-field.pid-text-field-news {
    width: 100%;
  }
  section.pid-section-news .pid-section-news__column-1 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .pid-footer__logos {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pid-footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 12px;
  }
  .pid-section-baseboard__columns {
    flex-direction: column;
    justify-content: center;
  }
  .pid-overlay .pid-overlay-content {
    max-width: 95%;
    max-height: 95%;
  }
  .pid-overlay .pid-overlay-content .pid-overlay-content-body {
    padding: 24px 12px 12px 12px;
  }
  .pid-overlay .pid-overlay-content .pid-overlay-content-body-inner {
    overflow-x: auto;
  }
  .pid-overlay .pid-overlay-content .pid-overlay-content-body-inner .pid-section-states {
    min-width: 720px;
  }
  .pid-section-content .pid-button.pid-button-vertical {
    flex-direction: row;
    width: 100%;
    height: 48px;
  }
  .pid-section-content .pid-button.pid-button-vertical.active {
    border-top-width: 0;
    border-bottom-width: 4px;
  }
  .pid-section-content__overflow-x-auto {
    overflow-x: auto;
  }
  .pid-section-content__horizontal-scroll-on-mobile {
    min-width: 920px;
  }
  .pid-section-content__header {
    flex-direction: column;
  }
  .pid-section-content__header > div {
    border-top: 0;
    flex: 0;
  }
  .pid-section-content__header > div:nth-child(1) {
    border-top: 4px solid var(--pid-color-neutral-light);
  }
  .pid-section-content__header > div:nth-child(1) > div {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--pid-color-neutral-light);
    padding-right: 0;
    padding-bottom: 24px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .pid-section-content__header > div:nth-child(2) {
    text-align: center;
    padding: 0 24px 24px;
  }
}
@media (max-width: 652px) {
  section.pid-section-main {
    background-image: url("./assets/pid/hero-main-mobile.png"), url("./assets/pid/hero-main-mobile-linhas.png");
    padding: 48px 0 240px 0;
  }
}
section.pid-territory-title {
  background-color: #ffeed6;
  padding: 20px;
  box-sizing: border-box;
  height: 130px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
section.pid-territory-title > div:nth-child(1) {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
section.pid-territory-title > div:nth-child(1) > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
section.pid-territory-title > div:nth-child(1) img.size-fmcsv-state-flag {
  width: 128px;
  max-width: 128px;
  height: auto;
  border-radius: 8px;
}
section.pid-territory-title > div:nth-child(1) h1 {
  color: var(--fmcsv-color-blue);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxl);
}
@media (max-width: 768px) {
  section.pid-territory-title > div:nth-child(1) h1 {
    font-size: var(--pid-font-size-lg);
  }
}
section.pid-territory-title > div:nth-child(1) {
  /** BREADCRUMB **/
}
section.pid-territory-title > div:nth-child(1) .fmcsv-breadcrumb {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  letter-spacing: 1px;
  line-height: 130%;
  text-transform: uppercase;
}
section.pid-territory-title > div:nth-child(1) .fmcsv-breadcrumb .item_current {
  color: var(--pid-color-neutral-deep);
}
section.pid-territory-title > div:nth-child(1) .fmcsv-breadcrumb a {
  color: var(--pid-color-neutral-deep);
  text-decoration: none;
}
section.pid-territory-title > div:nth-child(1) .fmcsv-breadcrumb a:hover {
  color: var(--pid-color-secondary-pure);
  text-decoration: underline;
}
section.pid-territory-title.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  height: 80px;
  overflow: hidden;
  padding: 11px 16px;
}
section.pid-territory-title.sticky > div:nth-child(1) {
  gap: 12px;
}
section.pid-territory-title.sticky > div:nth-child(1) img.size-fmcsv-state-flag {
  height: 58px;
  max-height: 58px;
  width: auto;
  border-radius: 4px;
}
section.pid-territory-title.sticky > div:nth-child(1) h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-md);
}
@media (max-width: 768px) {
  section.pid-territory-title.sticky > div:nth-child(1) h1 {
    font-size: var(--pid-font-size-xs);
  }
}

section.pid-territory-title.sticky ~ div.container-graficos {
  margin-top: 130px;
}

@media (max-width: 992px) {
  section.pid-territory-title {
    height: 80px;
    padding: 11px 16px;
  }
  section.pid-territory-title > div:nth-child(1) {
    gap: 12px;
  }
  section.pid-territory-title > div:nth-child(1) img.size-fmcsv-state-flag {
    height: 58px;
    max-height: 58px;
    width: auto;
    border-radius: 4px;
  }
  section.pid-territory-title > div:nth-child(1) h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: var(--pid-font-size-md);
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  section.pid-territory-title > div:nth-child(1) h1 {
    font-size: var(--pid-font-size-xs);
  }
}
@media (max-width: 992px) {
  section.pid-territory-title > div:nth-child(1) .fmcsv-breadcrumb {
    font-size: var(--pid-font-size-xxxs);
  }
  section.pid-territory-title .pid-button.pid-button-primary {
    width: 66px;
    overflow-x: hidden;
  }
  section.pid-territory-title .pid-button.pid-button-primary svg {
    flex-shrink: 0;
  }
}
.pid-menu-territory-container {
  margin-top: 20px;
  width: 220px;
  height: 95vh;
  position: sticky;
  top: 100px;
  flex-shrink: 0;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  .pid-menu-territory-container {
    width: 140px;
  }
}
@media screen and (max-width: 600px) {
  .pid-menu-territory-container {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    position: static;
    margin: 20px 0 20px 0;
  }
}
.pid-menu-territory {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
}
.pid-menu-territory a {
  width: 100%;
  height: 58px;
  background: var(--pid-color-tertiary-pure);
  border-left: 4px solid var(--pid-color-tertiary-dark);
  padding: 0 24px 0 20px;
  box-sizing: border-box;
  border-radius: 0;
  color: var(--pid-color-neutral-black);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xs);
}
@media (max-width: 768px) {
  .pid-menu-territory a {
    font-size: var(--pid-font-size-xxs);
  }
}
.pid-menu-territory a {
  line-height: 115%;
  letter-spacing: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  transition: all 0.5s ease-out;
}
.pid-menu-territory a svg.pid-icon {
  transition: stroke 0.5s ease-out;
  width: 26px;
  height: 26px;
  stroke: var(--pid-color-primary-pure);
}
.pid-menu-territory a:hover {
  color: var(--pid-color-neutral-white);
  background: var(--pid-color-secondary-pure);
  border-color: var(--pid-color-secondary-dark);
}
.pid-menu-territory a:hover svg.pid-icon {
  stroke: var(--pid-color-neutral-white);
}
.pid-menu-territory a.active {
  color: var(--pid-color-neutral-white);
  background: var(--pid-color-neutral-deep);
  border-color: var(--pid-color-neutral-black);
}
.pid-menu-territory a.active svg.pid-icon {
  stroke: var(--pid-color-neutral-white);
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  .pid-menu-territory a svg.pid-icon {
    display: none;
  }
}
/* **** BLOCOS / COMPONENTES **** */
.pid-line {
  width: 100%;
  height: 4px;
  margin: 0 0 48px 0;
  overflow-x: clip;
}
.pid-line img {
  max-width: none;
  width: fit-content;
  height: 4px;
}

.pid-line-mobile {
  width: 100%;
  height: 4px;
  display: flex;
  justify-content: center;
  margin: 0 0 48px 0;
}
.pid-line-mobile img {
  max-width: 100%;
  width: fit-content;
  height: 4px;
  overflow: clip;
}

.pid-base .pid-button {
  box-sizing: border-box;
  background: var(--pid-color-neutral-black);
  border-color: var(--pid-color-neutral-deep);
  border-style: solid;
  border-radius: 0;
  color: var(--pid-color-neutral-white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  font-size: var(--pid-font-size-xxs);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-out;
}
.pid-base .pid-button svg.pid-icon {
  width: 26px;
  height: 26px;
  stroke: var(--pid-color-tertiary-pure);
}
.pid-base .pid-button:hover, .pid-base .pid-button:active {
  background: var(--pid-color-secondary-pure);
  border-color: var(--pid-color-secondary-dark);
}
.pid-base .pid-button:hover svg.pid-icon, .pid-base .pid-button:active svg.pid-icon {
  stroke: var(--pid-color-secondary-soft);
}
.pid-base .pid-button.active {
  color: var(--pid-color-neutral-black);
  background: var(--pid-color-neutral-white);
  border-color: var(--pid-color-secondary-dark);
}
.pid-base .pid-button.active svg.pid-icon {
  stroke: var(--pid-color-primary-pure);
}

.pid-button.pid-button-primary {
  height: 46px;
  border-left-width: 8px;
  padding-left: 16px;
  padding-right: 24px;
  justify-content: flex-start;
  width: fit-content;
}

.pid-button.pid-button-primary.pid-button-primary-icon {
  height: 58px;
  gap: 16px;
}

.pid-button.pid-button-vertical {
  width: 88px;
  height: 148px;
  border-top-width: 4px;
  gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pid-button.pid-button-icon {
  width: 72px;
  height: 72px;
  border-bottom-width: 8px;
  justify-content: center;
}

.pid-button-secondary {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  text-decoration: none !important;
}
.pid-button-secondary div, .pid-button-secondary svg.pid-icon {
  transition: background-color 0.5s ease-out, color 0.5s ease-out, border-color 0.5s ease-out;
}
.pid-button-secondary:hover div, .pid-button-secondary:active div {
  background: var(--pid-color-secondary-pure);
  border-color: var(--pid-color-secondary-dark);
}
.pid-button-secondary:hover div svg.pid-icon, .pid-button-secondary:active div svg.pid-icon {
  stroke: var(--pid-color-secondary-soft);
}
.pid-button-secondary div {
  box-sizing: border-box;
  background: var(--pid-color-neutral-black);
  border-color: var(--pid-color-neutral-deep);
  border-left: 4px solid var(--pid-color-neutral-deep);
  padding: 4px;
  border-radius: 0;
  display: flex;
  height: 100%;
}
.pid-button-secondary div svg.pid-icon {
  width: 26px;
  height: 26px;
  stroke: var(--pid-color-tertiary-pure);
}
.pid-button-secondary span {
  display: block;
  height: 100%;
  width: 100%;
  color: var(--pid-color-neutral-black);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  font-size: var(--pid-font-size-xxxs);
  text-decoration: none !important;
  border: 0;
  outline: 0;
  padding: 0 12px;
  line-height: 34px;
}

.pid-base input.pid-button {
  border-radius: 0 !important;
  padding: inherit;
  border-color: inherit !important;
}

label.pid-text-field-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  letter-spacing: 1px;
  line-height: 115%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  label.pid-text-field-label {
    font-size: var(--pid-font-size-xxs);
    letter-spacing: 0;
  }
}
label.pid-text-field-label {
  margin-bottom: 12px;
  display: block;
}

.pid-text-field {
  position: relative;
  min-height: 40px;
  min-width: 300px;
}
.pid-text-field input[type=submit] {
  cursor: pointer;
}
.pid-text-field input[type=text] {
  border-radius: 0 !important;
  height: 100%;
  width: 100%;
  padding: 0 24px 0 54px !important;
  border-color: var(--pid-color-neutral-light) !important;
  border-style: solid;
  border-width: 1px 1px 1px 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  line-height: 145%;
  color: var(--pid-color-neutral-deep) !important;
  outline: 0;
}
.pid-text-field input[type=text]::placeholder {
  color: var(--pid-color-neutral-deep);
}
.pid-text-field input[type=text] {
  transition: all 0.5s ease-out;
}
.pid-text-field input[type=text]:hover::placeholder, .pid-text-field input[type=text]:focus::placeholder, .pid-text-field input[type=text]:active::placeholder {
  color: var(--pid-color-neutral-black);
}
.pid-text-field input[type=text]:hover, .pid-text-field input[type=text]:focus, .pid-text-field input[type=text]:active {
  border-color: var(--pid-color-neutral-deep) !important;
  color: var(--pid-color-neutral-black) !important;
}
.pid-text-field svg {
  position: absolute;
  height: 26px;
  width: 26px;
  top: calc((100% - 26px) / 2);
  left: 16px;
  stroke: var(--pid-color-secondary-pure);
}

.pid-text-field.pid-text-field-search input {
  height: 58px;
  width: 348px;
}

.pid-text-field.pid-text-field-territory input {
  height: 58px;
  width: 100%;
}

.pid-text-field.pid-text-field-search-overlay {
  height: 50px;
  width: calc(100% - 16px);
}
.pid-text-field.pid-text-field-search-overlay input[type=text] {
  padding-right: 120px !important;
}
.pid-text-field.pid-text-field-search-overlay .pid-button {
  position: absolute;
  right: 2px;
  top: 2px;
}

.pid-text-field.pid-text-field-search-header-mobile {
  height: 50px;
  width: 100%;
}
.pid-text-field.pid-text-field-search-header-mobile input[type=text] {
  padding-right: 80px !important;
}
.pid-text-field.pid-text-field-search-header-mobile .pid-button {
  position: absolute;
  right: 2px;
  top: 2px;
}

.pid-text-field.pid-text-field-news {
  height: 50px;
  width: 452px;
}
.pid-text-field.pid-text-field-news input[type=text] {
  padding-right: 120px !important;
}
.pid-text-field.pid-text-field-news .pid-button {
  position: absolute;
  right: 2px;
  top: 2px;
}

.autoComplete_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.autoComplete_wrapper > ul {
  position: absolute;
  max-height: 226px;
  overflow-y: scroll;
  scrollbar-color: var(--pid-color-secondary-dark) var(--pid-color-neutral-light);
  scrollbar-width: thin;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0 0 0 0;
  border-radius: 4px;
  background-color: var(--pid-color-neutral-white);
  border-bottom: 1px solid var(--pid-color-neutral-light);
  z-index: 1000;
  outline: none;
}
.autoComplete_wrapper > ul .no_result {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  color: var(--pid-color-neutral-black);
  padding: 12px;
}

.autoComplete_wrapper > ul > li {
  padding: 10px 20px;
  list-style: none;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--pid-font-size-xxs);
  color: var(--pid-color-neutral-black);
  border-left: 4px solid var(--pid-color-neutral-light);
  background-color: rgb(255, 255, 255);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.autoComplete_wrapper > ul > li[aria-selected=true], .autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: var(--pid-color-neutral-soft);
  border-left: 4px solid var(--pid-color-secondary-dark);
  color: var(--pid-color-neutral-black);
}
.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  font-weight: bold;
}

.pid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-color: rgba(30, 29, 54, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pid-overlay.overlay-visible {
  opacity: 1;
  visibility: visible;
}

.pid-overlay .pid-overlay-content {
  background-color: var(--pid-color-neutral-white);
  width: 1116px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
}
.pid-overlay .pid-overlay-content section.pid-section-states {
  margin: 0;
}
.pid-overlay .pid-overlay-content .pid-overlay-content-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  border-left: 8px solid var(--pid-color-tertiary-dark);
  background-color: var(--pid-color-tertiary-pure);
}
.pid-overlay .pid-overlay-content .pid-overlay-content-header h1 {
  flex: 1;
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--pid-font-size-lg);
}
@media (max-width: 768px) {
  .pid-overlay .pid-overlay-content .pid-overlay-content-header h1 {
    font-size: var(--pid-font-size-sm);
  }
}
.pid-overlay .pid-overlay-content .pid-overlay-content-header h1 {
  padding-left: 24px;
}
.pid-overlay .pid-overlay-content .pid-overlay-content-body {
  padding: 32px;
  min-height: 400px;
}

/* Esta classe será adicionada ao <body> quando o overlay estiver aberto. */
/* **** EXTRAS **** */
.pid-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  fill: none;
}

/*# sourceMappingURL=style-piemdados.css.map */
