@charset "UTF-8";

/*FONTES*/
@font-face {
  font-family: 'Cinzel-Regular';
  src: url('../fonts/Cinzel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel-Medium';
  src: url('../fonts/Cinzel-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel-Semibold';
  src: url('../fonts/Cinzel-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel-Bold';
  src: url('../fonts/Cinzel-Bold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel-ExtraBold';
  src: url('../fonts/Cinzel-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel-Black';
  src: url('../fonts/Cinzel-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* VARIÁVEIS GLOBAIS */
:root {
  --cinzel-regular: 'Cinzel-Regular';
  --cinzel-bold: 'Cinzel-Bold';
  --cinzel-semibold: 'Cinzel-Semibold';

  --kry-color-1: #0a3147;
  --kry-color-2: #dbdbdb;
  --kry-color-3: #146688;
  --kry-preto: #000000;
  --kry-branco: #FFFFFF;
  --kry-cinza-escuro: #424a4d;
}

body{
  font-family: var(--cinzel-regular);
  background-color: var(--kry-color-1);
  margin: 0px!important;
  padding: 0px!important;
}

strong,
b {
  font-weight: lighter;
  font-family: var(--cinzel-bold);
}

a {
  transition: all .2s linear;
  color: inherit;
  text-decoration: none;

  &:hover,
  &:active {
    color: var(--kry-color-1);
  }

  &:link,
  &:visited {
    color: inherit;
  }
}

.editor {
  a {
    color: var(--kry-color-1); !important;

    &:hover {
      text-decoration: underline !important;
    }
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--kry-color-1);
  }

  p {
    margin-bottom: 20px;
  }
}

::selection {
  background: var(--kry-cinza-escuro);
  color: var(--kry-branco);
}

::-moz-selection {
  background: var(--kry-cinza-escuro);
  color: var(--kry-branco);
}

/*LAYOUT & CONTAINERS*/
.website {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 100%!important;
  max-width: 1170px!important;
  padding: 0 !important;
}

/*COOKIES*/
.aceitar_termos {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: rgba(33, 33, 33, 0.9);
  z-index: 999999;

  a {
    color: #FFFC9E !important;

    &:hover {
      color: #38A7EB !important;
    }
  }
}

a.ctacookies {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 15px;
  border-radius: 50px;
  background-color: var(--kry-color-1);;
  color: #FFF;
  transition: all .2s linear;
  cursor: pointer;

  &:hover {
    filter: brightness(1.2);
  }
}

/*BOTÃO WHATSAPP FLUTUANTE*/
.btnwhats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  img {
    transition: all .2s linear;
  }

  &:hover {
    img {
      filter: brightness(1.2);
    }
  }
}

/*FORMULÁRIOS (Contact Form)*/
.wpcf7 {
  &-not-valid {
    background-color: #FFD2D2 !important;
  }

  &-form-control-wrap {
    display: block;
  }

  &-response-output {
    color: #FFF !important;
    border: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
  }

  form {
    &.sent .wpcf7-response-output {
      background-color: #46b450;
    }

    &.failed .wpcf7-response-output,
    &.aborted .wpcf7-response-output {
      background-color: #dc3232;
    }

    &.spam .wpcf7-response-output {
      background-color: #f56e28;
    }

    &.invalid .wpcf7-response-output,
    &.unaccepted .wpcf7-response-output {
      background-color: #ffb900;
    }
  }
}

span.wpcf7-not-valid-tip {
  position: absolute;
  right: 3px;
  top: 1px;
  font-size: 9px;
  z-index: 1;
}

.g-recaptcha {
  display: block;
  margin-bottom: 20px;
}

/*PAGINAÇÃO*/
.pagination {
  .active {
    a,
    a:hover {
      background-color: var(--kry-color-1);
      border-color: var(--kry-color-1);
    }
  }
}

.wp-pagenavi {
  span,
  a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    background-color: #DDDDDD;
  }

  span.current {
    background-color: var(--kry-color-1);
    color: #FFFFFF;
  }
}

/*POSTS*/
.postagemcompleta {
  a {
    display: inline-block;
    max-width: 200px;
    position: relative;
    top: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/*ANIMAÇÕES - LOADERS*/
.lds-ellipsis {
  div {
    background-color: var(--kry-color-1);
  }
}

/*MODAL FIX*/
.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/*HEADER - CABEÇALHO*/
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-color-1);
  padding: 15px 0px 100px 0px;
  clip-path: polygon(130% 0, 0 0, 0 80%);
  position: relative;
  z-index: 99998;
  margin-bottom: -220px;
}

.header .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .conteudo a.logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.header .conteudo a.logo:hover {
  transform: scale(0.97);
}

.header .conteudo a.logo img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.header .conteudo .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.header .conteudo .menu .itens {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.header .conteudo .menu .itens a {
  font-family: var(--cinzel-bold);
  font-size: 18px;
  color: var(--kry-branco);
  border-bottom: 3px solid transparent;
  transition: 0.2s ease-in-out;
}

.header .conteudo .menu .itens a:hover {
  color: var(--kry-color-3);
  border-color: var(--kry-color-3);
}

.header .conteudo .menu a.whatsapp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-family: var(--cinzel-semibold);
  font-size: 16px;
  color: var(--kry-branco);
}

.header .conteudo .menu a.whatsapp .icn {
  width: 100%;
  max-width: 22px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .conteudo .menu a.whatsapp .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .conteudo .menu .separador {
  width: 3px;
  height: 15px;
  background-color: var(--kry-branco);
}

/*FOOTER - RODAPÉ*/
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .contato {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--kry-branco);
}

.footer .infos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 720px;
}

.footer .infos .itens {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 720px;
}

.footer .infos .itens a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.footer .infos .itens a:hover{
  color: var(--kry-branco);
}

.footer .infos .itens a .icn {
  width: 100%;
  max-width: 22px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .infos .itens a .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer .redes-sociais {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  gap: 20px;
}

.footer .redes-sociais .itens {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}

.footer .redes-sociais a {
  width: 100%;
  max-width: 38px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-in-out;
}

.footer .redes-sociais a:hover {
  transform: translateY(-3px);
}

.footer .redes-sociais a img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer .creditos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0px 20px 0px;
}

.footer .creditos p {
  font-size: 14px;
  color: var(--kry-branco);
}

.footer .creditos a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.25s ease-in-out;
}

.footer .creditos a:hover {
  transform: translateY(-3px);
}

.footer .creditos a .icn-kry {
  width: 100%;
  max-width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -15px;
}

.footer .creditos a .icn-kry img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer h2 {
  font-family: var(--cinzel-bold);
  font-size: 32px;
  margin: 0px;
}

.footer p {
  font-family: var(--cinzel-regular);
  font-size: 16px;
  margin: 0px;
}

/*TITULO DAS PÁGINAS*/
.fx-titulo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 135px 0px 20px 0px;
  background-color: var(--kry-branco);
}

.fx-titulo h1{
  font-family: var(--cinzel-bold);
  font-size: 48px;
  margin: 0px;
  color: var(--kry-color-1);
}

/*HOME - PÁGINA INICIAL*/
.banner {
  position: relative;
}

.banner .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 700px;
  margin-bottom: -220px;
}

