@charset "UTF-8";

/* ONEST – FONTES GLOBAIS */
@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* VARIÁVEIS GLOBAIS */
:root {
  --font-base: 'Onest', sans-serif;
  --thin: 100;
  --extralight: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --extrabold: 800;
  --black: 900;

  --kry-color-1: #FF6400;
  --kry-color-2: #213040;
  --kry-color-3: #405E80;
  --kry-color-4: #1D2B3A;
  --kry-preto: #090909;
  --kry-branco: #FFFFFF;
  --kry-cinza: #D9D9D9;
  --kry-txt: #404040;
}

body{
  font-family: var(--font-base);
  font-weight: var(--regular);
  background-color: var(--kry-color-2);
  margin: 0px!important;
  padding: 0px!important;
}

strong,
b {
  font-family: var(--font-base);
  font-weight: var(--bold);
}

a {
  transition: all .2s linear;
  color: inherit;
  text-decoration: none;
}

a:hover,
a:active {
  color: var(--kry-color-1);
}

a:link,
a:visited {
  color: inherit;
}

.editor a {
  color: var(--kry-color-1)!important;
}

.editor a:hover {
  text-decoration: underline !important;
}

.editor p,
.editor li {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--kry-preto);
}

.editor p {
  margin-bottom: 20px;
}

::selection {
  background: var(--kry-color-3);
  color: var(--kry-branco);
}

::-moz-selection {
  background: var(--kry-color-3);
  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;
}

.aceitar_termos a {
  color: #FFFC9E !important;
}

.aceitar_termos a: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;
  cursor: pointer;
}

/*BOTÃO WHATSAPP FLUTUANTE*/
.btnwhats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.btnwhats img {
  transition: all .2s linear;
}

.btnwhats: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;
}

/*SECTIOM e CONTAINER TAMANHO*/
section{
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}

.container{
  width: 100%;
  max-width: 1170px!important;
}

/*BOTÕES PADRÃO*/
.btn-type-one {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-type-one a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 15px;
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 25px;
  color: var(--kry-branco);
  background-color: var(--kry-color-1);
  transition: 0.2s ease-in-out;
}

.btn-type-one a:hover {
  background-color: var(--kry-color-3);
}

.btn-type-one button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 93px;
  padding: 10px;
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-branco);
  background-color: var(--kry-color-1);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.btn-type-one button:hover {
  background-color: var(--kry-color-3);
}

form .btn-type-one p{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.btn-type-one input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 93px;
  padding: 10px;
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-branco);
  background-color: var(--kry-color-1);
  border: none;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.btn-type-one input[type="submit"]:hover {
  background-color: var(--kry-color-3);
}

/*FORMULARIO E CONTATOS*/
.txt-formulario {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 570px;
}

.txt-formulario h2 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 30px;
  margin: 0px 0px 10px 0px;
  color: var(--kry-color-3);
}

.txt-formulario p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 20px;
  margin: 0px 0px 20px 0px;
  color: var(--kry-txt);
}

.txt-formulario input,
.txt-formulario textarea {
  width: 526px;
  height: 35px;
  padding: 10px;
  border: 1px solid var(--kry-preto);
  margin-bottom: 15px;
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-preto);
}

.txt-formulario textarea {
  height: 105px;
  resize: none;
}

.txt-formulario input::placeholder,
.txt-formulario textarea::placeholder {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 20px;
  color: var(--kry-txt);
}

.txt-formulario button {
  border: none;
}

.txt-formulario form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 548px;
}

.txt-formulario .btn-campo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.txt-formulario .btn-campo p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-txt);
  margin: 0px;
}

.contatos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 560px;
  padding: 120px 0px 0px 0px;
}

.contatos a.item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contatos a.item .icn {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contatos a.item .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.contatos a.item .txt {
  width: 100%;
  max-width: 460px;
}

.contatos p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 25px;
  margin: 0px;
  color: var(--kry-txt);
}

