@font-face {
  font-family: "Fonte1";
  src: url(../fonts/FP01.ttf);
}
@font-face {
  font-family: "Fonte2";
  src: url(../fonts/FP02.ttf);
}
:root {
  --cor1: #39b54a;
  --cor1-70: rgba(57,181,74,0.7);
  --cor1-50: rgba(57,181,74,0.5);
  --cor1-30: rgba(57,181,74,0.3);
  --cor1-10: rgba(57,181,74,0.1);
  --cor2: #000000;
  --cor2-70: rgba(0,0,0,0.7);
  --cor2-50: rgba(0,0,0,0.5);
  --cor2-30: rgba(0,0,0,0.3);
  --bg-site: #f6f6f6;
  --back-claro: #f8f8f8;
  --back-claro-hover: #f2f2f2;
  --font1: "Fonte1","sans-serif";
  --font2: "Fonte2","sans-serif";
  --fontIcone: "Line Awesome Free";
  --verde: #39b54a;
  --verde-hover: rgb(27, 151, 44);
  --vermelho: #dc0926;
  --vermelho-escuro: #8b0000;
  --preto: #000000;
  --cinza1: #ccc;
  --cinza2: #8e9196;
  --cinza3: #777;
  --borda-clara: #e2e2e2;
  --borda-larga: 5px solid #e7e7e7;
  --borda-tabela: 1px solid #ededed;
  --titulo-escuro: #221F1F;
  --titulo-escuro2: #3e5363;
  --titulo-claro: #BBBBBB;
  --transition: .3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font1);
}

::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none !important;
}

::selection {
  background: var(--cor1);
  color: #fff;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg-site);
}

body.menu-ativo {
  height: 100vh;
  overflow: hidden;
}

main {
  max-width: 1130px !important;
  margin: auto;
  min-height: calc(100vh - 131px - 114px - 2rem);
  border-radius: 0.25rem;
  bottom: 0;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  main {
    width: 100%;
    max-width: 100vw;
    padding: 1rem 0;
    border: none;
  }
}

/* LINHAS E COLUNAS */
.linha {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.linha > .coluna {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 2.5rem;
  gap: 1rem;
}
.linha > .coluna .header {
  width: 100%;
  display: flex;
  align-items: center;
  color: #221F1F;
  text-transform: uppercase;
  border-bottom: solid 1px #DDDDDD;
}
.linha > .coluna .header .tit {
  display: flex;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.15rem !important;
  border-bottom: solid var(--verde) 0.25rem;
  padding: 0;
  white-space: nowrap;
}
.linha > .coluna .header .tit-2,
.linha > .coluna .header .tit-grupo {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cor1);
  white-space: nowrap;
}
.linha > .coluna .header .tit-3 {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}
.linha > .coluna .header .tit-grupo {
  font-size: 1.5rem;
}
.linha > .coluna .header .img {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}
.linha > .coluna .header .img img {
  max-width: 100%;
  max-height: 100%;
}
.linha > .coluna .header a {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--preto);
  transition: 0.3s;
}
.linha > .coluna .header a:hover {
  text-decoration: none;
  color: var(--verde);
}
.linha > .coluna .header .info {
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-style: italic;
  color: var(--cz3);
}
.linha > .coluna .header .botoes {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.linha > .coluna .header .botoes button,
.linha > .coluna .header .botoes a {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0.15rem;
  border-radius: var(--border-radius);
  border: none;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}
.linha > .coluna .header .botoes button::before,
.linha > .coluna .header .botoes a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--fonte-icone);
  font-size: 20px;
  font-weight: 900;
  color: var(--cz3);
  transition: var(--transition);
}
.linha > .coluna .header .botoes button i,
.linha > .coluna .header .botoes a i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 20px;
}
.linha > .coluna .header .botoes button i:before,
.linha > .coluna .header .botoes a i:before {
  color: var(--cz3);
  transition: var(--transition);
}
.linha > .coluna .header .botoes button:hover::before,
.linha > .coluna .header .botoes a:hover::before {
  color: var(--cz4);
}
.linha > .coluna .header .botoes button:hover i::before,
.linha > .coluna .header .botoes a:hover i::before {
  color: var(--cz4);
}
.linha > .coluna .header .botao {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border: solid 1px var(--cor1);
  padding: 0.4rem 0.5rem;
  border-radius: 0.25rem;
}
.linha > .coluna .header .botao span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cor1);
  line-height: 1;
}
@media (max-width: 991px) {
  .linha > .coluna .header .botao {
    padding: 0.3rem 0.4rem;
  }
  .linha > .coluna .header .botao span {
    font-size: 0.75rem;
  }
}
.linha > .coluna .header .botao-esq::before {
  content: "\f104";
  font-family: var(--fontIcone);
  font-weight: 900;
  width: 20px;
  display: flex;
  justify-content: center;
  font-size: 1rem;
  color: var(--cor1);
  transition: 0.3s;
}
.linha > .coluna .header .botao-esq:hover::before {
  transform: translateX(-0.2rem);
}
.linha > .coluna .header .botao-dir::after {
  content: "\f105";
  font-family: var(--fontIcone);
  font-weight: 900;
  width: 20px;
  display: flex;
  justify-content: center;
  font-size: 1rem;
  color: var(--cor1);
  transition: 0.3s;
}
.linha > .coluna .header .botao-dir:hover::after {
  transform: translateX(0.2rem);
}
.linha > .coluna.secao {
  margin: 1rem 0;
}

