@charset "UTF-8";

/*FONTES*/
@font-face {
  font-family: 'SplineSans-Light';
  src: url('../fonts/SplineSans-Light.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-Regular';
  src: url('../fonts/SplineSans-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-Medium';
  src: url('../fonts/SplineSans-Medium.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-SemiBold';
  src: url('../fonts/SplineSans-SemiBold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-Bold';
  src: url('../fonts/SplineSans-Bold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Square-Peg';
  src: url('../fonts/SquarePeg-Regular.ttf') format('truetype');
  font-style: normal;
}

/* VARIÁVEIS GLOBAIS */
:root {
  --spline-sans-light: 'SplineSans-Light';
  --spline-sans-regular: 'SplineSans-Regular';
  --spline-sans-medium: 'SplineSans-Medium';
  --spline-sans-semibold: 'SplineSans-SemiBold';
  --spline-sans-bold: 'SplineSans-Bold';
  --square-peg-regular: 'Square-Peg';

  --kry-azul: #0985CB;
  --kry-azul-escuro: #2D257B;
  --kry-azul-ultra-escuro: #141137;
  --kry-preto: #000000;
  --kry-branco: #FFFFFF;
  --kry-cinza: #E2E8EB;
}

body{
  font-family: var(--spline-sans-regular);
  background-color: var(--kry-azul-ultra-escuro);
  margin: 0px!important;
  padding: 0px!important;
}

strong,
b {
  font-weight: lighter;
  font-family: var(--spline-sans-bold);
}

a {
  transition: all .2s linear;
  color: inherit;

  &:hover,
  &:active {
    color: var(--kry-azul);
  }

  &:link,
  &:visited {
    color: inherit;
  }
}

.editor {
  a {
    color: var(--kry-azul-ultra-escuro); !important;

    &:hover {
      text-decoration: underline !important;
    }
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--kry-azul-ultra-escuro);
  }

  p {
    margin-bottom: 20px;
  }
}

::selection {
  background: var(--kry-azul);
  color: var(--kry-branco);
}

::-moz-selection {
  background: var(--kry-azul);
  color: var(--kry-branco);
}

/*LAYOUT & CONTAINERS*/
.website {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  padding: 0 !important;
}

.row {
  width: 100% !important;
  max-width: 1170px !important;
  margin: 0 !important;
}

[class^="col-lg-"] {
  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-azul-ultra-escuro);;
  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-azul);
      border-color: var(--kry-azul);
    }
  }
}

.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-azul);
    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-azul);
  }
}

/*MODAL FIX*/
.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/*HEADER - CABEÇALHO*/
.header {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -130px;
  z-index: 1000;
  position: relative;
}

.header .cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1170px;
}

.header .logo a {
  width: 100%;
  max-width: 145px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.header .logo a:hover {
  transform: scale(0.97);
}

.header .logo a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .menu {
  display: flex;
  width: 100%;
  max-width: 552px;
  align-items: center;
  justify-content: space-between;
}

.header .menu a {
  font-family: var(--spline-sans-regular);
  font-size: 16px;
  color: var(--kry-branco);
  border-bottom: 1px solid transparent;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}

.header .menu a:hover {
  transform: scale(0.99);
  border-color: var(--kry-azul);
  color: var(--kry-azul);
}

.header .redes {
  display: flex;
  width: 100%;
  max-width: 287px;
  align-items: center;
  justify-content: space-between;
}

.header .redes a {
  width: 100%;
  max-width: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .redes a img {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.header .redes p {
  font-family: var(--spline-sans-regular);
  font-size: 20px;
  color: var(--kry-branco);
  margin: 0;
}

.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20.5px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-icon span {
  display: block;
  height: 6px;
  background: var(--kry-branco);
  border-radius: 3px;
  transition: all 0.3s ease;
}

#menu-toggle {
  display: none;
}

/*FOOTER - RODAPE*/
.footer {
  background-color: var(--kry-branco);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  min-height: 484px;
}

.footer .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 0 30px 0 !important;
}

.footer .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 0 100px 0;
}

.footer .txt a {
  width: 100%;
  max-width: 237px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  color: var(--kry-branco);
  background-color: var(--kry-azul);
  margin: 30px 0;
  transition: transform 0.2s ease-in-out;
}

.footer .txt a:hover {
  transform: scale(0.97);
}