.contatos p strong {
  font-weight: var(--bold);
}

/*CARD DESTAQUE HOME E PRODUTOS*/
a.card-produto {
  width: 518px;
  height: 330px;
  padding: 29px 26px;
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--kry-cinza);
}

a.card-produto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-card);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.45s ease-in-out;
  z-index: 0;
}

a.card-produto:hover::before {
  transform: scale(1.08);
}

a.card-produto > * {
  position: relative;
  z-index: 1;
}

a.card-produto .linha {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  border: 1px solid var(--kry-branco);
}

a.card-produto .faixa-laranja {
  position: absolute;
  background-color: var(--kry-color-1);
  padding: 5px 10px 5px 52px;
  margin-left: -30px;
  bottom: 100px;
}

a.card-produto h5 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 45px;
  margin: 0px 0px 10px 0px;
  color: var(--kry-branco);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

a.card-produto p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 20px;
  color: var(--kry-branco);
  margin: 0px;
}

a.card-produto .titulo-produto {
  padding: 0px 0px 0px 20px;
}

/*IFRAME CATALOGO*/
.iframe-catalogo{
  padding: 20px 0px;
  width: 100%;
  height: 600px;

  iframe{
    border: none!important;
    width: 100%!important;
    height: 100%!important;
  }
}

/*HEADER - CABEÇALHO*/
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 0px;
}

.header .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header a.logo {
  width: 100%;
  max-width: 375px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header a.logo img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.header .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 35px;
  width: 100%;
  max-width: 670px;
}

.header .menu .busca-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

#resultado-busca {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.item-busca {
  padding: 10px 15px;
  border-bottom: 1px solid #f2f2f2;
  transition: 0.2s ease;
}

.item-busca:last-child {
  border-bottom: none;
}

.item-busca a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: block;
}

.item-busca:hover {
  background: #f7f7f7;
}

.header .menu button {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  margin: 0px 0px 0px 10px;
  cursor: pointer;
  z-index: 1;
}

.header .menu input {
  display: flex;
  position: relative;
  width: 100%;
  border-radius: 5px;
  border: 2px solid var(--kry-branco);
  background-color: transparent;
  padding: 10px 10px 10px 40px;
  font-family: var(--font-base);
  font-weight: var(--regular);
  color: var(--kry-branco);
}

.header .menu .itens {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .menu .itens a {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-branco);
  border-bottom: 1px solid transparent;
  transition: 0.2s ease-in-out;
}

.header .menu .itens a:hover,
.header .menu .itens a:active {
  border-color: var(--kry-branco);
}

.header .menu .itens a.catalogo {
  padding: 10px 15px;
  background-color: var(--kry-color-1);
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-branco);
  border: none;
  transition: 0.2s ease-in-out;
}

.header .menu .itens a.catalogo:hover {
  background-color: var(--kry-color-3);
}

.btn-hamburguer {
  position: relative;
  z-index: 9999;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.btn-hamburguer span {
  width: 28px;
  height: 3px;
  background-color: var(--kry-branco);
  display: block;
  transition: all 0.3s ease;
}

.header .menu .itens .submenu {
  position: relative;
  display: flex;
  align-items: center;
}

.header .menu .itens .submenu > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .menu .itens .has-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: var(--kry-branco);
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
  flex-direction: column;
}

.header .menu .itens .submenu:hover .has-submenu {
  display: flex;
}

.header .menu .itens .has-submenu a {
  color: #333;
  font-size: 14px;
  padding: 10px 15px;
  white-space: nowrap;
  border-bottom: none;
}

.header .menu .itens .has-submenu a:hover {
  background-color: #f5f5f5;
  color: var(--kry-color-1);
  border-bottom: none;
}

/*FOOTER - RODAPÉ*/
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0px 40px 0px;
}

.footer .conteudo {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer .site-redes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 240px;
}