main > .linha {
  gap: 1.5rem;
  overflow: hidden;
}
main > .linha .coluna {
  margin: 0.75rem 0;
  padding: 1rem;
  background: #fff;
}

.linha-1 > .coluna {
  flex: 1 0 100%;
}

.linha-1-1 > .coluna:nth-of-type(1),
.linha-1-1 > .coluna:nth-of-type(2) {
  flex: 1 0 calc(50% - 1rem);
}

.linha-1-2 > .coluna:nth-of-type(1) {
  flex: 1 0 250px;
  max-width: 33%;
}
.linha-1-2 > .coluna:nth-of-type(2) {
  flex: 2 0 500px;
  max-width: 66%;
}

.linha-2-1 > .coluna:nth-of-type(1) {
  flex: 2 0 500px;
  max-width: 66%;
}
.linha-2-1 > .coluna:nth-of-type(2) {
  flex: 1 0 250px;
  max-width: 33%;
}

.linha-1-1 > .coluna {
  flex: 1 0 calc(50% - 0.5rem);
}

.linha-1-1-1 > .coluna {
  flex: 1 0 auto;
}

@media (max-width: 768px) {
  main > .linha {
    padding: 0;
  }
  main > .linha .coluna {
    margin: 0.5rem 0;
    max-width: 100%;
  }
  .linha-1,
  .linha-1-2,
  .linha-2-1,
  .linha-1-1,
  .linha-1-1-1 {
    flex: 1 0 100%;
  }
  .linha-1 > .coluna,
  .linha-1-2 > .coluna,
  .linha-2-1 > .coluna,
  .linha-1-1 > .coluna,
  .linha-1-1-1 > .coluna {
    flex: 1 0 100%;
  }
  .linha-1 > .coluna:nth-of-type(1),
  .linha-1-2 > .coluna:nth-of-type(1),
  .linha-2-1 > .coluna:nth-of-type(1),
  .linha-1-1 > .coluna:nth-of-type(1),
  .linha-1-1-1 > .coluna:nth-of-type(1) {
    flex: 1 0 100%;
  }
  .linha-1 > .coluna:nth-of-type(2),
  .linha-1-2 > .coluna:nth-of-type(2),
  .linha-2-1 > .coluna:nth-of-type(2),
  .linha-1-1 > .coluna:nth-of-type(2),
  .linha-1-1-1 > .coluna:nth-of-type(2) {
    flex: 1 0 100%;
  }
}
/* BLOCOS */
.bloco {
  position: relative;
  background: #ffffff;
  min-height: 1rem;
  border: var(--borda-cinza);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
.bloco .header {
  width: 100%;
  display: flex;
  align-items: center;
  color: #221F1F;
  text-transform: uppercase;
  border-bottom: solid 1px #DDDDDD;
}
.bloco .header .tit {
  display: flex;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.15rem !important;
  border-bottom: solid var(--verde) 0.25rem;
  padding: 0;
  white-space: nowrap;
}
.bloco .header .tit-2,
.bloco .header .tit-grupo {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cor1);
  white-space: nowrap;
}
.bloco .header .tit-3 {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}
.bloco .header .tit-grupo {
  font-size: 1.5rem;
}
.bloco .header .img {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}
.bloco .header .img img {
  max-width: 100%;
  max-height: 100%;
}
.bloco .header a {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--preto);
  transition: 0.3s;
}
.bloco .header a:hover {
  text-decoration: none;
  color: var(--verde);
}
.bloco .header .info {
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-style: italic;
  color: var(--cz3);
}
.bloco .header .botoes {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.bloco .header .botoes button,
.bloco .header .botoes a {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0.15rem;
  border-radius: var(--border-radius);
  border: none;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}
.bloco .header .botoes button::before,
.bloco .header .botoes a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--fonte-icone);
  font-size: 20px;
  font-weight: 900;
  color: var(--cz3);
  transition: var(--transition);
}
.bloco .header .botoes button i,
.bloco .header .botoes a i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 20px;
}
.bloco .header .botoes button i:before,
.bloco .header .botoes a i:before {
  color: var(--cz3);
  transition: var(--transition);
}
.bloco .header .botoes button:hover::before,
.bloco .header .botoes a:hover::before {
  color: var(--cz4);
}
.bloco .header .botoes button:hover i::before,
.bloco .header .botoes a:hover i::before {
  color: var(--cz4);
}
.bloco .header .botao {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border: solid 1px var(--cor1);
  padding: 0.4rem 0.5rem;
  border-radius: 0.25rem;
}
.bloco .header .botao span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cor1);
  line-height: 1;
}
@media (max-width: 991px) {
  .bloco .header .botao {
    padding: 0.3rem 0.4rem;
  }
  .bloco .header .botao span {
    font-size: 0.75rem;
  }
}
.bloco .header .botao-esq::before {
  content: "\f104";
  font-family: var(--fontIcone);
  font-weight: 900;
  width: 20px;
  display: flex;
  justify-content: center;
  font-size: 1rem;
  color: var(--cor1);
  transition: 0.3s;
}
.bloco .header .botao-esq:hover::before {
  transform: translateX(-0.2rem);
}
.bloco .header .botao-dir::after {
  content: "\f105";
  font-family: var(--fontIcone);
  font-weight: 900;
  width: 20px;
  display: flex;
  justify-content: center;
  font-size: 1rem;
  color: var(--cor1);
  transition: 0.3s;
}
.bloco .header .botao-dir:hover::after {
  transform: translateX(0.2rem);
}
.bloco .conteudo {
  width: 100%;
  display: block;
  padding: 1rem;
}
.bloco .footer {
  position: relative;
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  border-top: var(--borda-cinza);
  margin-top: auto;
  padding: 0 1rem;
  gap: 0.5rem;
}
.bloco .footer .info {
  position: relative;
  height: 100%;
  padding: 0 0.5rem 0 1.8rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 10px;
  font-style: italic;
  font-weight: 700;
}
.bloco .footer .info::before {
  content: "\f06a";
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  font-family: var(--fonte-icone);
  font-size: 22px;
  font-style: normal;
  transform: translateY(-50%);
}
.bloco .footer .alerta {
  color: red;
}
.bloco .footer .sucesso {
  color: green;
}
.bloco .footer input {
  margin: 0 0.5rem;
}
.bloco .footer .conteudo {
  padding: 1rem 0;
}
.bloco .footer .conteudo input {
  margin: 0;
}