.footer h2 {
  font-family: var(--spline-sans-bold);
  font-size: 47px;
  margin: 0 0 10px 0;
  color: var(--kry-branco);
}

.footer h3{
  font-family: var(--square-peg-regular);
  font-size: 63px;
  color: var(--kry-branco);
  margin: 0px;
}

.footer p {
  font-family: var(--spline-sans-regular);
  font-size: 22px;
  margin: 0 0 5px 0;
  color: var(--kry-branco);
}

.footer .creditos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer .creditos p {
  font-family: var(--spline-sans-regular);
  font-size: 14px;
  margin: 0;
  color: var(--kry-branco);
}

.footer .creditos .site {
  width: 100%;
  max-width: 570px;
  display: flex;
  justify-content: flex-start;
}

.footer .creditos .desenvolvedor {
  width: 100%;
  max-width: 570px;
  display: flex;
  justify-content: flex-end;
}

.footer .creditos .desenvolvedor a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer .creditos .desenvolvedor a .icn-kry {
  width: 100%;
  max-width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .creditos .desenvolvedor a .icn-kry img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer .img {
  width: 100%;
  max-width: 895px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .img img{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  margin-top: -450px;
}

/*HEADER PÁGINAS PADRÃO*/
.header-pages {
  width: 100%;
  max-width: 1920px;
  min-height: 614px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  position: relative;
}

.header-pages::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: linear-gradient(-90deg, rgba(20, 19, 55, 0) 0%, rgba(20, 19, 55, 1) 100%);
  z-index: 1; 
}

.header-pages h1 {
  font-family: var(--spline-sans-bold);
  font-size: 60px;
  color: var(--kry-branco);
  letter-spacing: -1px;
  margin: 0;
  z-index: 1;
}

.header-pages .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
}

/*FRONT PAGE - PAGINA INICIAL*/
.banner a {
  width: 100%;
  max-width: 1920px;
  min-height: 614px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  position: relative; 
  overflow: hidden;
}

.banner a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: linear-gradient(-90deg, rgba(20, 19, 55, 0) 0%, rgba(20, 19, 55, 1) 100%);
  z-index: 1; 
}

.banner a .txt {
  width: 100%;
  max-width: 1170px;
  position: relative; 
  z-index: 2; 
}

.banner a .txt h1 {
  font-family: var(--spline-sans-bold);
  font-size: 47px;
  color: var(--kry-branco);
}

.banner a .txt h1 strong {
  color: var(--kry-azul);
}

.banner a .txt p {
  font-family: var(--spline-sans-regular);
  font-size: 22px;
  color: var(--kry-branco);
}

.banner a .txt .botao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 237px;
  margin: 0;
  font-family: var(--spline-sans-regular);
  font-size: 18px;
  text-align: center;
  padding: 10px;
  color: var(--kry-branco);
  background-color: var(--kry-azul-escuro);
}