.footer a.logo {
  width: 100%;
  max-width: 357px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer a.logo img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer .redes-sociais {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer .redes-sociais a.icn {
  width: 100%;
  max-width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .redes-sociais a.icn 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;
}

.footer .creditos p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 14px;
  margin: 0px;
  color: var(--kry-branco);
}

.footer .creditos .dev {
  width: 100%;
  max-width: 250px;
}

.footer .creditos a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.footer .creditos a .icn-kry {
  width: 100%;
  max-width: 51px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .creditos a .icn-kry img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  margin-top: -12px;
}

/*FAIXA DO TITULO DAS PÁGINAS - BREADCUMP*/
.fx-titulo {
  padding: 50px 0px;
  border-bottom: 17px solid var(--kry-color-1);
}

.fx-titulo .conteudo {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.fx-titulo h1 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 28px;
  margin: 0px;
  color: var(--kry-color-1);
  text-transform: uppercase;
}

.fx-titulo a {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-branco);
}

.fx-titulo .breadcump{
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-branco);
}

/*HOME - PAGINA INICIAL*/
.banners {
  overflow: hidden;
}

.banners .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banners .item-banner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
  height: 560px;
}

.banners .txt-btn {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 470px;
}

.banners h1 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 45px;
  margin: 0px 0px 10px 0px;
  color: var(--kry-color-1);
  text-transform: uppercase;
}

.banners p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 25px;
  margin: 0px;
  color: var(--kry-branco);
}

.banners .btn-type-one {
  max-width: 370px;
}

.banners .img {
  width: 100%;
  max-width: 570px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banners .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.banners .itens-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banners .itens-dots button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 15px;
  color: var(--kry-branco);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.banners .itens-dots button:hover {
  font-weight: var(--bold);
  color: var(--kry-color-1);
}

.banners .itens-dots button.active {
  font-weight: var(--bold);
  color: var(--kry-color-1);
}

.fx1-home {
  padding: 75px 0px;
  background-color: var(--kry-branco);
  overflow: hidden;
}

.fx1-home .conteudo {
  display: flex;
  align-items: center;
  gap: 60px;
}

.fx1-home .txt-btn {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 270px;
}

.fx1-home .btn-type-one {
  justify-content: flex-start;
}

.fx1-home .btn-type-one a {
  max-width: 170px;
  font-size: 15px;
  padding: 10px;
  font-weight: var(--regular);
}

.fx1-home .itens-categorias {
  gap: 30px;
}

.fx1-home .itens-categorias .item a {
  width: 265px;
  height: 265px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 17px;
  padding: 5px;
  background-color: var(--kry-cinza);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
  overflow: hidden;
  transition: filter 0.3s ease;
}

.fx1-home .itens-categorias .item a:hover {
  filter: brightness(1.08);
}

.fx1-home .itens-categorias .item a .img {
  width: 240px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-home .itens-categorias .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fx1-home .itens-categorias .item a h4 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 30px;
  margin: 0px;
  color: var(--kry-color-3);
}

.fx1-home .owl-item {
  display: flex;
  justify-content: center;
}

.fx1-home h2 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 45px;
  margin: 0px 0px 10px 0px;
  color: var(--kry-color-3);
}

.fx1-home p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 25px;
  margin: 0px;
  color: var(--kry-txt);
}

.fx2-home {
  padding: 30px 0px 50px 0px;
  background-color: var(--kry-branco);
}

.fx2-home .conteudo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.fx3-home {
  padding: 30px 0px 50px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fx3-home .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fx3-home .txt-btn {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 470px;
}

.fx3-home .btn-type-one {
  justify-content: flex-start;
}

.fx3-home .btn-type-one a {
  max-width: 370px;
}

.fx3-home p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 25px;
  margin: 0px;
  color: var(--kry-branco);
}

.fx3-home p strong {
  font-weight: var(--bold);
  font-size: 30px;
}