/* HEADER */
header {
  width: 100%;
  height: 131px;
  display: flex;
  flex-direction: column;
}
header .topo {
  width: 100%;
  padding: 5px 0;
  display: none;
}
header .header-site {
  height: 95px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1130px;
  margin: 0 auto;
}
header .header-site #logotipo {
  width: 300px;
  height: 65px;
  padding-left: 0.5rem;
  display: flex;
  align-items: center;
}
header .header-site #logotipo a img {
  height: 55px;
}
header .header-site #logotipo .la-bars,
header .header-site #logotipo .la-times {
  font-size: 2em;
  color: var(--cor1);
  cursor: pointer;
  padding-right: 0.5rem;
}
header .header-site #logotipo .la-bars,
header .header-site #logotipo .la-times {
  display: none;
}
header .header-site #links-sociais {
  width: 50%;
  height: 65px;
  padding: 0 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
header .header-site #links-sociais a {
  position: relative;
  width: 40px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-site #links-sociais a i {
  font-size: 22px;
  color: var(--cor2);
  transition: 0.3s;
}
header .header-site #links-sociais a:hover i {
  transform: scale(1.2) rotateY(360deg);
  color: var(--cor1);
}
header .header-site #menu {
  position: relative;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0;
  padding-left: 0.5rem;
}
header .header-site #menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 100%;
  background: var(--cor1);
  z-index: -1;
}
header .header-site #menu li {
  width: auto;
  list-style: none;
}
header .header-site #menu li a {
  height: 30px;
  padding: 0 0.5rem;
  font-family: var(--font1);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.25s;
}
header .header-site #menu li a:hover {
  color: #221F1F;
}
header #noticias-loop-menu {
  position: relative;
  display: flex;
  height: 35px;
  border-top: solid 1px #fff;
  overflow: hidden;
}
header #noticias-loop-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 100%;
  background: var(--cor2);
  z-index: -1;
}
header #noticias-loop-menu .box-loop {
  min-width: fit-content;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.5rem;
}
header #noticias-loop-menu .box-loop li {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 auto;
  list-style: none;
  gap: 0.75rem;
}
header #noticias-loop-menu .box-loop li .sep {
  background: var(--verde);
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
header #noticias-loop-menu .box-loop li a {
  position: relative;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