.banner .owl-nav {
  position: absolute;
  top: 45%;
  left: 100px;
  width: 90%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.banner .owl-nav button {
  border: 4px solid var(--kry-branco) !important;
  color: #fff !important;
  font-size: 2.5rem !important;
  border-radius: 50%;
  pointer-events: all;
  transition: all 0.3s ease;
  padding: 0px 15px !important;
}

.banner .owl-nav span{
  padding: 0px 15px!important;
}

.banner .owl-prev {
  position: absolute;
  left: 20px;
}

.banner .owl-next {
  position: absolute;
  right: 20px;
}

.banner .owl-nav button:focus {
  outline: none;
}

.fx1-home {
  background-color: var(--kry-branco);
  padding: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fx1-home .owl-carousel {
  position: relative;
}

.fx1-home .owl-nav {
  position: absolute;
  bottom: 0px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.fx1-home .owl-nav button {
  background: transparent!important;
  border: 4px solid var(--kry-azul-escuro)!important;
  color: var(--kry-azul-escuro) !important;
  font-size: 25px !important;
  font-family: var(--spline-sans-bold) !important;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fx1-home .owl-nav button:hover {
  background: var(--kry-azul);
  color: var(--kry-branco);
}

.fx1-home .owl-nav button:focus {
  outline: none;
}

.fx1-home .conteudo {
  width: 100%;
  max-width: 1170px;
}

.fx1-home .conteudo .item{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.fx1-home .img {
  width: 100%;
  max-width: 570px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-home .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx1-home .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
}

.fx1-home .icones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.fx1-home .icones .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.fx1-home .icones .item .icn {
  width: 100%;
  max-width: 31px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-home .icones .item .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx1-home .botao {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fx1-home .botao a {
  width: 100%;
  max-width: 137px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--spline-sans-regular);
  font-size: 18px;
  color: var(--kry-branco);
  background-color: var(--kry-azul);
  text-decoration: none;
  padding: 10px;
  transition: transform 0.2s ease-in-out;
}

.fx1-home .botao a:hover {
  transform: scale(0.97);
}

.fx1-home h2 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  margin: 0px 0px 5px 0px;
  color: var(--kry-azul-ultra-escuro);
  letter-spacing: -1px;
}

.fx1-home p {
  font-family: var(--spline-sans-light);
  font-size: 17px;
  margin: 0px 0px 5px 0px;
  color: var(--kry-azul-ultra-escuro);
}

.fx2-home {
  background-color: var(--kry-branco);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  min-height: 614px;
}

.fx2-home .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px!important;
}

.fx2-home .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  width: 100%;
  max-width: 475px;
}

.fx2-home .img {
  width: 100%;
  max-width: 730px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.fx2-home .img img {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  margin: -65px -90px 0px 0px;
}

.fx2-home .botao {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fx2-home .botao a {
  width: 100%;
  max-width: 237px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--spline-sans-regular);
  font-size: 18px;
  color: var(--kry-branco);
  background-color: var(--kry-azul);
  text-decoration: none;
  padding: 15px;
  transition: transform 0.2s ease-in-out;
}

.fx2-home .botao a:hover {
  transform: scale(0.97);
}

.fx2-home h2 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  margin: 0px 0px 5px 0px;
  color: var(--kry-azul);
  letter-spacing: -1px;
}

.fx2-home h2 strong {
  color: var(--kry-branco);
}

.fx2-home p {
  font-family: var(--spline-sans-light);
  font-size: 17px;
  margin: 0px 0px 5px 0px;
  color: var(--kry-branco);
}

.fx3-home {
  background-color: var(--kry-branco);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx3-home .conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  padding: 0px 0px 30px 0px !important;
}

.fx3-home .img {
  width: 100%;
  max-width: 975px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -100px 0 0 -120px;
}

.fx3-home .img img {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx3-home .qualidades {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 570px;
}

.fx3-home .qualidades .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.fx3-home .qualidades .item .icn-txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.fx3-home .qualidades .item .icn-txt .icn {
  width: 100%;
  max-width: 54px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx3-home .qualidades .item .icn-txt .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx3-home h1 {
  font-family: var(--spline-sans-bold);
  font-size: 31px;
  letter-spacing: -1px;
  margin: 0 0 5px 0;
  color: var(--kry-azul-ultra-escuro);
}

.fx3-home p {
  font-family: var(--spline-sans-regular);
  font-size: 17px;
  margin: 0 0 10px 0;
  color: var(--kry-azul-ultra-escuro);
}

.fx4-home {
  background-color: var(--kry-cinza);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx4-home .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0 60px 0 !important;
}

.fx4-home .posts-blog {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 40px 0 0 0;
}

.fx4-home .posts-blog a {
  width: 100%;
  max-width: 370px;
  height: auto;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.fx4-home .posts-blog a:hover {
  transform: scale(0.97);
}

.fx4-home h1 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  margin: 0 0 10px 0;
  color: var(--kry-azul-ultra-escuro);
}

.fx4-home h2 {
  font-family: var(--spline-sans-bold);
  font-size: 21px;
  padding: 10px 0 5px 0;
  color: var(--kry-azul-ultra-escuro);
  margin: 0;
  border-top: 1px solid var(--kry-azul-ultra-escuro);
}

.fx4-home p {
  font-family: var(--spline-sans-regular);
  font-size: 15px;
  margin: 5px 0;
  color: var(--kry-azul-ultra-escuro);
}

.fx5-home {
  background-color: var(--kry-branco);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fx5-home .conteudo {
  padding: 50px 0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 1170px;
}

.fx5-home .clientes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0 0 0;
  position: relative;
}

.fx5-home .clientes .img {
  width: 270px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.fx5-home .clientes .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.fx5-home h1 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  margin: 0 5px 0 0;
  color: var(--kry-azul-ultra-escuro);
}

.fx5-home h1 strong {
  color: var(--kry-azul);
  border-bottom: 1px solid var(--kry-azul);
}

.fx5-home .owl-dots {
  position: absolute;
  top: -40px;
  left: 0;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.fx5-home .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--kry-azul-ultra-escuro)!important;
  transition: all 0.3s ease;
}

.fx5-home .owl-dot.active {
  background: var(--kry-azul)!important;
}

/*PAGINA SOBRE - QUEM SOMOS*/
.fx1-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.fx1-sobre h2 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  color: var(--kry-azul);
  margin: 0 0 10px 0;
}

.fx1-sobre h2 strong {
  color: var(--kry-azul-ultra-escuro);
}

.fx1-sobre p {
  font-family: var(--spline-sans-regular);
  font-size: 17px;
  margin: 0 0 5px 0;
  color: var(--kry-azul-ultra-escuro);
}

.fx1-sobre .conteudo {
  width: 100%;
  max-width: 1170px;
  padding: 30px 0px 20px 0px !important;
}

.fx2-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-cinza);
}

.fx2-sobre .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0px !important;
}