.fx3-home h2 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 45px;
  margin: 0px 0px 10px 0px;
  color: var(--kry-color-1);
  text-transform: uppercase;
}

.fx3-home .img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx3-home .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx4-home {
  padding: 0px !important;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
    background: linear-gradient(
    to right,
    #db5400 15%,
    #ff7f2f 20%,
    #f59459 40%,
    #ebb085 60%,
    #ffba8c 100%
  );
}

.fx4-home .card-vantagens {
  width: 284px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: var(--kry-preto);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.fx4-home .card-vantagens::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.fx4-home .card-vantagens .txt-laranja,
.fx4-home .card-vantagens h5 {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease-in-out;
}

.fx4-home .txt-laranja {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 20px;
  color: var(--kry-branco);
  background-color: var(--kry-color-1);
  padding: 2px 12px;
}

.fx4-home h5 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 45px;
  color: var(--kry-branco);
  margin: 0px;
}

.fx4-home .card-vantagens:hover::before {
  background: rgba(0,0,0,0.6);
}

.fx4-home .card-vantagens:hover .txt-laranja,
.fx4-home .card-vantagens:hover h5 {
  opacity: 1;
  transform: translateY(0);
}

.fx5-home {
  padding: 50px 0px;
  background-color: var(--kry-branco);
}

.fx5-home .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*PAGINA QUEM SOMOS*/
.fx1-quem-somos {
  background-color: var(--kry-branco);
  padding: 90px 0px 45px 0px;
}

.fx1-quem-somos .conteudo {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.fx1-quem-somos .img-txt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.fx1-quem-somos .img-txt .img {
  width: 100%;
  max-width: 370px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-quem-somos .img-txt .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx1-quem-somos .img-txt .txt {
  width: 100%;
  max-width: 770px;
}

.fx1-quem-somos h2 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 45px;
  margin: 0px 0px 20px 0px;
  color: var(--kry-color-3);
}

.fx1-quem-somos p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 25px;
  margin: 0px;
  color: var(--kry-txt);
}