header #noticias-loop-menu .box-loop li a:hover {
  color: #fff;
  text-shadow: 0 0 0 #fff;
}
header #noticias-loop-menu .box-loop li .link-social {
  color: var(--verde);
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}
header #noticias-loop-menu .box-loop li .link-social i {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400 !important;
  margin-right: 0.15rem;
}
header #noticias-loop-menu .box-loop li .link-social:hover {
  color: #fff;
  text-shadow: none;
}

body.header-sticky {
  padding-top: 131px;
}
body.header-sticky header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: #ffffff;
  animation: headerSticky 0.3s linear;
}
@keyframes headerSticky {
  0% {
    top: -131px;
  }
  100% {
    top: 0;
  }
}

body.header-remove-sticky header {
  top: -131px;
  animation: headerRemoveSticky 0.3s linear !important;
}
@keyframes headerRemoveSticky {
  0% {
    top: 0;
  }
  100% {
    top: -131px;
  }
}

@media (max-width: 991px) {
  header {
    height: 101px;
  }
  header .container .header-site {
    width: 100%;
    height: 65px;
  }
  header .container .header-site #logotipo {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  header .container .header-site #logotipo a {
    display: flex;
    align-items: center;
  }
  header .container .header-site #logotipo a img {
    height: 50px;
  }
  header .container .header-site #logotipo .la-bars {
    display: block;
  }
  header .container .header-site #links-sociais {
    visibility: hidden;
    display: none;
  }
  header .container .header-site #menu {
    visibility: hidden;
    display: none;
    padding-top: 20px;
  }
  header .container .header-site #menu li {
    width: 100%;
  }
  body.header-sticky {
    padding-top: 101px;
  }
  body.header-sticky .container .header-site {
    max-width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9000;
    background: #FFF;
    animation: headerSticky 0.3s linear;
  }
  @keyframes headerSticky {
    0% {
      top: -101px;
    }
    100% {
      top: 0;
    }
  }
  body.header-sticky body.header-remove-sticky .header-site {
    top: 0;
    animation: headerRemoveSticky 0.3s linear;
  }
  @keyframes headerRemoveSticky {
    0% {
      top: 0;
    }
    100% {
      top: -101px;
    }
  }
  header.ativo .container .header-site {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 10000;
    background: #fff;
    align-content: flex-start;
    overflow: hidden;
  }
  header.ativo .container .header-site #logotipo .la-bars {
    display: none;
  }
  header.ativo .container .header-site #logotipo .la-times {
    display: block;
  }
  header.ativo .container .header-site #links-sociais {
    visibility: visible;
    display: flex;
    width: 100%;
    height: 35px;
    align-items: center;
    justify-content: space-around;
    background: #ffffff;
    border-top: solid 2px var(--cor1);
  }
  header.ativo .container .header-site #links-sociais a {
    width: 40px;
    height: 40px;
  }
  header.ativo .container .header-site #links-sociais a i {
    font-size: 17px;
  }
  header.ativo .container .header-site #menu {
    visibility: visible;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: calc(100vh - 11px);
    overflow-y: scroll;
    background: #ffffff;
    border-top: 2px solid var(--cor1);
  }
  header.ativo .container .header-site #menu li a {
    padding: 1.2rem 0.5rem;
    color: var(--cor1);
    border-bottom: 1px solid #e7e7e7;
  }
}
#footer {
  position: relative;
  width: 100%;
  padding: 15px 0;
  background: var(--cor1);
  border-top: 2px solid #000;
}
#footer .container {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
#footer .container .logo {
  width: 100px;
  height: 100px;
  background: url(../img/logo_pe-f-verde.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100px;
  display: flex;
  margin-bottom: 0.5rem;
}
#footer .container .rodape {
  font-family: var(--font1);
  color: var(--cor2);
  font-size: 0.85rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.rodape {
  width: 100%;
  display: flex;
  margin-top: 1rem;
}