.fx2-sobre .card {
  width: 100%;
  max-width: 370px;
}

.fx2-sobre h2 {
  font-family: var(--spline-sans-bold);
  font-size: 34px;
  color: var(--kry-azul-escuro);
  margin: 0 0 10px 0;
}

.fx2-sobre p {
  font-family: var(--spline-sans-regular);
  font-size: 17px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0 0 5px 0;
}

.fx3-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.fx3-sobre .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 0 !important;
}

.fx3-sobre .img {
  width: 100%;
  max-width: 570px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx3-sobre .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx3-sobre h2 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0 0 20px 0;
}

.fx3-sobre h2 strong {
  color: var(--kry-azul);
}

.fx3-sobre ul {
  padding: 0 0 0 20px;
}

.fx3-sobre ul li {
  font-family: var(--spline-sans-regular);
  font-size: 17px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0 0 15px 0;
}

/*ARCHIVE SERVIÇOS*/
.archive-servicos {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  padding: 40px 0;
}

.archive-servicos .titulo {
  width: 100%;
  max-width: 1170px;
}

.archive-servicos .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 0 0 0!important;
}

.archive-servicos a.card {
  width: 100%;
  max-width: 370px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.archive-servicos a.card:hover {
  transform: scale(0.97);
}

.archive-servicos a.card .img {
  width: 370px;
  height: 259px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-servicos a.card .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.archive-servicos h1 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0;
}

.archive-servicos h1 strong {
  color: var(--kry-azul);
}

.archive-servicos h2 {
  font-family: var(--spline-sans-bold);
  font-size: 25px;
  color: var(--kry-azul-ultra-escuro);
  margin: 10px 0;
}

.archive-servicos p {
  font-family: var(--spline-sans-regular);
  font-size: 17px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0 0 5px 0;
}

/*SINGLE SERVIÇOS*/
.single-servicos {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.single-servicos h1 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  color: var(--kry-azul-ultra-escuro);
}

.single-servicos p {
  font-family: var(--spline-sans-regular);
  font-size: 17px;
  color: var(--kry-azul-ultra-escuro);
}

.single-servicos .conteudo {
  width: 100%;
  max-width: 1170px;
  padding: 30px 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.single-servicos .img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-servicos .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

/*ARCHIVE CLIENTES*/
.archive-clientes {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  padding: 40px 0;
}

.archive-clientes .titulo {
  width: 100%;
  max-width: 1170px;
}

.archive-clientes h1 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0;
}

.archive-clientes h1 strong {
  color: var(--kry-azul);
}

.archive-clientes .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 0 0 0 !important;
}

.archive-clientes .img {
  width: 270px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-clientes .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

/*PAGINA DE CONTATO*/
.fx1-contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  overflow: hidden;
}

.fx1-contato .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0px 350px 0px !important;
}

.fx1-contato .titulo {
  width: 100%;
  max-width: 1170px;
  padding: 30px 0px 0px 0px;
}

.fx1-contato h1 {
  font-family: var(--spline-sans-bold);
  font-size: 41px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0px;
}

.fx1-contato h1 strong {
  color: var(--kry-azul);
}

.fx1-contato h3 {
  font-family: var(--spline-sans-bold);
  font-size: 31px;
  color: var(--kry-azul-ultra-escuro);
  letter-spacing: -1px;
  margin: 0px;
}

.fx1-contato p {
  font-family: var(--spline-sans-regular);
  font-size: 25px;
  color: var(--kry-azul-ultra-escuro);
  margin: 0px;
}

