.kc-bt {
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in;
  display: flex;
  width: fit-content;
  border-radius: 100px;
  background-color: #312783;
  color: #fff;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  outline: none;
}
.kc-bt:hover {
  background-color: rgb(85.6, 71.6, 200.4);
  transition: all 0.3s ease;
}
.kc-bt {
  font-size: 12px;
  text-transform: uppercase;
}
.kc-bt:hover {
  background-color: #FDC411;
  color: #312783;
}

.kc-bt-atencao {
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in;
  display: flex;
  width: fit-content;
  border-radius: 100px;
  background-color: #312783;
  color: #fff;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  outline: none;
}
.kc-bt-atencao:hover {
  background-color: rgb(85.6, 71.6, 200.4);
  transition: all 0.3s ease;
}
.kc-bt-atencao {
  font-size: 12px;
  text-transform: uppercase;
  background-color: #FDC411;
  color: #000;
}
.kc-bt-atencao:hover {
  background-color: rgb(76.5, 76.5, 76.5);
  color: #fff;
}

.kc-acordeao {
  margin: 16px;
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.kc-acordeao__titulo {
  padding-bottom: 16px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  position: relative;
  display: block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.kc-acordeao__titulo::after {
  font-family: "Material Icons";
  content: "add";
  position: absolute;
  top: 0;
  right: 0;
}
.kc-acordeao__texto {
  padding-bottom: 16px;
  font-size: small;
  color: rgb(127.5, 127.5, 127.5);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.kc-acordeao[open] {
  transform: translateX(16px);
  transition: all 0.3s ease;
}
.kc-acordeao[open] summary:after {
  font-family: "Material Icons";
  content: "remove";
}

.kc-alerta {
  position: relative;
  box-sizing: border-box;
  margin: 16px;
  padding: 16px;
  background-color: rgb(204.3521126761, 243.6478873239, 228.3661971831);
  border: 1px solid rgb(40.0070422535, 178.4929577465, 124.6373239437);
  border-radius: 10px;
  color: rgb(19.4633802817, 86.8366197183, 60.635915493);
}
.kc-alerta__titulo {
  font-size: 20px;
}

.kc-pranchetas {
  box-sizing: border-box;
  margin: 16px;
  padding: 16px;
  background-color: white;
  color: rgb(12.75, 12.75, 12.75);
  border: 1px solid #cccccc;
  border-radius: 16px;
}
.kc-pranchetas__titulo {
  box-sizing: border-box;
  padding: 16px;
  font-weight: bold;
  background-color: rgb(237.15, 237.15, 237.15);
  border-radius: 16px;
  color: #000;
}

.kc-loading {
  height: 2rem;
  overflow: hidden;
  margin: 16px;
  background-color: rgb(237.15, 237.15, 237.15);
  border-radius: 16px;
}
.kc-loading__bar {
  height: 100%;
  font-size: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  background-color: #1A7451;
  color: #fff;
}

.kc-tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 16px;
}
.kc-tabs input[type=radio] {
  position: absolute;
  opacity: 0;
}
.kc-tabs input[type=radio]:checked + label {
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  top: 1px;
  color: #000;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  transition: all 0.3s ease;
}
@media screen and (max-width: 576px) {
  .kc-tabs input[type=radio]:checked + label {
    background-color: #ccc;
    border: 0;
  }
}
.kc-tabs input[type=radio]:checked + label + .kc-tabs__conteudo {
  display: block;
}
.kc-tabs label {
  box-sizing: border-box;
  order: 1;
  display: block;
  margin-right: 8px;
  cursor: pointer;
  transition: background ease 0.2s;
  user-select: none;
  padding: 4px 16px;
  background-color: rgb(237.15, 237.15, 237.15);
  font-weight: bold;
  font-size: small;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  color: rgb(127.5, 127.5, 127.5);
}
@media screen and (max-width: 576px) {
  .kc-tabs label {
    border-radius: 0px;
    border-bottom: 1px solid #ccc;
  }
  .kc-tabs label:nth-child(2) {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
.kc-tabs__conteudo {
  order: 2;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  color: #000;
}
@media screen and (max-width: 576px) {
  .kc-tabs__conteudo {
    border-radius: 0px;
    border: 0;
  }
  .kc-tabs__conteudo:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}
.kc-tabs__conteudo__titulo {
  font-size: 32px;
  color: black;
}
@media screen and (max-width: 576px) {
  .kc-tabs .kc-tabs__conteudo,
  .kc-tabs label {
    order: initial;
  }
  .kc-tabs label {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
  }
}

.kc-popover {
  position: relative;
  transition: all 0.3s ease;
}
.kc-popover::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  user-select: none;
}
.kc-popover:popover-open {
  box-sizing: border-box;
  position: fixed;
  max-width: 650px;
  min-height: 200px;
  padding: 16px;
  border-radius: 16px;
  border: 2px solid #ccc;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 576px) {
  .kc-popover:popover-open {
    max-width: 300px;
  }
}
.kc-popover [popovertargetaction=hide] {
  border: 0;
  transition: all 0.3s ease;
  position: absolute;
  cursor: pointer;
  background-color: transparent;
  top: 16px;
  right: 16px;
  border-radius: 16px;
  color: #ccc;
  font-size: 20px;
}
.kc-popover [popovertargetaction=hide]:hover {
  color: #E53935;
  transition: all 0.3s ease;
}
.kc-popover [popovertargetaction=hide]::after {
  font-family: "Material Icons";
  content: "close";
}

.kc-forms {
  border: 1px dashed #FDC411;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0.8rem;
}
.kc-forms fieldset {
  margin: 0;
  line-height: normal;
  border: 0;
  padding: 0;
  margin: 0;
}
.kc-forms input,
.kc-forms select,
.kc-forms textarea {
  display: block;
  transition: linear 200ms;
  box-sizing: border-box;
  border: none;
  width: -webkit-fill-available;
  width: -moz-available;
  background-color: #fff;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  padding: 8px;
  margin-bottom: 20px;
  outline-width: 1px;
  outline-style: solid;
  outline-color: #ccc;
  outline-offset: 4px;
}
.kc-forms input:focus,
.kc-forms select:focus,
.kc-forms textarea:focus {
  outline-style: dashed;
  outline-color: #FDC411;
  background-color: rgb(242.25, 242.25, 242.25);
}
.kc-forms input[type=checkbox], .kc-forms input[type=radio],
.kc-forms select[type=checkbox],
.kc-forms select[type=radio],
.kc-forms textarea[type=checkbox],
.kc-forms textarea[type=radio] {
  display: inline-block;
  margin-bottom: 0;
}
.kc-forms input[type=submit],
.kc-forms select[type=submit],
.kc-forms textarea[type=submit] {
  cursor: pointer;
  outline: 0;
  width: auto;
  background-color: #FDC411;
  color: #000;
  border-radius: 100px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 12px 24px;
  margin-top: 16px;
  margin-bottom: 0;
}
.kc-forms input[type=submit]:hover, .kc-forms input[type=submit]:focus,
.kc-forms select[type=submit]:hover,
.kc-forms select[type=submit]:focus,
.kc-forms textarea[type=submit]:hover,
.kc-forms textarea[type=submit]:focus {
  color: #fff;
  background-color: rgb(76.5, 76.5, 76.5);
}
.kc-forms input[type=radio], .kc-forms input[type=checkbox],
.kc-forms select[type=radio],
.kc-forms select[type=checkbox],
.kc-forms textarea[type=radio],
.kc-forms textarea[type=checkbox] {
  width: fit-content;
}
.kc-forms input[type=file],
.kc-forms select[type=file],
.kc-forms textarea[type=file] {
  outline-style: dashed;
  background-color: #fff;
}
.kc-forms input[type=file]::file-selector-button,
.kc-forms select[type=file]::file-selector-button,
.kc-forms textarea[type=file]::file-selector-button {
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  margin-right: 20px;
  border: 0px;
  background-color: #312783;
  padding: 10px 20px;
  border-radius: 4px;
  color: #fff;
}
.kc-forms textarea {
  display: block;
  height: 150px;
}
.kc-forms label {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  border-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 2px 8px;
  font-size: 16px;
  font-weight: bold;
  top: -8px;
  left: -12px;
}
.kc-forms input[type=checkbox] + label, .kc-forms input[type=radio] + label {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.kc-forms input[type=checkbox], .kc-forms input[type=radio] {
  position: relative;
  outline-width: 0;
}
.kc-forms input[type=reset] + label, .kc-forms input[type=submit] + label {
  display: none;
}

.kc-lista-equipe {
  padding: 0;
  list-style: none;
  user-select: none;
  margin: 16px;
  font-size: small;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.kc-lista-equipe a {
  text-decoration: none;
}
.kc-lista-equipe p {
  margin: 0;
  padding: 0;
}
.kc-lista-equipe__item {
  box-sizing: border-box;
  transition: all 0.3s ease-in;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-right: 0;
  padding-bottom: 16px;
  padding-left: 16px;
  border-bottom: 1px solid #ccc;
}
.kc-lista-equipe__item:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.kc-lista-equipe__item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.kc-lista-equipe__item:hover {
  background-color: rgb(242.25, 242.25, 242.25);
}
.kc-lista-equipe__perfil {
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.kc-lista-equipe__right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .kc-lista-equipe__right {
    display: none;
  }
}
.kc-lista-equipe__foto {
  width: 48px;
  height: 48px;
  border-radius: 100px;
}
.kc-lista-equipe__titulo {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.kc-lista-equipe__titulo--small {
  font-size: 12px;
}
.kc-lista-equipe__config {
  position: relative;
  width: fit-content;
}
.kc-lista-equipe__config input[type=checkbox] {
  display: none;
}
.kc-lista-equipe__config input[type=checkbox]:checked ~ .kc-lista-equipe__links {
  display: block;
}
.kc-lista-equipe__config input[type=checkbox]:checked ~ label::before {
  font-family: "Material Symbols Outlined";
  content: "close_small";
}
.kc-lista-equipe__config label {
  display: flex;
  padding: 16px 10px;
  border: none;
  cursor: pointer;
  user-select: none;
}
.kc-lista-equipe__config label::before {
  font-family: "Material Icons";
  content: "more_vert";
  font-size: 24px;
}
.kc-lista-equipe__links {
  display: none;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
  top: 50px;
  right: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgb(191.25, 191.25, 191.25);
}
.kc-lista-equipe__links a {
  text-decoration: none;
  padding: 4px 16px;
  display: block;
  font-size: small;
  color: inherit;
  transition: all 0.3s ease;
  color: rgb(114.75, 114.75, 114.75);
}
.kc-lista-equipe__links a:first-child {
  margin-top: 5px;
}
.kc-lista-equipe__links a:last-child {
  margin-bottom: 5px;
}
.kc-lista-equipe__links a:hover {
  background-color: rgb(242.25, 242.25, 242.25);
  transition: all 0.3s ease-in;
  color: #333333;
  font-weight: 500;
}

.kc-dropdown {
  position: relative;
  width: fit-content;
  z-index: 2;
}
.kc-dropdown input[type=checkbox] {
  display: none;
}
.kc-dropdown input[type=checkbox]:checked ~ .kc-dropdown__conteudo {
  display: block;
}
.kc-dropdown label {
  display: flex;
  border: none;
  cursor: pointer;
  user-select: none;
  background-color: #312783;
  border-radius: 8px;
  color: #fff;
  padding: 10px 15px;
}
.kc-dropdown__conteudo {
  display: none;
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  top: 50px;
  left: 0;
  background-color: #fff;
  backdrop-filter: blur(10px);
  min-width: 160px;
  border-radius: 8px;
  border: 1px solid rgb(191.25, 191.25, 191.25);
}
.kc-dropdown__conteudo a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 16px;
  font-size: small;
  color: inherit;
  color: rgb(114.75, 114.75, 114.75);
}
.kc-dropdown__conteudo a:first-child {
  margin-top: 5px;
}
.kc-dropdown__conteudo a:last-child {
  margin-bottom: 5px;
}
.kc-dropdown__conteudo a:hover {
  transition: all 0.3s ease-in;
  background-color: rgb(242.25, 242.25, 242.25);
  color: #333333;
  font-weight: 500;
}

.kc-slider__bg {
  display: flex;
  align-content: center;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh !important;
  background-position: bottom center;
}
.kc-slider .center {
  box-sizing: border-box;
  padding: 16px 70px;
}
.kc-slider__titulo {
  font-size: 34px;
  line-height: normal;
}
.kc-slider__resumo {
  font-size: 20px;
}
.kc-slider {
  margin-top: 156px;
}

.kc-paginacao {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: small;
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
  margin-top: 4rem;
}
.kc-paginacao li {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .kc-paginacao li {
    margin-bottom: 10px;
  }
}
.kc-paginacao li a {
  display: block;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in;
  padding: 4px 12px;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 3px;
}
.kc-paginacao li a:hover {
  color: #000;
  background-color: #FDC411;
}
.kc-paginacao li a span {
  display: flex;
  align-items: center;
  align-content: center;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 26px;
}
.kc-paginacao .pagina-atual {
  color: #000;
  background-color: #FDC411;
}

.kc-tooltips {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.kc-tooltips:hover .kc-tooltips__conteudo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: all 0.3s ease;
}
.kc-tooltips__conteudo {
  display: block;
  min-width: 276px;
  font-weight: normal;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(16px);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  background-color: #fff;
  border-radius: 5px;
}
.kc-tooltips__titulo {
  display: block;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 16px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: rgb(237.15, 237.15, 237.15);
  color: #000;
}
.kc-tooltips__resumo {
  display: block;
  padding: 16px;
  font-size: 13px;
  color: #000;
}

body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h5 {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1, h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.rodape, .blog, .como-podemos-ajudar, .layout-sobre, .nossos-servicos, .topo, .conteudo, .cabecalho-interno {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-inline-start: 2rem;
  padding-inline-end: 2rem;
  box-sizing: border-box;
}

.center {
  max-width: var(--width);
  margin: 0 auto;
}

.conteudo .blog__conteudo {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .conteudo .blog__conteudo {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .conteudo .blog__conteudo {
    grid-template-columns: 1fr;
  }
}
.conteudo .kc-forms {
  margin-bottom: 4rem;
}
.conteudo .kc-forms fieldset {
  border: 1px dashed #FDC411;
  background-color: #fff;
  padding: 2rem !important;
  border-radius: 0.8rem;
  margin: 0;
  line-height: normal;
  border: 0;
  padding: 0;
  margin: 0;
}

.form1.radio1 {
  font-size: 0.75rem;
}

.cabecalho-interno {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: 159px;
  background-color: #FDC411;
  min-height: 150px;
  margin-bottom: 4rem;
}
.cabecalho-interno .secao {
  display: block;
  font-weight: bold;
}
.cabecalho-interno .secao a {
  text-decoration: none;
  color: #000;
}
.cabecalho-interno .titulo {
  margin: 0;
  padding: 0;
}

.topo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.topo .center {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  grid-auto-flow: column;
}
@media screen and (max-width: 768px) {
  .topo .center {
    justify-items: center;
  }
}
@media screen and (max-width: 576px) {
  .topo .center {
    justify-items: flex-start;
    grid-template-columns: 1fr auto;
  }
}
@media screen and (max-width: 768px) {
  .topo .center nav {
    order: 2;
  }
}
.topo .center .fale-conosco {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  color: #312783;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .topo .center .fale-conosco {
    order: 1;
  }
}
@media screen and (max-width: 576px) {
  .topo .center .fale-conosco {
    display: none;
  }
}
.topo .center .fale-conosco i {
  padding: 0.6rem 0.5rem;
  border-radius: 0.3rem;
  background-color: #FDC411;
  font-size: 1.2rem;
  grid-auto-flow: row;
}
.topo .center .fale-conosco aside {
  font-size: small;
}
.nossos-servicos {
  position: relative;
  padding-block-end: 8rem;
}
.nossos-servicos::before {
  position: absolute;
  top: -3.3rem;
  left: -3rem;
  width: 260px;
  height: 240px;
  content: "";
  background-image: url(../interface/bg-servicos.png);
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .nossos-servicos::before {
    top: 1.5rem;
  }
}
.nossos-servicos .center {
  position: relative;
}
.nossos-servicos__conteudo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .nossos-servicos__conteudo {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .nossos-servicos__conteudo {
    grid-template-columns: 1fr;
  }
}
.nossos-servicos__conteudo a {
  color: inherit;
  text-decoration: none;
}
.nossos-servicos__conteudo a:hover .kc-bt-atencao {
  background-color: rgb(76.5, 76.5, 76.5);
  color: #fff;
}
.nossos-servicos__conteudo article {
  background-image: url(../interface/bg-servicos-artigo.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.nossos-servicos__conteudo article:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}
.nossos-servicos__conteudo article img {
  margin: -30px -30px -10px -30px;
  width: calc(100% + 60px);
  max-width: none;
  display: block;
}
.nossos-servicos__conteudo article h3 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.375rem;
}
.nossos-servicos__conteudo article p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nossos-servicos__conteudo article .kc-bt-atencao {
  margin: 0 auto;
}

.layout-sobre {
  display: flex;
  align-items: stretch;
  min-height: 515px;
  background-image: url(../interface/bg-sobre-nos.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block-start: 2rem;
  padding-block-end: 2rem;
}
.layout-sobre a {
  color: inherit;
  text-decoration: none;
}
.layout-sobre a:hover .kc-bt {
  background-color: #FDC411;
  color: #312783;
}
.layout-sobre .center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  gap: 2rem;
  align-content: center;
  justify-items: center;
}
@media screen and (max-width: 768px) {
  .layout-sobre .center {
    grid-template-columns: 1fr;
  }
}
.layout-sobre .center article h1 {
  font-size: 4.375rem;
  line-height: 1em;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .layout-sobre .center article h1 {
    font-size: 3rem;
  }
}
.layout-sobre .center article p {
  font-size: 1.625rem;
}

.video-yt {
  width: 100%;
  max-width: 800px;
  aspect-ratio: auto;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .video-yt {
    aspect-ratio: 16/9;
  }
}
.video-yt iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.8rem;
}

.como-podemos-ajudar {
  background-image: url(../interface/bg-como-posso-ajudar.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.como-podemos-ajudar h2, .como-podemos-ajudar p {
  max-width: 470px;
  color: inherit;
  color: #fff;
}
.como-podemos-ajudar .kc-forms {
  max-width: 500px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.8rem;
  margin: 0;
}

.blog {
  padding-block-end: 8rem;
}
.blog .center {
  position: relative;
}
.blog .center::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 240px;
  content: "";
  background-image: url(../interface/bg-servicos.png);
  background-position: top left;
  background-repeat: no-repeat;
}
.blog__conteudo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .blog__conteudo {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .blog__conteudo {
    grid-template-columns: 1fr;
  }
}
.blog__conteudo article {
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.blog__conteudo article:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}
.blog__conteudo article a {
  text-decoration: none;
  color: inherit;
  position: relative;
}
.blog__conteudo article a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #312783;
  color: #fff;
  font-size: xx-small;
  text-transform: uppercase;
  padding: 0.7rem;
  box-sizing: border-box;
  margin-left: -30px;
  width: calc(100% + 60px);
}
.blog__conteudo article img {
  margin: -30px -30px -10px -30px;
  width: calc(100% + 60px);
  max-width: none;
  display: block;
  object-fit: cover;
  height: 200px;
}
.blog__conteudo article h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.375rem;
}
.blog__conteudo article p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__conteudo article time {
  margin: 0px -30px -30px -30px;
  padding: 20px 30px;
  width: calc(100% + 60px);
  border-top: 1px solid rgb(242.25, 242.25, 242.25);
  max-width: none;
  display: block;
  font-size: small;
}
.blog__conteudo article time::before {
  content: "//";
  color: #FDC411;
  margin-right: 0.5rem;
  font-weight: bolder;
}

.rodape {
  background-color: #FDC411;
  color: #312783;
}
.rodape a {
  color: inherit;
  text-decoration: none;
}
.rodape a:hover {
  color: #000;
}
.rodape ul {
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2rem;
}
@media screen and (max-width: 768px) {
  .rodape ul {
    display: grid;
  }
}
.rodape aside {
  display: flex;
  grid-gap: 0.5rem;
  justify-content: center;
}
.rodape .fa-brands {
  background-color: #312783;
  padding: 0.6rem 0.5rem;
  border-radius: 0.3rem;
  color: #fff;
  transition: all 0.3s ease-in;
}
.rodape .fa-brands:hover {
  background-color: #fff;
  color: #312783;
}
.rodape__conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 2fr;
  gap: 3rem;
  justify-items: center;
}
@media screen and (max-width: 768px) {
  .rodape__conteudo {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .rodape__conteudo {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.assinatura {
  margin-block-start: 3rem;
  text-align: center;
  font-size: small;
}

html.no-scroll {
  overflow: hidden;
}

.topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(26, 26, 29, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.navbar .menu {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  margin: 0;
}
.navbar .menu a {
  color: #3F3F3F;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
}
.navbar .menu a:hover {
  color: #FDC411;
}
.navbar .menu .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.navbar .menu .sub-menu {
  position: relative;
}
.navbar .menu .sub-menu.active > a {
  color: #FDC411;
  font-weight: bold;
}
.navbar .menu .sub-menu.active > a .arrow {
  transform: rotate(180deg);
}
.navbar .menu .sub-menu .dropdown {
  list-style: none;
  position: absolute;
  top: 200%;
  left: 0;
  background-color: #fff;
  min-width: 240px;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(26, 26, 29, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding: 0;
  font-size: 0.8rem;
}
.navbar .menu .sub-menu .dropdown li {
  border-bottom: 1px solid rgba(26, 26, 29, 0.05);
}
.navbar .menu .sub-menu .dropdown li:last-child {
  border-bottom: none;
}
.navbar .menu .sub-menu .dropdown a {
  padding: 12px 20px;
  display: block;
  font-weight: normal;
}
.navbar .menu .sub-menu .dropdown a:hover {
  background-color: #FDC411;
  color: #1A1A1D;
}
.navbar .menu .sub-menu .dropdown .sub-menu .dropdown {
  top: 0;
  left: 100%;
}
.navbar .menu .sub-menu.active > .dropdown {
  max-height: 800px;
  opacity: 1;
  overflow: visible;
}
.navbar .hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
.navbar .hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #1A1A1D;
  margin: 6px 0;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.navbar .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: #FDC411;
}
.navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #FDC411;
}
@media (max-width: 768px) {
  .navbar .hamburger {
    display: block;
  }
  .navbar .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 20px 30px;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: 0 4px 15px rgba(26, 26, 29, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    display: block;
    padding-block-start: 8rem;
    padding-block-end: 0;
  }
  .navbar .menu.active {
    right: 0;
  }
  .navbar .menu li {
    width: 100%;
    border-bottom: 1px solid rgba(26, 26, 29, 0.05);
  }
  .navbar .menu a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .navbar .menu .sub-menu .dropdown {
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding-left: 20px;
    min-width: 100%;
    overflow: hidden !important;
  }
  .navbar .menu .sub-menu.active > .dropdown {
    overflow: hidden !important;
  }
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: #F2FBF7;
  margin: 0;
  padding: 0;
  line-height: normal;
}

a {
  transition: all 0.3s ease !important;
}

img,
iframe,
object,
embed,
video {
  max-width: 100%;
}

img[width],
object[width],
embed[width],
video[width] {
  width: auto;
}

img[width][height],
object[width][height],
embed[width][height],
video[width][height] {
  height: auto;
}

img[src$=".svg"] {
  height: auto;
  max-width: none;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: normal;
  color: #312783;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}
h2 a {
  color: inherit;
  text-decoration: none;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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