/* PROPAGANDA */
.prop {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("../img/back/prop.png");
  background-position: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.prop .header {
  width: 100%;
  height: 20px;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prop a {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.prop a img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.prop .footer {
  width: 100%;
  height: 10px;
}

.prop-300x250 {
  height: 280px;
}
.prop-300x250 a {
  width: 300px;
  height: 250px;
}

.prop-728x90 {
  height: 120px;
}
.prop-728x90 a {
  width: 728px;
  height: 90px;
}

/* CLASSES GLOBAIS */
.top-sticky {
  position: sticky !important;
  top: 0 !important;
}

.glo-pagina-titulo {
  width: 100%;
  padding: 0 0.5rem 1rem;
  margin: 0;
  font-family: var(--font1);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--cor2);
  align-self: start;
}
.glo-pagina-titulo > i {
  margin-right: 5px;
  color: var(--cor1);
}
.glo-pagina-titulo span {
  font-family: var(--font1);
  font-size: 2rem;
  color: #BBBBBB;
}
.glo-pagina-titulo span i {
  color: #BBBBBB;
  font-size: 1.7rem;
}

@media (max-width: 480px) {
  .glo-pagina-titulo {
    width: calc(100% - 10px);
    margin: 5px;
    font-size: 2rem;
  }
  .glo-pagina-titulo span {
    font-size: 1.5rem;
  }
}
.glo-botao {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: var(--verde);
  text-transform: uppercase;
  color: #fff;
  border-radius: 0.25rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}
.glo-botao.remove-botao {
  opacity: 0;
  transform: translateY(15px);
  visibility: hidden;
  transition: 0.3s;
}
.glo-botao:hover {
  background: var(--verde-hover);
}
.glo-botao::after {
  font-family: var(--fontIcone);
  font-weight: 900;
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  transition: 0.3s;
}
@media (max-width: 867px) {
  .glo-botao {
    margin: 0 auto;
  }
}

.glo-bt-mais {
  justify-content: flex-end;
  margin: 0 auto;
  font-size: 1rem;
}
.glo-bt-mais::after {
  content: "\f078";
}
.glo-bt-mais:hover::after {
  animation: bt-mais 1s ease-in-out infinite;
}

@keyframes bt-mais {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0.2rem);
  }
  75% {
    transform: translateY(-0.2rem);
  }
}
.glo-bt-mais-dir {
  justify-content: flex-end;
  margin-left: auto;
}
.glo-bt-mais-dir::after {
  content: "\f054";
}
.glo-bt-mais-dir:hover::after {
  animation: bt-mais-dir 1s ease-in-out infinite;
}