.fx1-contato .dados {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 580px;
  gap: 25px;
}

.fx1-contato .dados .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.fx1-contato .dados .item .icn-txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
}

.fx1-contato .dados .item .icn {
  width: 100%;
  max-width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-contato .dados .item .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx1-contato .formulario{
  width: 100%;
  max-width: 470px;
  display: flex;
}

.form-contato {
  width: 470px;
}

.form-group {
  margin-bottom: 12px;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--kry-cinza);
  border-radius: 3px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.form-contato textarea {
  height: 120px;
  resize: vertical;
  resize: none;
}

.form-contato input::placeholder,
.form-contato textarea::placeholder {
  font-family: var(--spline-sans-regular);
  font-size: 13px;
  color: var(--kry-azul-ultra-escuro); 
  opacity: 1;  
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-enviar {
  font-family: var(--spline-sans-regular);
  background-color: var(--kry-azul);
  color: var(--kry-branco);
  border: none;
  padding: 10px 40px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-enviar:hover {
  background-color: var(--kry-azul-escuro);
}

.obrigatorios {
  font-size: 13px;
  color: var(--kry-azul-ultra-escuro);
}

/*PAGINA 404*/
.pg-404 {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--kry-azul-ultra-escuro) 0%, var(--kry-azul-escuro) 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.png') center/cover no-repeat;
  opacity: 0.05;
}

.pg-404 .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pg-404 h1 {
  font-family: var(--spline-sans-bold);
  font-size: 150px;
  line-height: 1;
  margin: 0;
  color: var(--kry-azul);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.pg-404 h2 {
  font-family: var(--spline-sans-semibold);
  font-size: 26px;
  margin: 20px 0 40px;
  color: var(--kry-branco);
  letter-spacing: 0.5px;
}

.pg-404 .editor {
  font-family: var(--spline-sans-regular);
  font-size: 18px;
  color: #d8e0f0;
  line-height: 1.6;
}

.pg-404 .editor a {
  color: var(--kry-azul);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.pg-404 .editor a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--kry-azul);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 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-azul-ultra-escuro);
  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(--spline-sans-semibold);
  color: var(--kry-azul-escuro);
  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(--spline-sans-regular);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.page-padrao a {
  color: var(--kry-azul);
  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-azul);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-padrao a:hover {
  color: var(--kry-azul-escuro);
}

.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-azul);
  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-azul-escuro);
  transform: translateY(-2px);
}

/*BLOG*/
.blog03 {
  background: var(--kry-branco);
  padding: 30px 0 100px;
  margin-bottom: -50px;
  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: center;
}

.blog03 .blogsubtit {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--kry-azul-ultra-escuro);
}

.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(--spline-sans-bold);
  font-size: 24px;
  color: var(--kry-azul-ultra-escuro);
  margin: 10px 0;
}

.blog03 .post .post-cat {
  display: inline-block;
  background-color: var(--kry-azul);
  color: #fff;
  font-family: var(--spline-sans-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-azul);
  border: 2px solid var(--kry-azul);
}

.blog03 .post .postautor {
  font-family: var(--regular);
  font-size: 13px;
  line-height: 20px;
  color: var(--kry-azul-ultra-escuro);
  margin-bottom: 15px;
  border-bottom: 2px solid #CBCBCB;
}

.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-azul-ultra-escuro);
  line-height: 25px;
}

.blog03 .post .post-resumo .lermais {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
  color: var(--kry-azul-ultra-escuro);
}

.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 a:hover h2 {
  color: var(--kry-azul);
}

.blog03 .post .clearfix {
  clear: both;
  border: 1px solid #CBCBCB;
  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 #ccc;
  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-azul);
}

.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-azul);
}

.blog03 .sidebar form.buscar button#buscar img {
  width: 18px;
  height: auto;
}

.blog03 .sidebar .cor {
  width: 15px;
  min-height: 69px;
  background-color: var(--kry-azul);
  margin: 0 15px 0 0;
}

.blog03 .sidebar .sidebarcategoria {
  display: flex;
  align-items: center;
  background-color: var(--kry-azul-ultra-escuro);
  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: 13px;
  font-family: var(--spline-sans-bold);
  color: var(--kry-branco);
  line-height: 1.2;
  flex: 1;
}