.banner .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 102, 136, 0.45);
  z-index: 1;
}

.banner .txt {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: auto;
  color: var(--kry-branco);
  text-align: justify;
}

.banner h1 {
  font-family: var(--cinzel-bold);
  font-size: 72px;
  margin: 0px;
  text-shadow: 0 4px 12px rgba(10, 49, 71, 1);
}

.banner.owl-carousel .owl-stage-outer,
.banner.owl-carousel .owl-stage,
.banner.owl-carousel .owl-item {
  height: 715px;
}

.fx1-home {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.fx1-home .conteudo {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.fx1-home .txt {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  color: var(--kry-branco);
  text-align: justify;
}

.fx1-home .atuacao {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--kry-branco);
  background-color: var(--kry-color-3);
  width: 100%;
  max-width: 300px;
  padding: 50px 20px 20px 20px;
  clip-path: polygon(0% 0%, 0% 100%, 600% 100%);
}

.fx1-home .atuacao a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: 0.25s ease-in-out;
}

.fx1-home .atuacao a:hover {
  transform: translateY(-3px);
}

.fx1-home .atuacao a .icn {
  width: 100%;
  max-width: 32px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-home .atuacao a .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx1-home .itens {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fx1-home .itens p {
  font-size: 12px;
  font-family: var(--cinzel-semibold);
}

.fx1-home h2 {
  font-family: var(--cinzel-bold);
  font-size: 38px;
  margin: 0px;
}

.fx1-home p {
  font-family: var(--cinzel-regular);
  font-size: 16px;
  margin: 0px;
}

.corte {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  background-color: var(--kry-color-1);
  clip-path: polygon(100% 101%, -70% 100%, 101% 0%);
  position: relative;
  z-index: 3;
  height: 200px;
  margin-top: -170px;
  margin-bottom: -215px;
  content: '';
}

.fx2-home {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 350px;
}

.fx2-home .conteudo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.fx2-home .img {
  width: 100%;
  max-width: 515px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx2-home .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  margin-bottom: -120px;
}

.fx2-home .equipe {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--kry-color-1);
  background-color: var(--kry-branco);
  width: 100%;
  max-width: 300px;
  padding: 40px 20px 20px 20px;
  min-height: 300px;
}

.fx2-home .equipe .itens {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fx2-home .equipe a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: 0.25s ease-in-out;
}

.fx2-home .equipe a:hover {
  transform: translateY(-3px);
}

.fx2-home .equipe a .icn {
  width: 100%;
  max-width: 32px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx2-home .equipe a .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx2-home .equipe p {
  font-family: var(--cinzel-semibold);
  font-size: 16px;
  margin: 0px;
}

.fx2-home h2 {
  font-family: var(--cinzel-bold);
  font-size: 38px;
  margin: 0px;
}

.fx3-home {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  padding: 80px 0px 20px 0px;
}

.fx3-home .equipe {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.fx3-home .equipe .card {
  width: 220px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: 0.25s ease-in-out;
  text-align: center;
}

.fx3-home .equipe .card:hover {
  transform: translateY(-3px);
}

.fx3-home .equipe .card a {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--kry-color-3);
}

.fx3-home .equipe .card a img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx3-home p {
  font-family: var(--cinzel-semibold);
  font-size: 20px;
  margin: 0px;

  strong{
    font-size: 18px;
  }
}

.fx3-home .owl-carousel .owl-item{
  display: flex;
  align-items: center!important;
  justify-content: center!important;
}

.corte-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  background-color: var(--kry-branco);
  clip-path: polygon(0% 0%, 110% 100%, 100% 0);
  position: relative;
  z-index: 3;
  height: 100px;
  content: '';
  margin-top: -2px;
}

/*PAGINA SOBRE*/
.page-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  padding: 20px 0px;
}