@keyframes bt-mais-dir {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0.2rem);
  }
  75% {
    transform: translateX(-0.2rem);
  }
}
.glo-compartilhar-sociais {
  display: flex;
  gap: 0.25rem;
}
.glo-compartilhar-sociais a {
  text-decoration: none !important;
}
.glo-compartilhar-sociais a i {
  width: 35px;
  height: 35px;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  transition: 0.3s;
}
.glo-compartilhar-sociais a:hover .fa-facebook {
  color: #3b5999;
}
.glo-compartilhar-sociais a:hover .fa-twitter {
  color: #55acee;
}
.glo-compartilhar-sociais a:hover .fa-whatsapp {
  color: #25D366;
}

.botoes-linha {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.botoes-linha a {
  font-size: 0.7rem;
  padding: 0.3rem 0.4rem;
  border-radius: 0.2rem;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px !important;
  height: 10px !important;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  transform: translate(-5px, -5px) rotate(45deg);
  pointer-events: none;
  z-index: 9999;
}

[data-tooltip]:after {
  content: attr(data-tooltip);
  height: 28px;
  padding: 0 0.5rem;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  border-radius: 0.15rem;
  background-color: #000;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
}

[data-tooltip].sup::before {
  bottom: -20px !important;
}

[data-tooltip].sup::after {
  bottom: -38px !important;
}

[data-tooltip].inf::before {
  top: -10px !important;
}

[data-tooltip].inf::after {
  top: -38px !important;
}

[data-tooltip].dir::after {
  right: 0 !important;
}

[data-tooltip].tooltip-ativo::before,
[data-tooltip].tooltip-ativo::after {
  visibility: visible;
  opacity: 1;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.p-0 {
  padding: 0 !important;
}

.w100 {
  width: 100% !important;
}

.flex {
  display: flex !important;
}

.flex-coluna {
  flex-direction: column !important;
}

.flex-coluna-reversa {
  display: flex;
  flex-direction: column-reverse !important;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.border-none {
  border: none !important;
}

.mobile-flex,
.mobile-block {
  display: none !important;
}

.desktop-flex {
  display: flex !important;
}

.desktop-block {
  display: block !important;
}

@media (max-width: 768px) {
  .mobile-flex {
    display: flex !important;
  }
  .mobile-block {
    display: block !important;
  }
  .desktop-flex,
  .desktop-block {
    display: none !important;
  }
  .mobile-reverso-linha {
    flex-direction: row-reverse !important;
  }
  .mobile-reverso-coluna {
    flex-direction: column-reverse !important;
  }
  .p-0-mobile {
    padding: 0 !important;
  }
}

/*# sourceMappingURL=global.css.map */