.blog03 .sidebar .sobre-autor {
  background: var(--kry-cinza);
  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-azul-ultra-escuro);
  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-azul-ultra-escuro);
  margin-bottom: 8px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.blog03 .sidebar .sobre-autor p {
  font-size: 13px;
  color: var(--kry-azul-ultra-escuro);
  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);
  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-azul);
}

.blog03 .wp-pagenavi .current {
  background: var(--kry-azul);
  color: #fff;
}

.blog03 .opost {
  background: var(--kry-cinza);
  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(--spline-sans-bold);
  font-size: 28px;
  color: var(--kry-azul-ultra-escuro);
  margin-bottom: 15px;
}

.blog03 .opost .editor {
  font-size: 16px;
  color: var(--kry-azul-ultra-escuro);
  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(--spline-sans-bold);
  color: var(--kry-azul-ultra-escuro);
}

.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-azul-ultra-escuro);
  border-left: 4px solid var(--kry-azul);
  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-azul);
  text-decoration: underline;
}

.blog03 .opost .editor a:hover {
  color: var(--kry-azul);
}

.blog03 .sugestao-titulo {
  font-size: 20px;
  font-family: var(--spline-sans-bold);
  margin: 20px 0;
  color: var(--kry-azul-ultra-escuro);
}

.blog03 .artigos-relacionados {
  justify-content: space-between !important;
}

.blog03 .artigos-relacionados .linkartigo {
  display: block;
  font-family: var(--spline-sans-bold);
  font-size: 15px;
  color: var(--kry-azul-ultra-escuro);
  text-decoration: none;
  margin-bottom: 30px;
  transition: transform 0.2s ease-in-out;
  width: 100%;
  max-width: 270px;
}

.blog03 .artigos-relacionados .linkartigo:hover {
  color: var(--kry-azul);
  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(--spline-sans-bold);
  color: var(--kry-azul-ultra-escuro);
  margin: 40px 0 10px;
}

.blog03 .fundo-form {
  background-color: var(--kry-cinza);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog03 .fundo-form input,
.blog03 .fundo-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
  width: 100%;
  max-width: 800px;
}

.blog03 .fundo-form input:focus,
.blog03 .fundo-form textarea:focus {
  border-color: var(--kry-azul);
  outline: none;
}

.blog03 .fundo-form input[type="submit"] {
  background: var(--kry-azul);
  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-azul);
}

.blog03 .nautor {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--kry-cinza);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.blog03 .nautor .nletra {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--kry-azul);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--spline-sans-bold);
  flex-shrink: 0;
}

.blog03 .nautor .nanome {
  font-size: 15px;
  font-family: var(--spline-sans-bold);
  color: var(--kry-azul-ultra-escuro);
}

.blog03 .nautor .natxt {
  font-size: 14px;
  font-family: var(--regular);
  color: var(--kry-azul-ultra-escuro);
  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;
}

/* ====== RESPONSIVO BLOG ====== */
@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: 769px) {
  .blog03 .lista-posts {
    padding: 20px;
  }

  .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(--spline-sans-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;
  }
}

/* ====== RESPONSIVO SITE ====== */
@media (max-width: 1400px){
  .fx2-home {
    min-height: auto;
    background-image: none!important;
    background-color: var(--kry-azul-ultra-escuro);
  }

  .fx2-home .conteudo {
    flex-direction: column-reverse;
    text-align: center;
    padding: 10px!important;
  }

  .fx2-home .txt {
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
  }

  .fx2-home .img {
    justify-content: center;
  }

  .fx2-home .img img {
    width: 100%;
    height: 100%;
    margin: 0px;
  }

  .fx2-home .botao {
    justify-content: center;
  }

  .fx3-home .conteudo {
    flex-direction: column;
    padding: 10px!important;
  }

  .fx3-home .img {
    margin: 0;
  }

  .fx3-home .img img {
    width: 100%;
    height: 100%;
  }

  .fx3-home .qualidades {
    align-items: center;
    text-align: center;
    max-width: 100%;
    gap: 10px;
  }

  .fx3-home .qualidades .item {
    align-items: center;
    text-align: center;
  }

  .fx3-home .qualidades .item .icn-txt {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 5px;
  }

  .fx1-sobre .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px !important;
  }

  .fx2-sobre .conteudo {
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px !important;
  }

  .fx2-sobre .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .fx3-sobre .conteudo {
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 10px;
    padding: 20px 10px 10px 10px !important;
  }

  .fx3-sobre ul {
    padding: 0 0 0 20px;
  }

  .fx3-sobre ul li {
    margin: 0 0 10px 0;
  }

  .archive-servicos {
    padding: 20px 10px;
    text-align: center;
  }

  .archive-servicos .conteudo {
    gap: 20px;
    padding: 10px 0 0 0!important;
  }

  .archive-servicos a.card .img {
    width: 100%;
    max-width: 370px;
    height: auto;
  }

  .single-servicos .conteudo {
    padding: 20px 10px !important;
    text-align: center;
  }
}