.page-sobre .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-sobre .conteudo .txt {
  width: 100%;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  text-align: justify;
  color: var(--kry-color-1);
}

.page-sobre .conteudo .img {
  width: 100%;
  max-width: 570px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-sobre .conteudo .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.page-sobre h2 {
  font-family: var(--cinzel-bold);
  font-size: 28px;
  margin: 0px;
}

.page-sobre p {
  font-family: var(--cinzel-regular);
  font-size: 16px;
  margin: 0px;
}

/*PÁGINA CONTATO*/
.page-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  background-color: var(--kry-branco);
}

.contato-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contato-form {
  flex: 1;
}

.contato-form h2 {
  font-family: var(--cinzel-bold);
  color: var(--kry-color-1);
  font-size: 2rem;
  margin-bottom: 30px;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input,
.contato-form textarea {
  font-family: var(--cinzel-regular);
  font-size: 1rem;
  padding: 14px 18px;
  border: 1px solid var(--kry-cinza-escuro);
  border-radius: 8px;
  background-color: var(--kry-branco);
  color: var(--kry-preto);
  width: 100%;
  resize: none;
  margin-bottom: 10px;
}

.contato-form textarea {
  min-height: 140px;
}

.contato-form button {
  background-color: var(--kry-color-1);
  color: var(--kry-branco);
  border: none;
  border-radius: 8px;
  font-family: var(--cinzel-semibold);
  font-size: 1rem;
  padding: 14px 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.contato-form button:hover {
  transform: translateY(-2px);
}

.contato-mapa {
  flex: 1;
}

.contato-mapa h2 {
  font-family: var(--cinzel-bold);
  color: var(--kry-color-1);
  font-size: 2rem;
  margin-bottom: 20px;
}

.contato-mapa iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/*ARCHIVE EQUIPE*/
.archive-equipe {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.archive-equipe .conteudo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.archive-equipe a {
  width: 270px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  transition: 0.25s ease-in-out;
  text-align: center;
}

.archive-equipe a:hover {
  transform: translateY(-3px);
}

.archive-equipe a .img {
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--kry-color-3);
}

.archive-equipe a .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.archive-equipe p {
  font-family: var(--cinzel-semibold);
  font-size: 20px;
  margin: 0px;
  color: var(--kry-color-1);

  strong{
    font-size: 18px;
  }
}

/*SINGLE EQUIPE*/
.single-equipe {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.single-equipe .conteudo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single-equipe .txt {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: justify;
}

.single-equipe .img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.single-equipe .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

/*ARCHIVE ATUACAO*/
.archive-atuacao{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.archive-atuacao .conteudo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.archive-atuacao .card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  width: 275px;
  height: 200px;
}

.archive-atuacao .card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.archive-atuacao .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.1)
  );
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.archive-atuacao .card p {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.archive-atuacao .card:hover img {
  transform: scale(1.08);
}

.archive-atuacao .card:hover::before {
  opacity: 0.7;
}

.archive-atuacao .card:hover p {
  transform: translateY(-4px);
  opacity: 0.95;
}

/*SINGLE-ATUACAO*/
.single-atuacao {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.single-atuacao .conteudo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single-atuacao .txt {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: justify;
}

.single-atuacao .img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.single-atuacao .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

/*PAGINA 404*/
.pg-404 {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--kry-color-1) 0%, var(--kry-color-2) 100%);
  color: var(--kry-branco);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.pg-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imagens/banner-1.jpg') center/cover no-repeat;
  opacity: 0.05;
}

.pg-404 .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pg-404 h1 {
  font-family: var(--cinzel-bold);
  font-size: 150px;
  line-height: 1;
  margin: 0;
  color: var(--kry-color-1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.pg-404 h2 {
  font-family: var(--cinzel-semibold);
  font-size: 26px;
  margin: 20px 0 40px;
  color: var(--kry-branco);
  letter-spacing: 0.5px;
}

.pg-404 .editor {
  font-family: var(--cinzel-regular);
  font-size: 18px;
  color: #d8e0f0;
  line-height: 1.6;
}

.pg-404 .editor a {
  color: var(--kry-color-1);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.pg-404 .editor a:hover::after {
  transform: scaleX(1);
}

.pg-404 .editor a:hover {
  color: var(--kry-branco);
}

/*PAGINA PADRÃO WORDPRESS*/
.page-padrao {
  background-color: var(--kry-branco);
  padding: 50px 10px;
  color: var(--kry-color-1);
  overflow: hidden;
}

.page-padrao .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.page-padrao h1,
.page-padrao h2,
.page-padrao h3 {
  font-family: var(--cinzel-semibold);
  color: var(--kry-color-1);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-padrao h1 { font-size: 42px; }
.page-padrao h2 { font-size: 30px; }
.page-padrao h3 { font-size: 22px; }

.page-padrao p {
  font-family: var(--cinzel-regular);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.page-padrao a {
  color: var(--kry-color-1);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.page-padrao a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--kry-color-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-padrao a:hover {
  color: var(--kry-color-1);
}

.page-padrao a:hover::after {
  transform: scaleX(1);
}

.page-padrao img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.page-padrao ul, 
.page-padrao ol {
  margin-left: 25px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-padrao .wp-block-button__link,
.page-padrao a.button {
  background-color: var(--kry-color-1);
  color: var(--kry-branco);
  padding: 12px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.page-padrao .wp-block-button__link:hover,
.page-padrao a.button:hover {
  background-color: var(--kry-color-1);
  transform: translateY(-2px);
}

/*BLOG*/
.blog03 {
  background: var(--kry-branco);
  padding: 30px 0px 100px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog03 .container {
  width: 100%;
  max-width: 1170px;
}

.blog03 .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.blog03 .blogsubtit {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--kry-color-1);
}

.blog03 .lista-posts {
  border-radius: 8px;
  width: 100%;
  max-width: 870px;
}

.blog03 .informacao-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.blog03 .post {
  display: flex;
  flex-direction: column;
  padding: 0 50px 30px 0;
}

.blog03 .post h2 {
  font-family: var(--cinzel-bold);
  font-size: 24px;
  color: var(--kry-color-1);
  margin: 10px 0;
}

.blog03 .post .post-cat {
  display: inline-block;
  background-color: var(--kry-color-1);
  color: #fff;
  font-family: var(--cinzel-bold);
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 5px;
  border: 2px solid transparent;
  margin: 0 5px 10px 0;
  transition: transform 0.2s ease-in-out;
  text-align: center;
}

.blog03 .post .post-cat:hover {
  transform: scale(0.95);
  background-color: #fff;
  color: var(--kry-color-1);
  border: 2px solid var(--kry-color-1);
}

.blog03 .post .postautor {
  font-family: var(--cinzel-bold);
  font-size: 13px;
  line-height: 20px;
  color: var(--kry-color-3);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--kry-color-3);
}

.blog03 .post .img {
  width: 100%;
  max-width: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}

.blog03 .post .postthumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.blog03 .post .post-resumo {
  font-family: var(--regular);
  font-size: 16px;
  color: var(--kry-color-1);
  line-height: 25px;
}

.blog03 .post .post-resumo .lermais {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
  color: var(--kry-color-1);
}

.blog03 .post a {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.blog03 .post a:hover {
  transform: scale(0.99);
}

.blog03 .post .clearfix {
  clear: both;
  border: 1px solid var(--kry-cinza-escuro);
  margin-top: 20px;
}

.blog03 .sidebar {
  width: 100%;
  max-width: 270px;
}

.blog03 .sidebar form.buscar {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.blog03 .sidebar form.buscar input[type='text'] {
  flex: 1;
  padding: 8px 15px;
  border: 1px solid var(--kry-color-1);
  border-radius: 3px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s;
  width: 100%;
  max-width: 195px;
}

.blog03 .sidebar form.buscar input[type='text']:focus {
  border-color: var(--kry-color-1);
}

.blog03 .sidebar form.buscar button#buscar {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 3px;
  background: none;
  padding: 6px;
  cursor: pointer;
  background-color: var(--kry-color-1);
}

.blog03 .sidebar form.buscar button#buscar img {
  width: 18px;
  height: auto;
}

.blog03 .sidebar .cor {
  width: 15px;
  min-height: 69px;
  background-color: var(--kry-color-1);
  margin: 0 15px 0 0;
}

.blog03 .sidebar .sidebarcategoria {
  display: flex;
  align-items: center;
  background-color: var(--kry-color-2);
  padding: 0 10px 0 0;
  margin-bottom: 12px;
  color: var(--kry-branco);
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
  min-height: 69px;
}

.blog03 .sidebar .sidebarcategoria:hover {
  transform: scale(0.95);
}

.blog03 .sidebar .sidebarcategoria .sctxt {
  font-size: 14px;
  font-family: var(--cinzel-bold);
  color: var(--kry-color-1);
  line-height: 1.2;
  flex: 1;
}

.blog03 .sidebar .sobre-autor {
  background: var(--kry-color-2);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.blog03 .sidebar .sobre-autor .sobre-frase {
  font-size: 14px;
  font-weight: 600;
  color: var(--kry-color-1);
  margin-bottom: 15px;
}

.blog03 .sidebar .sobre-autor img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 100%;
  margin-bottom: 10px;
}

.blog03 .sidebar .sobre-autor .nome-autor {
  font-size: 16px;
  font-weight: bold;
  color: var(--kry-color-1);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--kry-cinza-escuro);
  padding-bottom: 5px;
}

.blog03 .sidebar .sobre-autor p {
  font-size: 13px;
  color: var(--kry-color-1);
  line-height: 1.4;
}

.blog03 .wp-pagenavi {
  display: flex;
  justify-content: flex-start;
}

.blog03 .wp-pagenavi a,
.blog03 .wp-pagenavi span {
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid var(--kry-cinza-escuro);
  color: #8D8D8D;
  font-size: 13px;
  font-family: var(--regular);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.blog03 .wp-pagenavi a:hover {
  background: #fff;
  color: var(--kry-color-1);
}

.blog03 .wp-pagenavi .current {
  background: var(--kry-color-1);
  color: #fff;
}

.blog03 .opost {
  background: var(--kry-color-2);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 0 20px 0 0;
}

.blog03 .opost .post-categorias {
  margin-bottom: 15px;
}

.blog03 .opost .post-title {
  font-family: var(--cinzel-bold);
  font-size: 28px;
  color: var(--kry-color-1);
  margin-bottom: 15px;
}

.blog03 .opost .editor {
  font-size: 16px;
  color: var(--kry-color-1);
  line-height: 1.8;
  font-family: var(--regular);
}

.blog03 .opost .editor h2,
.blog03 .opost .editor h3,
.blog03 .opost .editor h4 {
  margin: 30px 0 15px;
  font-family: var(--cinzel-bold);
  color: var(--kry-color-1);
}

.blog03 .opost .editor p,
.blog03 .opost .editor ul,
.blog03 .opost .editor ol {
  margin-bottom: 15px;
}

.blog03 .opost .editor blockquote {
  font-style: italic;
  color: var(--kry-color-1);
  border-left: 4px solid var(--kry-color-1);
  padding-left: 15px;
  margin: 20px 0;
}

.blog03 .opost .editor img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 20px 0;
}

.blog03 .opost .editor a {
  color: var(--kry-color-1);
  text-decoration: underline;
}

.blog03 .opost .editor a:hover {
  color: var(--kry-color-1);
}

.blog03 .sugestao-titulo {
  font-size: 20px;
  font-family: var(--cinzel-bold);
  margin: 20px 0;
  color: var(--kry-color-1);
}

.blog03 .artigos-relacionados {
  justify-content: flex-start!important;
  gap: 20px;
}

.blog03 .artigos-relacionados .linkartigo {
  display: block;
  font-family: var(--cinzel-bold);
  font-size: 15px;
  color: var(--kry-color-1);
  text-decoration: none;
  margin-bottom: 30px;
  transition: transform 0.2s ease-in-out;
  width: 100%;
  max-width: 270px;
}

.blog03 .artigos-relacionados .linkartigo:hover {
  transform: scale(1.02);
}

.blog03 .artigos-relacionados .linkartigo img {
  border-radius: 6px;
  margin-bottom: 10px;
  transition: box-shadow 0.3s;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 270px;
}

.blog03 .comentarios-titulo {
  font-size: 20px;
  font-family: var(--cinzel-bold);
  color: var(--kry-color-1);
  margin: 40px 0 10px;
}

.blog03 .fundo-form {
  background-color: var(--kry-color-2);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog03 .fundo-form h3{
  color: var(--kry-color-1);
}

.blog03 .fundo-form input,
.blog03 .fundo-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid var(--kry-cinza-escuro);
  resize: none;
  width: 100%;
  max-width: 800px;
}

.blog03 .fundo-form input:focus,
.blog03 .fundo-form textarea:focus {
  border-color: var(--kry-color-1);
  outline: none;
}

.blog03 .fundo-form input[type="submit"] {
  background: var(--kry-color-1);
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.blog03 .fundo-form input[type="submit"]:hover {
  background: var(--kry-color-1);
}

.blog03 .nautor {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--kry-color-2);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  width: 100%;
  max-width: 815px;
}

.blog03 .nautor .nletra {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--kry-color-1);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cinzel-bold);
  flex-shrink: 0;
}

.blog03 .nautor .nanome {
  font-size: 15px;
  font-family: var(--cinzel-bold);
  color: var(--kry-color-3);
}

.blog03 .nautor .natxt {
  font-size: 14px;
  font-family: var(--regular);
  color: var(--kry-color-1);
  line-height: 1.6;
}

.blog03 .spacer {
  height: 20px;
}

.blog03 .clearfix {
  clear: both;
}

.blog03 .comment-form-cookies-consent {
  display: none;
  align-items: center;
  justify-content: flex-start;
}

.blog03 .comment-form-cookies-consent input {
  width: 100%;
  max-width: 30px;
  margin: 0 0 2px 0;
}

.blog03 .comment-form-cookies-consent label {
  margin: 0;
}

/*MENU*/
label.event-wrapper{
  display: none;
  z-index: 99999;
  position: relative;
}

.event-wrapper > .event-wrapper-inp {
  display: none;
}

.event-wrapper {
  font-weight: 500;
  color: var(--kry-branco);
  background-color: var(--kry-color-3);
  padding: 3px 15px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  height: 2.5rem;
  width: fit-content;
  position: relative;
  cursor: pointer;
  justify-content: space-between;
}

.arrow {
  height: 34%;
  aspect-ratio: 1;
  margin-block: auto;
  position: relative;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}

.arrow::after,
.arrow::before {
  content: "";
  position: absolute;
  background-color: var(--kry-branco);
  height: 100%;
  width: 2.5px;
  border-radius: 500px;
  transform-origin: bottom;
}

.arrow::after {
  transform: rotate(35deg) translateX(-0.5px);
}
.arrow::before {
  transform: rotate(-35deg) translateX(0.5px);
}

.event-wrapper > .event-wrapper-inp:checked + .arrow {
  transform: rotateX(180deg);
}

.menu-container {
  background-color: var(--kry-branco);
  color: var(--kry-color-3);
  border-radius: 10px;
  position: absolute;
  width: 150px;
  left: -100px;
  top: 130%;
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0% round 10px);
  transition: all 0.4s;
}

.menu-list {
  --delay: 0.4s;
  --trdelay: 0.15s;
  padding: 8px 10px;
  border-radius: inherit;
  transition: background-color 0.2s 0s;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}

.menu-list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 95%;
}

.menu-list:hover {
  background-color: rgb(223, 223, 223);
}

.event-wrapper-inp:checked ~ .menu-container {
  clip-path: inset(10% 50% 90% 50% round 10px);
}

.event-wrapper-inp:not(:checked) ~ .menu-container .menu-list {
  transform: translateY(0);
  opacity: 1;
}

.event-wrapper-inp:not(:checked) ~ .menu-container .menu-list:nth-child(1) {
  transition:
  transform 0.4s var(--delay),
  opacity 0.4s var(--delay);
}

.event-wrapper-inp:not(:checked) ~ .menu-container .menu-list:nth-child(2) {
  transition:
  transform 0.4s calc(var(--delay) + (var(--trdelay) * 1)),
  opacity 0.4s calc(var(--delay) + (var(--trdelay) * 1));
}

.event-wrapper-inp:not(:checked) ~ .menu-container .menu-list:nth-child(3) {
  transition:
  transform 0.4s calc(var(--delay) + (var(--trdelay) * 2)),
  opacity 0.4s calc(var(--delay) + (var(--trdelay) * 2));
}

.event-wrapper-inp:not(:checked) ~ .menu-container .menu-list:nth-child(4) {
  transition:
  transform 0.4s calc(var(--delay) + (var(--trdelay) * 3)),
  opacity 0.4s calc(var(--delay) + (var(--trdelay) * 3));
}

.event-wrapper-inp:not(:checked) ~ .menu-container .menu-list:nth-child(5) {
  transition:
  transform 0.4s calc(var(--delay) + (var(--trdelay) * 4)),
  opacity 0.4s calc(var(--delay) + (var(--trdelay) * 4));
}

.event-wrapper-inp:not(:checked) ~ .menu-container .menu-list:nth-child(6) {
  transition:
  transform 0.4s calc(var(--delay) + (var(--trdelay) * 5)),
  opacity 0.4s calc(var(--delay) + (var(--trdelay) * 5));
}

.bar-event-wrapper-inp {
  -webkit-appearance: none;
  display: none;
  visibility: hidden;
}

.bar {
  display: flex;
  height: 50%;
  width: 20px;
  flex-direction: column;
  gap: 3px;
}

.bar-list {
  --transform: -25%;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: var(--kry-branco);
  transition: all 0.4s;
  position: relative;
}

.event-wrapper-inp:not(:checked) ~ .bar > .top {
  transform-origin: top right;
  transform: translateY(var(--transform)) rotate(-45deg);
}

.event-wrapper-inp:not(:checked) ~ .bar > .middle {
  transform: translateX(-50%);
  opacity: 0;
}

.event-wrapper-inp:not(:checked) ~ .bar > .bottom {
  transform-origin: bottom right;
  transform: translateY(calc(var(--transform) * -1)) rotate(45deg);
}

/*RESPONSIVO*/
@media (max-width: 1200px) {
  .blog03 {
    padding: 30px 10px 10px;
  }

  .blog03 .post {
    padding: 10px;
  }

  .blog03 .sidebar {
    padding: 30px 0 !important;
  }

  .blog03 .opost {
    margin: 0;
  }
}

@media (max-width: 1025px) {
  label.event-wrapper{
    display: flex!important;
  }

  h1{
    font-size: 38px!important;
  }

  h2{
    font-size: 20px!important;
  }

  p{
    font-size: 12px!important;
  }

  .fx-titulo{
    padding: 20px 10px;
  }

  .header{
    clip-path: none;
    padding: 10px;
    margin-bottom: 0px;
  }

  .header .conteudo .menu{
    display: none;
  }

  .banner .txt{
    text-align: center;
    padding: 50px 10px;
  }

  .banner .item{
    margin: 0px;
    min-height: auto;
  }

  .banner.owl-carousel .owl-stage-outer,
  .banner.owl-carousel .owl-stage,
  .banner.owl-carousel .owl-item {
    height: auto;
  }

  .corte{
    display: none;
  }

  .corte-2{
    display: none;
  }

  .fx1-home .conteudo{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .fx1-home .txt{
    padding: 10px 10px 30px 10px;
    text-align: center;
    width: auto;
  }

  .fx1-home .atuacao{
    padding: 20px 10px;
    clip-path: none;
    max-width: none;
    width: auto;
    align-items: center;
    justify-content: center;
  }

  .fx2-home{
    height: auto;
  }

  .fx2-home .conteudo{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px 0px 10px!important;
  }

  .fx2-home .img img{
    margin: 0px;
  }

  .fx2-home .equipe{
    max-width: 100%;
    padding: 20px 10px;
    align-items: center;
    justify-content: center;
    min-height: auto;
  }

  .fx2-home .img{
    height: auto;
  }

  .fx3-home{
    padding: 20px 10px;
  }

  .footer{
    padding: 20px 10px 100px 10px;
  }

  .footer .contato{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .footer .infos{
    align-items: center;
  }

  .footer .infos .itens a{
    width: 100%;
    justify-content: center;
  }

  .footer .redes-sociais{
    align-items: center;
    gap: 10px;
  }

  .footer .creditos{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .footer .creditos p{
    text-align: center;
  }

  .page-sobre{
    padding: 20px 10px;
  }

  .page-sobre .conteudo{
    flex-direction: column;
    justify-content: center;
  }

  .page-sobre .conteudo .txt{
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .archive-equipe{
    padding: 10px;
  }

  .archive-atuacao{
    padding: 10px;
  }

  .single-equipe{
    padding: 10px;
  }

  .single-equipe .conteudo{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .single-equipe .txt{
    text-align: center;
  }

  .single-equipe{
    padding: 10px;
  }

  .single-atuacao .conteudo{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .blog03 .row{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .page-contato{
    padding: 20px 10px;
  }

  .contato-wrapper{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contato-form input, .contato-form textarea{
    max-width: 260px;
  }

  .contato-mapa{
    width: 100%;
  }

  .page-contato p{
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .btnwhats {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 769px) {
  .blog03 p {
    margin: 0;
  }

  .blog03 .wp-pagenavi {
    justify-content: center;
  }

  .blog03 .post {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog03 .post .img {
    min-width: auto;
  }

  .blog03 .post .postautor {
    border: none;
    margin-bottom: 5px;
    font-family: var(--cinzel-bold);
  }

  .blog03 .post .postthumb {
    width: 100%;
    margin-bottom: 10px;
  }

  .blog03 .post .post-resumo {
    font-size: 14px;
  }

  .blog03 .post .post-cat {
    font-size: 10px;
  }

  .blog03 h2 {
    text-align: center;
    font-size: 20px !important;
  }

  .blog03 .informacao-post {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .blog03 .sidebar {
    margin-top: 30px;
    padding: 20px;
  }

  .blog03 .sidebar .sidebarcategoria .scimg {
    width: 40px;
    height: 40px;
  }

  .blog03 .sidebar .sobre-autor .nome-autor {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.7);
    transform-origin: 0 0;
  }
}