.fx1-quem-somos .icn-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.fx1-quem-somos .icn-txt .icn {
  width: 100%;
  max-width: 69px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-quem-somos .icn-txt .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.fx2-quem-somos {
  padding: 60px 0px;
  background-color: var(--kry-color-1);
  border-bottom: 10px solid var(--kry-branco);
}

.fx2-quem-somos .conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.fx2-quem-somos .icn-txt {
  width: 100%;
  max-width: 370px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.fx2-quem-somos .icn-txt .icn {
  width: 100%;
  max-width: 70px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx2-quem-somos .icn-txt .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  object-fit: cover;
}

.fx2-quem-somos p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 20px;
  margin: 0px;
  color: var(--kry-branco);
}

/*ARCHIVE DOWNLOADS*/
.archive-downloads {
  padding: 50px 0px;
  background-color: var(--kry-branco);
}

.archive-downloads .conteudo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.archive-downloads .img-txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.archive-downloads .img-txt .img {
  width: 100%;
  max-width: 370px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-downloads .img-txt .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.archive-downloads .img-txt .txt {
  width: 100%;
  max-width: 660px;
}

.archive-downloads .itens-downloads {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.archive-downloads .itens-downloads a.card-item {
  width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.archive-downloads .itens-downloads a.card-item .icn {
  width: 100%;
  max-width: 70px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.archive-downloads .itens-downloads a.card-item .icn img {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.archive-downloads .itens-downloads a.card-item span {
  font-family: var(--font-base);
  font-weight: var(--semibold);
  font-size: 13px;
  color: var(--kry-preto);
}

.archive-downloads .itens-downloads a.card-item span.baixar {
  font-size: 13px;
  color: var(--kry-color-1);
}

.archive-downloads h2 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 30px;
  margin: 0px 0px 20px 0px;
  color: var(--kry-color-3);
}

.archive-downloads p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 18px;
  margin: 0px;
  color: var(--kry-txt);
}

/*ARCHIVE E SINGLE CATEGORIAS PRODUTOS*/
.archive-cat-produtos {
  background-color: var(--kry-branco);
}

.archive-cat-produtos .categorias {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 50px;
}

.archive-cat-produtos .categorias a {
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.archive-cat-produtos .categorias a .img {
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background-color: var(--kry-cinza);
  position: relative;
  overflow: hidden;
}

.archive-cat-produtos .categorias a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.archive-cat-produtos .categorias a:hover .img img {
  filter: brightness(1.18);
  transform: scale(1.02);
}

.archive-cat-produtos .linha {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  height: 85%;
  border: 1px solid var(--kry-branco);
  position: absolute;
}

.archive-cat-produtos .categorias a span {
  font-family: var(--font-base);
  font-weight: var(--semibold);
  font-size: 20px;
  color: var(--kry-color-2);
}

.archive-cat-produtos h2 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 28px;
  margin: 100px 0px 10px 0px;
  color: var(--kry-color-3);
}

.archive-cat-produtos p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 25px;
  margin: 0px 0px 30px 0px;
  color: var(--kry-txt);
}

.archive-cat-produtos-2 {
  padding: 0px 0px 50px 0px;
  background-color: var(--kry-branco);
}

.archive-cat-produtos-2 .conteudo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.banner-divulgacao{
  padding: 10px 0px 30px 0px;
  background-color: var(--kry-branco);
}

.banner-divulgacao a.desktop{
  content: '';
  display: flex;
  width: 100%;
  max-width: 1170px;
  height: auto;
  min-height: 388px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.banner-divulgacao a.mobile{
  content: '';
  display: none;
  width: 100%;
  max-width: 1170px;
  height: auto;
  min-height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.archive-cat-produtos .btn-type-one{
  max-width: 100%;
  padding: 0px 0px 100px 0px;
}

.archive-cat-produtos .btn-type-one a{
  max-width: 370px;
}

/*SINGLE PRODUTOS*/
.single-produtos {
  padding: 50px 0px;
  background-color: var(--kry-branco);
}

.single-produtos .conteudo {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-produtos h2 {
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 22px;
  margin: 0px 0px 10px 0px;
  color: var(--kry-color-3);
}

.single-produtos p {
  font-family: var(--font-base);
  font-weight: var(--regular);
  font-size: 18px;
  margin: 0px;
  color: var(--kry-txt);
}

.single-produtos span {
  font-family: var(--font-base);
  font-weight: var(--semibold);
  font-size: 16px;
  margin: 0px;
  color: var(--kry-txt);
}

.single-produtos .sku p{
  font-size: 14px;
}

.single-produtos .categorias p{
  font-size: 14px;
}

.single-produtos .sku,
.single-produtos .categorias {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.single-produtos .txt-img {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.single-produtos .txt-img .txt {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.single-produtos .txt-img .img {
  width: 100%;
  max-width: 470px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-cinza);
}

.single-produtos .txt-img .img img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.single-produtos .fotos-produtos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.single-produtos .fotos-produtos .img-produto {
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-cinza);
}

.single-produtos .fotos-produtos .img-produto img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.single-produtos .botoes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-produtos .botoes .btn-type-one {
  width: 100%;
  max-width: 270px;
}

/*PÁGINA CONTATO*/
.mapa{
  padding: 30px 0px;
  background-color: var(--kry-branco);
}

.mapa iframe{
  width: 100%;
  max-width: 1170px;
  height: 508px;
}

/*PÁGINA CATÁLOGO*/
.page-catalogo .iframe-catalogo{
  padding: 0px!important;
  height: 580px;
}

.botao-pdf{
  padding: 20px 10px;
}

/*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;
  opacity: 0.05;
}

.pg-404 .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pg-404 h1 {
  font-family: var(--font-base);
  font-weight: var(--black);
  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(--font-base);
  font-weight: var(--semibold);
  font-size: 26px;
  margin: 20px 0 40px;
  color: var(--kry-branco);
  letter-spacing: 0.5px;
}

.pg-404 .editor {
    font-family: var(--font-base);
  font-weight: var(--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(--font-base);
  font-weight: var(--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(--font-base);
  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: 100px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.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: var(--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(--font-base);
  font-size: 24px;
  color: var(--kry-preto);
  margin: 10px 0;
}

.blog03 .post .post-cat {
  display: inline-block;
  background-color: var(--kry-color-1);
  color: #fff;
  font-family: var(--font-base);
  font-weight: var(--bold);
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 5px;
  border: 2px solid transparent;
  margin: 0 5px 10px 0;
  transition: 0.2s ease-in-out;
  text-align: center;
}

.blog03 .post .postautor {
  font-family: var(--font-base);
  font-size: 13px;
  line-height: 20px;
  color: var(--kry-preto);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--kry-preto);
}

.blog03 .post .img {
  width: 370px;
  height: 180px;
  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(--font-base);
  font-size: 16px;
  color: var(--kry-preto);
  line-height: 25px;
}

.blog03 .post .post-resumo .lermais {
  display: inline-block;
  margin-top: 8px;
  font-weight: var(--bold);
  color: var(--kry-color-1);
}

.blog03 .post a {
  color: inherit;
  text-decoration: none;
}

.blog03 .post .clearfix {
  clear: both;
  border: 1px solid var(--kry-cinza);
  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-preto);
  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-4);
}

.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;
  min-height: 69px;
}

.blog03 .sidebar .sidebarcategoria .sctxt {
  font-size: 14px;
  font-family: var(--font-base);
  font-weight: var(--bold);
  color: #FFF;
  line-height: 1.2;
  flex: 1;
  text-transform: uppercase;
}

.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-preto);
  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: var(--bold);
  color: var(--kry-preto);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--kry-cinza);
  padding-bottom: 5px;
}

.blog03 .sidebar .sobre-autor p {
  font-size: 13px;
  color: var(--kry-preto);
  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(--font-base);
  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-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(--font-base);
  font-size: 28px;
  color: var(--kry-preto);
  margin-bottom: 15px;
}

.blog03 .opost .editor {
  font-size: 16px;
  color: var(--kry-preto);
  line-height: 1.8;
  font-family: var(--font-base);
}

.blog03 .opost .editor h2,
.blog03 .opost .editor h3,
.blog03 .opost .editor h4 {
  margin: 30px 0 15px;
  font-family: var(--font-base);
  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(--font-base);
  margin: 20px 0;
  color: var(--kry-preto);
}

.blog03 .artigos-relacionados {
  justify-content: flex-start!important;
  gap: 20px;
}

.blog03 .artigos-relacionados .linkartigo {
  display: block;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--kry-preto);
  text-decoration: none;
  margin-bottom: 30px;
  width: 100%;
  max-width: 270px;
}

.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(--font-base);
  color: var(--kry-color-1);
  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 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);
  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: var(--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-cinza);
  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: var(--bold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  flex-shrink: 0;
}

.blog03 .nautor .nanome {
  font-size: 15px;
  font-family: var(--font-base);
  color: var(--kry-color-3);
}

.blog03 .nautor .natxt {
  font-size: 14px;
  font-family: var(--font-base);
  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;
}

/*RESPONSIVO*/
@media(max-width: 1441px){
  .fx4-home .card-vantagens{
    width: 268px;
    height: 370px;
  }
}

@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) {
  h1{
    font-size: 28px!important;
  }

  h2{
    font-size: 18px!important;
  }

  h3{
    font-size: 17px!important;
  }

  h4{
    font-size: 16px!important;
  }

  p{
    font-size: 14px!important;
    line-height: normal!important;
  }

  br{
    display: none!important;
  }

  section{
    padding: 20px 10px!important;
  }

  .banners .conteudo{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .banners .itens-dots{
    flex-direction: row;
  }

  .header{
    padding: 20px 10px;
  }

  .header .conteudo {
    justify-content: space-between;
  }

  .btn-hamburguer {
    display: flex;
  }

  .header .menu {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    max-width: 205px;
    height: 100vh;
    background-color: var(--kry-color-2);
    padding: 100px 20px 80px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 9998;
    border-left: 5px solid var(--kry-color-1);
  }

  .header .menu.ativo {
    right: 0;
  }

  .header .menu .busca-menu {
    width: 100%;
  }

  .header .menu .itens {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header .menu .itens a {
    font-size: 18px;
  }

  .header .menu .itens a.catalogo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 180px;
  }

  .footer{
    padding: 50px 10px 100px 10px;
  }

  .footer .site-redes{
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .footer .creditos{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .fx1-home .conteudo{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .fx1-home .txt-btn{
    max-width: 100%;
    gap: 20px;
  }

  .fx1-home .btn-type-one{
    justify-content: center;
  }

  .fx3-home .conteudo{
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .fx3-home .txt-btn{
    text-align: center;
    gap: 20px;
  }

  .fx3-home .btn-type-one{
    justify-content: center;
  }

  .fx4-home .card-vantagens::before {
    background: rgba(0,0,0,0.6);
  }

  .fx4-home .card-vantagens .txt-laranja,
  .fx4-home .card-vantagens h5 {
    opacity: 1;
    transform: translateY(0);
  }

  .fx4-home .card-vantagens {
    width: 100%;
  }

  .fx5-home .conteudo{
    flex-direction: column-reverse;
    justify-content: center;
    gap: 20px;
  }

  .contatos{
    padding: 20px 0px;
    gap: 20px;
  }

  .contatos a.item .icn{
    width: 40px;
    height: 40px;
  }

  .contatos a.item .icn img{
    object-fit: contain;
  }

  .txt-formulario input, .txt-formulario textarea{
    width: 90%;
    max-width: 526px;
  }

  .txt-formulario .btn-campo{
    width: 100%;
    max-width: 516px;
  }

  .fx1-quem-somos .img-txt{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .archive-downloads .img-txt{
    flex-direction: column-reverse;
    justify-content: center;
    gap: 20px;
  }

  .single-produtos .txt-img{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .single-produtos br{
    display: block!important;
  }

  .single-produtos .botoes{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .mapa iframe{
    height: 300px;
  }

  .blog03 .row{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

}

@media (max-width: 991px) {
  .btnwhats {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }
  .page-catalogo .iframe-catalogo,
  .iframe-catalogo{
    height: 400px;
  }
}

@media (max-width: 769px) {
  .banners .item-banner{
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: auto;
  }

  .fx-titulo .conteudo{
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .fx2-home a{
    height: 270px;
  }

  .fx2-home .faixa-laranja{
    bottom: 250px;
  }

  .banner-divulgacao a.desktop{
    display: none;
  }

  .banner-divulgacao a.mobile{
    display: flex;
  }

  .blog03 p {
    margin: 0;
  }

  .blog03 .wp-pagenavi {
    justify-content: center;
  }

  .blog03 .post {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog03 .post .img {
    width: 100%;
    max-width: 370px;
    height: auto;
    min-width: auto;
  }

  .blog03 .post .postautor {
    border: none;
    margin-bottom: 5px;
    font-family: var(--font-base);
  }

  .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;
  }

  .page-catalogo .iframe-catalogo,
  .iframe-catalogo{
    height: 350px;
  }
}

@media (max-width: 426px) {
  .g-recaptcha {
    transform: scale(0.7);
    transform-origin: 0 0;
  }
  .page-catalogo .iframe-catalogo,
  .iframe-catalogo{
    height: 260px;
  }
}