@media (max-width: 1025px) {
  .header{
    padding: 10px;
    background-color: var(--kry-azul-ultra-escuro);
    margin: 0px;
  }

  .header .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 280px;
    background: var(--kry-azul-ultra-escuro);
    border-left: 2px solid var(--kry-azul);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  #menu-toggle:checked ~ .menu {
    right: 0;
  }

  .menu-icon {
    display: flex;
  }

  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header .redes {
    display: none;
  }

  .banner .owl-nav {
    top: 30%;
    left: 0;
    width: 100%;
  }

  .banner .owl-nav button {
    font-size: 2.5rem !important;
  }

  .footer {
    background-image: none!important;
    background-color: var(--kry-azul-ultra-escuro);
    min-height: auto;
  }

  .footer .conteudo {
    padding: 30px 10px 100px 10px!important;
  }

  .footer .txt {
    padding: 0px 0px 10px 0px
  }

  .footer .txt a {
    margin: 15px 0;
  }

  .footer h3{
    margin: 0px 0px 20px 0px;
  }

  .footer .creditos {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .footer .img img {
    margin-top: 0px; 
  }

  .footer .creditos .site {
    max-width: 100%;
    justify-content: center;
  }

  .footer .creditos .desenvolvedor {
    max-width: 100%;
    justify-content: center;
  }

  .header-pages {
    min-height: auto;
  }

  .header-pages .conteudo {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 10px!important;
  }

  .banner a {
    min-height: auto;
  }

  .banner a .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-align: center;
  }

  .fx1-home{
    padding: 10px 10px 90px 10px;
  }

  .fx1-home .owl-nav{
    right: 0;
    width: 100%;
    justify-content: center;
    bottom: -70px;
  }

  .fx1-home .conteudo .item{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .fx1-home .txt {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .fx1-home .icones {
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  .fx1-home .icones .item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2px;
  }

  .fx1-home .botao {
    justify-content: center;
    text-align: center;
  }

  .fx4-home .conteudo {
    align-items: center;
    padding: 10px!important;
  }

  .fx4-home .posts-blog {
    text-align: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0px 0px 0px;
  }

  .fx4-home .posts-blog a {
    text-align: center;
  }

  .fx5-home .conteudo {
    padding: 10px!important;
    align-items: center;
    text-align: center;
  }

  .fx5-home .clientes {
    padding: 40px 0 20px 0;
  }

  .fx5-home .clientes .img{
    width: 100%;
  }

  .fx5-home .owl-dots{
    top: 0;
    bottom: -120px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .fx1-contato .titulo{
    text-align: center;
  }

  .fx1-contato .conteudo{
    padding: 30px 10px !important;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-contato {
    width: 100%;
    max-width: 470px;
  }

  .fx1-contato .dados .item{
    align-items: center;
  }

  .fx1-contato .dados .item .icn-txt{
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .fx1-contato p{
    text-align: center;
  }

  .blog03 .row {
    flex-direction: column;
    align-items: center;
  }

  .blog03 .sugestao-titulo {
    text-align: center;
  }

  h1{
    font-size: 28px!important;
  }

  h2{
    font-size: 24px!important; 
  }

  h3{
    font-size: 20px!important;
  }

  p{
    font-size: 14px!important;
  }

  br{
    display: none!important;
  }
}

@media (max-width: 769px){
  .banner .owl-nav {
    display: none; 
  }
}

/* ====== CONFIGURAÇÕES GERAIS ====== */
@media (max-width: 991px) {
  form {
    .row > div {
      width: 100%;
    }

    border: 0;
    padding: 0;
  }

  .fxsm {
    height: auto;
    min-height: 0;
    padding: 40px 0;
  }

  .btnwhats {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 480px) {
  .fxsm {
    padding: 30px 0;
  }
}

@media (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.7);
    transform-origin: 0 0;
  }
}