/*CHARSET - FONTES*/
  @charset "UTF-8";

  @font-face {
    font-family: 'Assistant-ExtraLight';
    src: url('../fonts/Assistant-ExtraLight.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
  }

  @font-face {
    font-family: 'Assistant-Light';
    src: url('../fonts/Assistant-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
  }

  @font-face {
    font-family: 'Assistant-Regular';
    src: url('../fonts/Assistant-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Assistant-Medium';
    src: url('../fonts/Assistant-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: 'Assistant-SemiBold';
    src: url('../fonts/Assistant-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
  }

  @font-face {
    font-family: 'Assistant-Bold';
    src: url('../fonts/Assistant-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: 'Assistant-ExtraBold';
    src: url('../fonts/Assistant-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
  }

  @font-face {
    font-family: 'Assistant';
    src: url('../fonts/Assistant-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
  }

  @font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/opensans-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'OpenSans-Bold';
    src: url('../fonts/opensans-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/opensans-light-webfont.woff') format('woff');
    font-weight: 200;
    font-style: normal;
  }

  @font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('../fonts/opensans-semiBold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
  }

  @font-face {
    font-family: 'OpenSans-ExtraBold';
    src: url('../fonts/opensans-extrabold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
  }

/*BODY - MOZ - LAYOUT - CONTAINERS - ROOT*/
  html {
    scroll-behavior: smooth;
  }

  body{
    font-family: var(--regular);
    color: var(--kry-preto);
    background-color: var(--kry-color-2);
    margin: 0;
    padding: 0px!important;
  }

  header, section, footer{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }

  a{
    text-decoration: none;
  }

  h2{
    font-family: var(--openSansBold);
    font-size: 50px;
    color: var(--kry-preto);
    margin: 0;
  }

  p{
    font-family: var(--regular);
    font-size: 17px;
    line-height: 30px;
    color: var(--kry-preto);
    margin: 0;
  }

  img{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }

  .website {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
  }

  .container {
    width: 100%!important;
    max-width: 1170px!important;
    padding: 0 !important;
  }

  ::selection {
    background: var(--kry-color-1);
    color: var(--kry-branco);
  }

  ::-moz-selection {
    background: var(--kry-color-1);
    color: var(--kry-branco);
  }

  :root {
    --extralight: 'Assistant-ExtraLight';
    --light: 'Assistant-Light';
    --regular: 'Assistant-Regular';
    --medium: 'Assistant-Medium';
    --semibold: 'Assistant-SemiBold';
    --bold: 'Assistant-Bold';
    --extrabold: 'Assistant-ExtraBold';

    --openSansRegular: 'OpenSans-Regular';
    --openSansBold: 'OpenSans-Bold';
    --openSansLight: 'OpenSans-Light';
    --openSansSemiBold: 'OpenSans-SemiBold';
    --openSansExtraBold: 'OpenSans-ExtraBold';

    --kry-color-1: #AA182C;
    --kry-color-2: #EEEEEE;
    --kry-preto: #161616;
    --kry-branco: #FFFFFF;
  }

/*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);
      }
    }
  }

  .g-recaptcha {
    display: block;
  }

/*ITENS PADRAO*/
  .btn-padrao {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--openSansBold);
    font-size: 15px;
    color: var(--kry-branco);
    background-color: var(--kry-color-1);
    transition: transform 0.3s ease-in-out;
  }

  .btn-padrao:hover {
    transform: scale(0.97);
  }

  .barras{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .barras .uni{
    width: 32px;
    height: 100%;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kry-branco);
  }

  .banner-pages {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    border-bottom: 3px solid var(--kry-color-1);
  }

  .banner-pages .conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
  }

  .banner-pages h1 {
    font-family: var(--bold);
    font-size: 50px;
    margin: 0;
    color: var(--kry-branco);
  }

  .banner-pages p {
    font-family: var(--regular);
    font-size: 29px;
    margin: 0;
    color: var(--kry-branco);
  }

  .banner-pages .txt {
    text-align: right;
    padding: 100px 0 0 0;
  }

/*HEADER - CABEÇALHO*/
  .header-menu {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 9997;
    width: 100%;
    max-width: 1920px;
    min-height: 104px;
  }

  .header-menu .conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-menu .logo {
    width: 100%;
    max-width: 196px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-menu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    padding: 0 0 0 10px;
  }

  .header-menu .menu a {
    font-family: var(--openSansRegular);
    font-size: 16px;
    color: var(--kry-branco);
    transition: border-bottom 0.2s ease-in-out;
    border-bottom: 1px solid transparent;
  }

  .header-menu .menu a:hover {
    border-color: var(--kry-branco);
  }

  .header-menu .menu .pesquisa {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-menu .menu a.pesquisa {
    cursor: pointer;
  }

  .header-menu .menu a.pesquisa:hover{
    border-color: transparent!important;
  }

  .popup-pesquisa {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease-in-out;
  }

  .popup-pesquisa.ativo {
    opacity: 1;
    visibility: visible;
  }

  .popup-pesquisa-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
  }

  .popup-pesquisa-conteudo {
    position: relative;
    z-index: 2;
    width: calc(100% - 30px);
    max-width: 620px;
    background-color: var(--kry-branco);
    padding: 45px 35px;
    text-align: center;
  }

  .popup-pesquisa-conteudo form {
    display: flex;
    gap: 10px;
  }

  .popup-pesquisa-conteudo input {
    width: 100%;
    height: 52px;
    border: 1px solid var(--kry-preto);
    padding: 0 15px;
    font-size: 16px;
    outline: none;
  }

  .popup-pesquisa-conteudo ::placeholder{
    color: var(--kry-preto);
  }

  .popup-pesquisa-conteudo button[type="submit"] {
    height: 52px;
    border: none;
    padding: 0 28px;
    font-family: var(--bold);
    background-color: var(--kry-color-1);
    color: var(--kry-branco);
    cursor: pointer;
    font-size: 16px;
  }

  .popup-pesquisa-fechar {
    position: absolute;
    top: 0px;
    right: 0px;
    border: none;
    background: transparent;
    font-size: 36px;
    line-height: 1;
    color: var(--kry-preto);
    cursor: pointer;
  }

  .popup-pesquisa-conteudo input[type="search"]::-webkit-search-cancel-button,
  .popup-pesquisa-conteudo input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
  }

  .header-menu .menu-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .header-menu .submenu {
    position: absolute;
    top: 70px;
    left: -100px;
    min-width: 315px;
    background-color: var(--kry-branco);
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    z-index: 9999;
    overflow: hidden;
    padding: 40px 35px;
  }

  .header-menu .submenu a {
    width: auto;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--kry-preto);
  }

  .header-menu .submenu a:hover {
    color: var(--kry-color-1);
  }

  .header-menu .menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-responsivo {
    display: none;
    background-color: var(--kry-preto);
    padding: 10px;
    position: relative;
    z-index: 1000;
  }

  .header-responsivo.menu-aberto .paginas {
    transform: translateX(0);
  }

  .header-responsivo.menu-aberto .overlay {
    opacity: 1;
    visibility: visible;
  }

  .header-responsivo .itens{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0 0 20px;
  }

  .header-responsivo .itens a{
    padding: 0!important;
    font-size: 12px!important;
    color: #DDD!important;
  }

  .btn-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .btn-menu span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: var(--kry-branco);
    border-radius: 3px;
    transition: transform 0.3s ease-in-out;
  }

  .menu-aberto .btn-menu span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-aberto .btn-menu span:nth-child(2) {
    opacity: 0;
  }

  .menu-aberto .btn-menu span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

/*FOOTER - RODAPÉ*/
  .footer {
    display: flex;
    flex-direction: column;
    border-top: 6px solid var(--kry-color-1);
    overflow: hidden;
  }

  .footer h3 {
    font-family: var(--openSansRegular);
    font-size: 27px;
    line-height: 30px;
    font-style: italic;
    color: var(--kry-preto);
    margin: 0;
    text-align: center;
  }

  .footer h3.margin {
    margin: 0 0 0 -85px;
  }

  .footer .conteudo {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 30px 0 !important;
  }

  .footer .itens-rede {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer .itens-rede .logo {
    width: 170px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .itens-rede .redes-sociais {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .footer .itens-rede .redes-sociais .social {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .mapa-site {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer .mapa-site .itens,
  .footer .mapa-site .item {
    width: 100%;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .footer .mapa-site .itens .regiao,
  .footer .mapa-site .item .regiao {
    margin-top: 30px;
  }

  .footer .mapa-site .itens span,
  .footer .mapa-site .item span {
    font-family: var(--openSansBold);
    font-size: 20px;
    line-height: 30px;
    color: var(--kry-preto);
    margin: 0 0 9px 0;
  }

  .footer .mapa-site .itens a,
  .footer .mapa-site .item a {
    font-family: var(--regular);
    font-size: 15px;
    line-height: 30px;
    color: var(--kry-preto);
    border-bottom: 1px solid transparent;
    transition: 0.2s ease-in-out;
  }

  .footer .mapa-site .itens a:hover,
  .footer .mapa-site .item a:hover {
    color: var(--kry-color-1);
    border-color: var(--kry-color-1);
  }

  .footer .mapa-site .itens a.contato,
  .footer .mapa-site .item a.contato {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }

  .footer .mapa-site .itens a.contato:hover,
  .footer .mapa-site .item a.contato:hover {
    color: var(--kry-preto);
    border-color: transparent;
  }

  .footer .mapa-site .itens a.contato .icn,
  .footer .mapa-site .item a.contato .icn {
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .creditos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    background-color: var(--kry-preto);
    padding: 20px 0 25px 0;
  }

  .footer .creditos .dados-site {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1170px;
  }

  .footer .creditos p {
    font-family: var(--regular);
    font-size: 14px;
    margin: 0;
    color: var(--kry-branco);
  }

  .footer .creditos a.kryzalis {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .footer .creditos a.kryzalis .icn {
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .creditos a.kryzalis .icn img {
    margin-top: -12px;
  }

/*FRONT-PAGE / HOME PAGE*/
  .banner {
    border-bottom: 2px solid var(--kry-color-1);
    overflow: hidden;
  }

  .banner .banner__carrossel {
    width: 100%;
    min-height: 700px;
  }

  .banner .banner__slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 700px;
    display: flex;
    justify-content: center;
  }

  .banner .conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    min-height: 700px;
  }

  .banner h1 {
    font-family: var(--openSansBold);
    font-size: 60px;
    margin: 0;
    color: var(--kry-branco);
    line-height: 61px;
  }

  .banner h3 {
    font-family: var(--openSansBold);
    font-size: 50px;
    margin: 0;
    color: var(--kry-branco);
    line-height: 61px;
  }

  .banner p {
    font-family: var(--regular);
    font-size: 29px;
    margin: 0;
    color: var(--kry-branco);
  }

  .banner .txt {
    text-align: right;
    padding: 100px 0 0 0;
  }

  .banner .area-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 170px;
    overflow: hidden;
  }

  .fx1-home {
    background-color: var(--kry-color-2);
    padding: 50px 0;
  }

  .fx1-home .conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .fx1-home .txt-btn {
    width: 100%;
    max-width: 670px;
    display: flex;
    flex-direction: column;
  }

  .fx1-home .img {
    width: 470px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx1-home .area-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 270px;
  }

  .fx1-home .txt {
    text-align: justify;
  }

  .fx1-home h2,
  .fx1-home p {
    margin-bottom: 20px;
  }

  .fx2-home {
    background-color: transparent;
    margin: 0 0 -85px 0;
    overflow: hidden;
  }

  .fx2-home .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx2-home .card {
    width: 270px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--kry-color-1);
    gap: 20px;
    overflow: hidden;
  }

  .fx2-home .card .icn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx2-home .card span {
    font-family: var(--openSansBold);
    font-size: 17px;
    color: var(--kry-branco);
  }

  .fx3-home {
    padding: 165px 0 50px 0;
    background-color: var(--kry-branco);
    overflow: hidden;
  }

  .fx3-home .itens-maq {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx3-home p {
    line-height: 24px;
  }

  .fx3-home h2 {
    margin-bottom: 30px;
  }

  .fx3-home .card {
    width: 270px;
    height: auto;
    min-height: 385px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
  }

  .fx3-home .card .img-txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fx3-home .card .img {
    width: 270px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx3-home .card span {
    font-family: var(--openSansBold);
    font-size: 19px;
    line-height: 30px;
    color: var(--kry-preto);
  }

  .fx3-home .card .area-btn {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx4-home {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 470px;
  }

  .fx4-home .conteudo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
  }

  .fx4-home h2 {
    color: var(--kry-branco);
  }

  .fx4-home p {
    color: var(--kry-branco);
  }

  .fx4-home .txt-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    gap: 20px;
    width: 100%;
    max-width: 540px;
  }

  .fx4-home .area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 170px;
  }

  .fx5-home {
    padding: 50px 0;
    background-color: var(--kry-branco);
    overflow: hidden;
  }

  .fx5-home .itens-explore {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx5-home h2 {
    margin-bottom: 30px;
  }

  .fx5-home .card {
    width: 270px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
  }

  .fx5-home .card .img-txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fx5-home .card .img {
    width: 270px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx5-home .card span {
    font-family: var(--openSansBold);
    font-size: 19px;
    line-height: 30px;
    color: var(--kry-preto);
  }

  .fx5-home .card .area-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx5-home .titulo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    width: 150%;
    max-width: 1920px;
  }

  .fx5-home .linha{
    width: 945px;
    height: 4px;
    background-color: var(--kry-color-1);
  }

/*PAGINA GARANTIA*/
  .fx1-garantia .conteudo {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .fx1-garantia h2 {
    font-size: 35px;
    margin: 0 0 15px 0;
  }

  .fx1-garantia .txt-btn {
    background-color: var(--kry-branco);
    padding: 60px 30px 40px 310px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 470px;
  }

  .fx1-garantia .txt-direita {
    padding: 60px 315px 40px 100px;
    width: 50%;
    max-width: 570px;
  }

  .fx1-garantia .area-btn {
    width: 100%;
    max-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

/*PAGINA SMART SERVICES*/
  .fx1-smart h2 {
    font-size: 35px;
    margin: 0 0 15px 0;
  }

  .fx1-smart p {
    font-size: 17px;
  }

  .fx1-smart .conteudo {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
  }

  .fx1-smart .txt {
    width: 100%;
    max-width: 570px;
    padding: 60px 0;
    text-align: justify;
  }

  .fx1-smart .img {
    width: 570px;
    height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx2-smart {
    padding: 60px 0;
    background-color: var(--kry-branco);
  }

  .fx2-smart h4 {
    font-family: var(--bold);
    font-size: 17px;
    line-height: 30px;
    margin: 0;
  }

  .fx2-smart p {
    font-family: var(--regular);
    line-height: 30px;
    margin: 0;
  }

  .fx2-smart .conteudo {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fx2-smart .item {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: justify;
  }

  .fx2-smart .item .icn-txt {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .fx2-smart .item .icn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx3-smart {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 630px;
  }

  .fx3-smart h2 {
    font-size: 35px;
  }

  .fx3-smart p strong {
    font-family: var(--bold);
    color: var(--kry-color-1);
  }

  .fx3-smart ul {
    padding: 0 0 0 30px;
  }

  .fx3-smart li {
    margin-bottom: 10px;
  }

  .fx3-smart .conteudo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .fx3-smart .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: justify;
  }

  .fx4-smart {
    padding: 60px 0;
    background-color: var(--kry-branco);
  }

  .fx4-smart h2 {
    font-size: 35px;
  }

  .fx4-smart .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx4-smart .perguntas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 570px;
  }

  .fx4-smart .perguntas .item {
    display: flex;
    flex-direction: column;
    text-align: justify;
  }

  .fx4-smart .perguntas ul {
    padding: 0 0 0 30px;
    margin: 0;
  }

  .fx4-smart .perguntas li {
    font-family: var(--bold);
    line-height: 30px;
  }

  .fx4-smart .perguntas ::marker {
    color: var(--kry-color-1);
  }

  .fx4-smart .contrato {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 570px;
  }

  .fx4-smart .contrato .img {
    width: 370px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx4-smart .contrato .txt {
    text-align: center;
  }

  .fx4-smart .contrato .area-btn {
    width: 100%;
    max-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx4-smart .contrato .area-btn .btn-padrao {
    padding: 5px 10px;
    height: auto;
  }

  .fx5-smart {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 495px;
  }

  .fx5-smart h2 {
    font-size: 35px;
  }

  .fx5-smart h2,
  .fx5-smart p {
    color: var(--kry-branco);
  }

  .fx5-smart .txt {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 570px;
  }

  .fx5-smart .area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
  }

/*ARCHIVE - PAGINA SERVIÇOS*/
  .fx1-servicos,
  .fx2-servicos {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 730px;
  }

  .fx1-servicos h2,
  .fx2-servicos h2 {
    font-size: 35px;
  }

  .fx1-servicos p,
  .fx2-servicos p {
    text-align: justify;
  }

  .fx1-servicos a{
    border-bottom: 1px solid var(--kry-preto);
  }

  .fx1-servicos .conteudo,
  .fx2-servicos .conteudo {
    display: flex;
    align-items: center;
  }

  .fx1-servicos .txt,
  .fx2-servicos .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fx1-servicos .area-btn,
  .fx2-servicos .area-btn {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx1-servicos .area-btn a{
    border-bottom: 0;
  }

  .fx1-servicos .conteudo {
    justify-content: flex-start;
  }

  .fx2-servicos .conteudo {
    justify-content: flex-end;
  }

  .fx3-servicos {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--kry-branco);
    min-height: 523px;
  }

  .fx3-servicos h2 {
    font-size: 35px;
  }

  .fx3-servicos .conteudo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
  }

  .fx3-servicos .txt {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 570px;
    text-align: justify;
  }

  .fx3-servicos .area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
    padding: 20px 0 0 0;
  }

  .fx4-servicos{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 565px;
  }

  .fx4-servicos h2 {
    font-size: 35px;
  }

  .fx4-servicos p{
    text-align: justify;
  }

  .fx4-servicos .conteudo {
    display: flex;
    align-items: center;
  }

  .fx4-servicos .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fx4-servicos .conteudo {
    justify-content: flex-start;
  }

  .fx5-servicos{
    padding: 40px 0;
    background-color: var(--kry-branco);

    h2 {
      font-size: 35px;
      color: var(--kry-branco);
    }

    p{
      color: var(--kry-branco);
    }

    a{
      font-family: var(--bold);
      color: var(--kry-color-1);
      border-bottom: 1px solid var(--kry-color-1);
    }

    .conteudo{
      display: flex;
      align-items: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      min-height: 465px;
    }

    .txt{
      width: 100%;
      max-width: 640px;
      padding: 0 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .area-btn{
      width: 100%;
      max-width: 270px;
      display: flex;
      align-items: center;
      justify-content: center;

      a{
        color: var(--kry-branco);
        border-bottom: 0;
      }
    }
  }

/*PÁGINA SERVICOS FINANCEIROS*/
  .fx2-servicos-financeiros {
    padding: 40px 0 80px 0;
    background-color: var(--kry-branco);
  }

  .fx2-servicos-financeiros h2 {
    font-size: 35px;
  }

  .fx2-servicos-financeiros .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }

  .fx2-servicos-financeiros .txt-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .fx2-servicos-financeiros .area-btn {
    width: 100%;
    max-width: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx5-smart .sobre p{
    margin-bottom: -15px;
  }

  .fx5-smart .sobre-btn{
    padding: 30px 0 0 0;
  }

/*PÁGINA SOBRE*/
  .fx1-sobre {
    padding: 60px 0;
  }

  .fx1-sobre h4 {
    font-family: var(--openSansBold);
    font-size: 20px;
    margin: 0;
  }

  .fx1-sobre h2 {
    color: var(--kry-color-1);
  }

  .fx1-sobre h3 {
    font-family: var(--openSansBold);
    font-size: 35px;
    margin: 0;
  }

  .fx1-sobre .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }

  .fx1-sobre .txt {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 570px;
    text-align: justify;
  }

  .fx1-sobre .mvv {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 470px;
  }

  .fx1-sobre .mvv .item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: justify;
  }

  .fx1-sobre .mvv .icn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx1-sobre .mvv .info {
    width: 100%;
    max-width: 370px;
  }

  .fx2-sobre {
    padding: 50px 0;
    background-color: var(--kry-branco);
  }

  .fx2-sobre h5 {
    font-family: var(--openSansBold);
    font-size: 20px;
    margin: 0;
  }

  .fx2-sobre h2 {
    font-size: 35px;
    color: var(--kry-color-1);
  }

  .fx2-sobre .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 110px;
  }

  .fx2-sobre .mapa-brasil {
    width: 100%;
    max-width: 770px;
    min-height: 600px;
    display: flex;
    position: relative;
  }

  .fx2-sobre .mapa-brasil .para{
    display: flex;
    width: 573px;
    height: 571px;
    position: absolute;
    z-index: 1;
  }

  .fx2-sobre .mapa-brasil .para img,
  .fx2-sobre .mapa-brasil .maranhao img{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }


  .fx2-sobre .mapa-brasil .maranhao{
    display: flex;
    width: 293px;
    height: 428px;
    position: absolute;
    z-index: 2;
    right: -98px;
    top: 159px;
  }

  .fx2-sobre .mapa-brasil .estado-mapa {
    cursor: pointer;
  }

  .fx2-sobre .mapa-brasil .estado-mapa img {
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  .fx2-sobre .mapa-brasil .estado-mapa:hover img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(78%) saturate(497%) hue-rotate(89deg) brightness(92%) contrast(87%);
  }

  .fx2-sobre .pin-para{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
  }

  .fx2-sobre .pin-para img{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    filter: none!important;
  }

  .fx2-sobre .pin-maranhao{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
    right: 47%;
  }

  .fx2-sobre .pin-maranhao img{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    filter: none!important;
  }

  .fx2-sobre .unidades {
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 100px 0 0 0;
  }

  .fx2-sobre .txt {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .fx2-sobre .txt .icn {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx2-sobre .mobile{
    display: none;
  }

  .fx2-sobre .link-unidade{
    color: var(--kry-color-1);
  }

  #map .state {
    cursor: pointer;
  }

  #map .state .shape {
    cursor: pointer;
    -width: 0;
  }

  #map .state:hover .label_state,
  #map .state.hover .label_state {
    display: block;
  }

  #map .model-green .state .shape {
    fill: #e47171;
  }

  #map .model-green .state #shape_ro,
  #map .model-green .state #shape_ac,
  #map .model-green .state #shape_rr,
  #map .model-green .state #shape_ma,
  #map .model-green .state #shape_to,
  #map .model-green .state #shape_al,
  #map .model-green .state #shape_pe,
  #map .model-green .state #shape_rn,
  #map .model-green .state #shape_sp,
  #map .model-green .state #shape_rs,
  #map .model-green .state #shape_se,
  #map .model-green .state #shape_pb{
    fill: var(--kry-preto);
  }

  #map .model-green .state:hover .shape,
  #map .model-green .state.hover .shape {
    fill: #279f4c!important;
  }

  .fx3-sobre {
    padding: 20px 0 80px 0;
    background-color: var(--kry-branco);
    overflow: hidden;
  }

  .fx3-sobre .carrossel {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .fx3-sobre .swiper-wrapper {
    align-items: stretch;
  }

  .fx3-sobre .swiper-slide {
    height: auto;
  }

  .fx3-sobre .card {
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    text-decoration: none;
  }

  .fx3-sobre .card .img {
    width: 100%;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx3-sobre .card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fx3-sobre .card .icn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 58px;
    right: 10px;
    z-index: 2;
  }

  .fx3-sobre .card .icn img {
    width: 100%;
    height: auto;
    display: block;
  }

  .fx3-sobre .card .info {
    display: flex;
    flex-direction: column;
  }

  .fx3-sobre .card .info span {
    font-family: var(--regular);
    font-size: 17px;
    line-height: 30px;
    color: var(--kry-preto);
  }

  .fx3-sobre .card .info .nome {
    font-family: var(--bold);
    font-size: 22px;
    line-height: 30px;
  }

  .fx3-sobre .scrollbar__inner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 25px;
    position: relative;
  }

  .fx3-sobre .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    min-height: 12px;
    background-color: #EEEEEE;
    border-radius: 0;
  }

  .fx3-sobre .swiper-scrollbar-drag {
    height: 100%;
    min-height: 12px;
    border-radius: 100px!important;
    background-color: var(--kry-color-1);
    border-radius: 0;
  }

/*ARCHIVE UNIDADES*/
  .archive-unidades{
    padding: 50px 0;
    background-color: var(--kry-branco);
  }

  .archive-unidades h2{
    font-size: 32px;
    color: var(--kry-color-1);
    margin: 0 0 20px 0;
  }

  .archive-unidades .conteudo{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .archive-unidades .card{
    width: 330px;
    height: auto;
    padding: 20px 15px;
    display: flex;
    background-color: var(--kry-color-2);
  }

/*SINGLE UNIDADES*/
  .single-unidades{
    padding: 50px 0;
    background-color: var(--kry-branco);
  }

  .single-unidades h2{
    margin: 0 0 30px;
  }

  .single-unidades .area-btn{
    padding: 30px 0 0 0;
    width: 100%;
    max-width: 370px;
  }

/*CATEGORIAS PRODUTOS*/
  .banner-categorias-produtos {
    min-height: 750px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 150px;
  }

  .banner-categorias-produtos h1,
  .banner-categorias-produtos p {
    color: var(--kry-preto);
  }

  .banner-categorias-produtos p {
    font-size: 20px;
  }

  .banner-categorias-produtos .conteudo {
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  .banner-categorias-produtos .txt {
    text-align: left;
  }

  .banner-categorias-produtos .area-btn {
    width: 100%;
    max-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-categorias-produtos .infos {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    padding: 0 0 20px 0;
  }

  .banner-categorias-produtos .infos .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 10px;
    border-left: 2px solid var(--kry-preto);
    width: auto;
    max-width: 450px;
  }

  .banner-categorias-produtos .infos .item p {
    font-size: 16px;
  }

  .banner-categorias-produtos .infos .item strong {
    margin-bottom: -10px;
    display: flex;
  }

  .banner-categorias-produtos {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .banner-categorias-produtos::before {
    height: 100%;
    max-height: 750px;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(255, 255, 255, 0.35) 55%,
        rgba(255, 255, 255, 0) 75%
      ),
      linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.65) 35%,
        rgba(255, 255, 255, 0) 75%
      );
  }

  .fx1-categorias-produtos{
    background-color: var(--kry-branco);
  }

  .fx1-categorias-produtos .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
    gap: 30px;
  }

  .fx1-categorias-produtos .txt {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 470px;
    padding: 40px 0 0 0;
    text-align: justify;
  }

  .fx1-categorias-produtos .carrossel-categoria {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 670px;
  }

  .fx1-categorias-produtos .area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
    padding: 20px 0 0 0;
  }

  .fx1-categorias-produtos .img {
    width: 670px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx1-categorias-produtos .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: 20px !important;
    width: 100%;
    height: 100%;
    min-height: 12px;
    background-color: #ffffff73;
    border-radius: 100px;
  }

  .fx1-categorias-produtos .swiper-scrollbar-drag {
    height: 100%;
    min-height: 12px;
    border-radius: 100px;
    background-color: var(--kry-color-1);
  }

  .fx1-categorias-produtos h2{
    font-size: 42px;
  }

  .fx2-categorias-produtos {
    padding: 20px 0;
    border-top: 3px solid #DDDDDD;
    border-bottom: 3px solid #DDDDDD;
  }

  .fx2-categorias-produtos .conteudo {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
  }

  .fx2-categorias-produtos .divisor {
    width: 2px;
    height: 70px;
    background-color: #DDDDDD;
  }

  .fx2-categorias-produtos a {
    width: 270px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .fx2-categorias-produtos a:hover span {
    color: var(--kry-color-1);
  }

  .fx2-categorias-produtos a .icn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx2-categorias-produtos a span {
    font-family: var(--bold);
    font-size: 16px;
    color: var(--kry-preto);
  }

  .fx3-categorias-produtos {
    background-color: var(--kry-branco);
  }

  .fx3-categorias-produtos h2{
    font-size: 42px;
  }

  .fx3-categorias-produtos .conteudo {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
  }

  .fx3-categorias-produtos .txt {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 470px;
    gap: 20px;
    padding: 40px 0;
  }

  .fx3-categorias-produtos .txt .itens-caracteristicas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 0 10px;
  }

  .fx3-categorias-produtos .txt a {
    font-family: var(--bold);
    font-size: 18px;
    color: var(--kry-preto);
    transition: 0.2s ease-in-out;
    padding: 0 0 5px 0;
    border-bottom: 3px solid var(--kry-color-2);
    cursor: pointer;
  }

  .fx3-categorias-produtos .txt a:hover,
  .fx3-categorias-produtos .txt a.ativo {
    color: var(--kry-color-1);
    border-color: var(--kry-color-1);
  }

  .fx3-categorias-produtos .itens {
    width: 100%;
    max-width: 670px;
    position: relative;
    min-height: 450px;
    padding: 0 0 20px;
  }

  .fx3-categorias-produtos .img-txt {
    width: 100%;
    max-width: 670px;
    display: flex;
    flex-direction: column;
    background-color: var(--kry-color-2);
    overflow: hidden;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .fx3-categorias-produtos .img-txt.ativo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .fx3-categorias-produtos .img-txt .img {
    width: 670px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx3-categorias-produtos .img-txt .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fx3-categorias-produtos .img-txt .info {
    padding: 5px 20px 20px;
  }

  .fx3-categorias-produtos .img-txt ul{
    margin: 0;
    padding: 0 0 0 20px;
  }

  .fx3-categorias-produtos .img-txt ::marker {
    color: var(--kry-color-1);
  }

  .fx4-categorias-produtos {
    padding: 50px 0;
  }

  .fx4-categorias-produtos .conteudo {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx4-categorias-produtos .titulo {
    width: 100%;
    max-width: 1170px;
    display: flex;
  }

  .fx4-categorias-produtos h2 {
    font-size: 42px;
  }

  .fx4-categorias-produtos .card {
    width: 370px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--kry-branco);
    overflow: hidden;
  }

  .fx4-categorias-produtos .card .img {
    width: 370px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .fx4-categorias-produtos .card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .fx4-categorias-produtos .card:hover .img img {
    transform: scale(1.08);
  }

  .fx4-categorias-produtos .card .txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px 15px 15px;
  }

  .fx4-categorias-produtos .card .txt span {
    font-family: var(--bold);
    font-size: 16px;
    color: var(--kry-color-1);
  }

  .fx4-categorias-produtos .card .txt p {
    font-size: 14px;
    text-align: justify;
    line-height: normal;
  }

  .fx4-categorias-produtos .card .infos {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fx4-categorias-produtos .card .infos span {
    font-family: var(--regular);
    font-size: 14px;
    color: #595354;
  }

  .fx6-categorias-produtos {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 320px;
  }

  .fx6-categorias-produtos h2,
  .fx6-categorias-produtos p {
    color: var(--kry-branco);
  }

  .fx6-categorias-produtos h2 {
    font-size: 42px;
  }

  .fx6-categorias-produtos .area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
    padding: 20px 0 0;
  }

/*ARCHIVE CATEGORIAS PRODUTOS*/
  .categorias-archive{
    background-color: var(--kry-branco);
  }

  .categorias-archive .card{
    box-shadow: 3px 0px 10px 10px rgba(0, 0, 0, 0.1);
  }

/*SINGLE PRODUTOS*/
  .fx1-single-produtos {
    padding: 104px 0 0 0;
    background-color: var(--kry-branco);
  }

  .fx1-single-produtos h1 {
    font-family: var(--bold);
    font-size: 50px;
    margin: 0;
  }

  .fx1-single-produtos .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx1-single-produtos .txt-btn-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 470px;
    padding: 60px 0;
  }

  .fx1-single-produtos .txt-btn-info .txt {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fx1-single-produtos .txt-btn-info .area-btn {
    width: 100%;
    max-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 20px 0;
  }

  .fx1-single-produtos .img {
    width: 670px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: stretch;
  }

  .fx2-single-produtos {
    border-top: 3px solid #DDDDDD;
    border-bottom: 3px solid #DDDDDD;
    padding: 20px 10px;
  }

  .fx2-single-produtos .infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1920px;
  }

  .fx2-single-produtos .infos .item {
    width: auto;
    padding: 0 0 0 15px;
    border-left: 3px solid #DDDDDD;
  }

  .fx2-single-produtos .item strong{
    color: var(--kry-color-1);
  }

  .fx2-single-produtos .infos .item span {
    font-family: var(--bold);
    font-size: 12px;
    color: var(--kry-color-1);
  }

  .fx3-single-produtos {
    padding: 40px 0 50px;
    background-color: var(--kry-branco);
  }

  .fx3-single-produtos h2{
    font-size: 42px;
  }

  .fx3-single-produtos .conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
  }

  .fx3-single-produtos .accordion-tabelas {
    width: 100%;
  }

  .fx3-single-produtos .accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
    background-color: var(--kry-branco);
    box-shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
  }

  .fx3-single-produtos .accordion-header {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 20px 25px;
    background-color: var(--kry-color-1);
    color: var(--kry-branco);
    font-family: var(--bold);
    font-size: 18px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .accordion-header::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .fx3-single-produtos .accordion-header span {
    font-size: 26px;
    line-height: 1;
    transition: transform 0.3s ease;
  }

  .fx3-single-produtos .accordion-item.active .accordion-header span {
    transform: rotate(45deg);
  }

  .fx3-single-produtos .accordion-content {
    display: none;
  }

  .fx3-single-produtos .accordion-item.active .accordion-content {
    display: block;
  }

  .fx3-single-produtos table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--kry-branco);
    font-family: var(--regular);
  }

  .fx3-single-produtos table tr {
    border-bottom: 1px solid var(--kry-color-2);
  }

  .fx3-single-produtos table tr:last-child {
    border-bottom: none;
  }

  .fx3-single-produtos table tr:hover {
    background-color: var(--kry-color-2);
  }

  .fx3-single-produtos table td {
    width: 50%;
    padding: 20px 25px;
    color: var(--kry-preto);
    font-size: 17px;
    line-height: 24px;
    vertical-align: middle;
  }

  .fx3-single-produtos table td:first-child {
    font-family: var(--semibold);
  }

  .fx3-single-produtos table td + td {
    border-left: 1px solid var(--kry-color-2);
  }

  .fx3-single-produtos .accordion-header br{
    display: none;
  }

/*PÁGINA HISTÓRIA */
  .fx1-historia h2 {
    font-size: 36px;
  }

  .fx1-historia p {
    text-align: justify;
  }

  .fx1-historia .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx1-historia .txt {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .fx1-historia .img {
    width: 670px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx2-historia {
    padding: 50px 0;
    background-color: var(--kry-branco);
  }

  .fx2-historia h2 {
    font-size: 36px;
  }

  .fx2-historia .conteudo {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .fx2-historia .carrossel-historia {
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
  }

  .fx2-historia .carrossel-historia .swiper-wrapper {
    align-items: stretch;
  }

  .fx2-historia .carrossel-historia .card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    background-color: var(--kry-color-2);
  }

  .fx2-historia .carrossel-historia .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  .fx2-historia .carrossel-historia .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fx2-historia .carrossel-historia .ano {
    font-family: var(--bold);
    font-size: 18px;
    padding: 0 15px;
  }

  .fx2-historia .carrossel-historia .acontecimentos {
    padding: 0 15px 15px;
  }

  .fx2-historia .carrossel-historia .acontecimentos ul {
    padding: 0 0 0 20px;
    margin: 0;
  }

  .fx2-historia .carrossel-historia .acontecimentos li {
    font-size: 16px;
    padding: 0 0 15px 0;
  }

  .fx2-historia .carrossel-historia .acontecimentos ::marker {
    color: var(--kry-color-1);
  }

  .fx2-historia .carrossel-historia .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 30px;
    width: 100%;
    height: 4px;
  }

  .fx2-historia .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: 20px !important;
    width: 100%;
    height: 100%;
    min-height: 12px;
    background-color: var(--kry-color-2);
    border-radius: 100px;
  }

  .fx2-historia .swiper-scrollbar-drag {
    height: 100%;
    min-height: 12px;
    border-radius: 100px;
    background-color: var(--kry-color-1);
  }

/*PÁGINA FAZENDA CONECTADA*/
  .fx1-fazenda {
    background-color: var(--kry-preto);
    padding: 30px 0 0;
    transition: 0.3s ease;
    z-index: 999;
  }

  .fx1-fazenda.fx1-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  header.header-hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    pointer-events: none;
  }

  .fx1-fazenda .conteudo {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx1-fazenda a {
    font-family: var(--bold);
    font-size: 18px;
    color: var(--kry-branco);
    padding: 0 0 26px 0;
    border-bottom: 4px solid transparent;
    transition: 0.2s ease-in-out;
  }

  .fx1-fazenda a:hover {
    color: var(--kry-color-1);
    border-color: var(--kry-color-1);
  }

  .fx1-fazenda a:active {
    color: var(--kry-color-1);
    border-color: var(--kry-color-1);
  }

  .fx2-fazenda {
    padding: 50px 0;
    background-color: var(--kry-branco);
  }

  .fx2-fazenda h2 {
    font-size: 36px;
  }

  .fx2-fazenda .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx2-fazenda .txt {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 470px;
  }

  .fx2-fazenda .video {
    display: flex;
    width: 100%;
    max-width: 670px;
    aspect-ratio: 16 / 9;
  }

  .fx2-fazenda .video iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .fx3-fazenda {
    padding: 50px 0;
  }

  .fx3-fazenda h2 {
    font-size: 36px;
  }

  .fx3-fazenda strong {
    font-family: var(--bold);
    color: var(--kry-color-1);
  }

  .fx3-fazenda .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx3-fazenda .img {
    width: 670px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx3-fazenda .txt {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fx3-fazenda .txt .safra {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 20px;
  }

  .fx3-fazenda .txt .safra .item {
    width: 100%;
    max-width: 215px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
  }

  .fx3-fazenda .txt .safra .icn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx3-fazenda .txt .safra .info{
    width: 100%;
    max-width: 170px;
    display: flex;
    flex-direction: column;
  }

  .fx3-fazenda .txt .safra .info p {
    font-size: 12px;
    line-height: normal;
  }

  .fx3-fazenda .txt .safra .info p strong {
    font-size: 16px;
  }

  .fx4-fazenda, .fx6-fazenda{
    background-color: var(--kry-branco);
  }

  .fx6-fazenda .conteudo{
    align-items: flex-start;
  }

  .fx6-fazenda .txt{
    max-width: 600px;

  }

  .fx7-fazenda{
    padding: 50px 0px;
    background-color: transparent;
  }

  .fx7-fazenda h2{
    font-size: 36px;
  }

  .fx7-fazenda .card {
    margin-bottom: 40px;
  }

  .fx7-fazenda .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: 0px !important;
    width: 100%;
    height: 100%;
    min-height: 12px;
    background-color: var(--kry-branco);
    border-radius: 100px;
  }

  .fx7-fazenda .swiper-scrollbar-drag {
    height: 100%;
    min-height: 12px;
    border-radius: 100px;
    background-color: var(--kry-color-1);
  }

  .fx8-fazenda {
    padding: 50px 0;
    background-color: var(--kry-branco);
  }

  .fx8-fazenda h2{
    font-size: 36px;
  }

  .fx8-fazenda .conteudo {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .fx8-fazenda .galeria-imagem {
    width: 100%;
    overflow: hidden;
    padding-bottom: 35px;
  }

  .fx8-fazenda .galeria-imagem .swiper-wrapper {
    align-items: stretch;
  }

  .fx8-fazenda .img {
    width: 270px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .fx8-fazenda .img a {
    width: 100%;
    height: 100%;
    display: block;
  }

  .fx8-fazenda .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .fx8-fazenda .swiper-slide {
    height: auto;
  }

  .fx8-fazenda .swiper-scrollbar {
    bottom: 0;
  }

  .fx8-fazenda .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: 0px !important;
    width: 100%;
    height: 100%;
    min-height: 12px;
    background-color: var(--kry-color-2);
    border-radius: 100px;
  }

  .fx8-fazenda .swiper-scrollbar-drag {
    height: 100%;
    min-height: 12px;
    border-radius: 100px;
    background-color: var(--kry-color-1);
  }

  .fx9-fazenda {
    padding: 50px 0;
  }

  .fx9-fazenda h2 {
    font-size: 36px;
  }

  .fx9-fazenda .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx9-fazenda .txt {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 470px;
  }

  .fx9-fazenda .img {
    width: 670px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx9-fazenda ul {
    padding: 0 0 0 25px;
  }

  .fx9-fazenda ul ::marker {
    color: var(--kry-color-1);
  }

  .fx10-fazenda .area-btn, 
  .fx9-fazenda .area-btn{
    width: 100%;
    max-width: 370px;
  }

  .fx11-fazenda {
    padding: 50px 0;
    flex-direction: column;
    gap: 20px;
  }

  .fx11-fazenda h2 {
    font-size: 36px;
  }

  .fx11-fazenda .conteudo {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fx11-fazenda .parceiros {
    width: 100%;
    overflow: hidden;
    padding-bottom: 35px;
  }

  .fx11-fazenda .parceiros .swiper-wrapper {
    align-items: stretch;
  }

  .fx11-fazenda .card {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--kry-branco);
  }

  .fx11-fazenda .card .img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx11-fazenda .card .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }

  .fx11-fazenda .card .txt {
    padding: 5px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .fx11-fazenda .card .txt span {
    font-family: var(--bold);
    font-size: 18px;
  }

  .fx11-fazenda .card .txt p {
    line-height: normal;
  }

  .fx11-fazenda .swiper-slide {
    height: auto;
  }

  .fx11-fazenda .swiper-scrollbar {
    bottom: 0;
  }

  .fx11-fazenda .swiper-scrollbar {
    position: relative;
    left: auto;
    bottom: 0px !important;
    width: 100%;
    height: 100%;
    min-height: 12px;
    background-color: var(--kry-color-2);
    border-radius: 100px;
  }

  .fx11-fazenda .swiper-scrollbar-drag {
    height: 100%;
    min-height: 12px;
    border-radius: 100px;
    background-color: var(--kry-color-1);
  }

/*ARCHIVE GALERIA DE VIDEOS*/
  .fx1-galeria-videos {
    padding: 50px 0;
    background-color: var(--kry-color-2);
  }

  .fx1-galeria-videos .conteudo {
    max-width: 1200px;
  }

  .fx1-galeria-videos .videos {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .fx1-galeria-videos .item {
    width: 370px;
    height: 220px;
    overflow: hidden;
    background-color: var(--kry-preto);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
  }

  .fx1-galeria-videos .item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
  }

/*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: 0px;
    position: relative;
    overflow: hidden;
  }

  .pg-404::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../imagens/banner-1.jpg') center/cover no-repeat;
    opacity: 0.05;
  }

  .pg-404 .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }

  .pg-404 h1 {
    font-family: var(--bold);
    font-size: 150px;
    line-height: 1;
    margin: 0;
    color: var(--kry-color-1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }

  .pg-404 h2 {
    font-family: var(--semibold);
    font-size: 26px;
    margin: 20px 0px;
    color: var(--kry-branco);
    letter-spacing: 0.5px;
  }

  .pg-404 .editor {
    font-family: var(--regular);
    font-size: 18px;
    color: #d8e0f0;
    line-height: 1.6;
  }

  .pg-404 .editor a {
    color: var(--kry-branco)!important;
    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-color-1)!important;
  }

/*PAGINA PADRÃO WORDPRESS*/
  .page-padrao {
    background-color: var(--kry-branco);
    padding: 130px 10px 50px 10px;
    color: var(--kry-preto);
    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(--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(--regular);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--kry-preto);
  }

  .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 {
    padding: 150px 0px 50px 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: 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(--bold);
    font-size: 24px;
    color: var(--kry-preto);
    margin: 0 0 10px 0;
    text-align: justify;
  }

  .blog03 .post .post-cat {
    display: inline-block;
    background-color: var(--kry-color-1);
    color: #fff;
    font-family: var(--bold);
    font-size: 13px;
    padding: 5px 15px;
    border: 2px solid transparent;
    margin: 0 5px 10px 0;
    text-align: center;
  }

  .blog03 .post .postautor {
    font-family: var(--bold);
    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;
  }

  .blog03 .post .post-resumo {
    font-family: var(--regular);
    font-size: 16px;
    color: var(--kry-preto);
    line-height: 25px;
    text-align: justify;
  }

  .blog03 .post .post-resumo .lermais {
    display: inline-block;
    margin-top: 8px;
    font-weight: bold;
    color: var(--kry-color-1);
  }

  .blog03 .post a {
    color: inherit;
    text-decoration: none;
  }

  .blog03 .post .clearfix {
    clear: both;
    border: 1px solid var(--kry-preto);
    margin-top: 20px;
  }

  .blog03 .sidebar {
    width: 100%;
    max-width: 270px;
  }

  .blog03 .sidebar form.buscar {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
  }

  .blog03 .sidebar form.buscar input[type='text'] {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid var(--kry-color-1);
    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;
    background: none;
    padding: 6px;
    cursor: pointer;
    background-color: var(--kry-color-1);
  }

  .blog03 .sidebar form.buscar button#buscar img {
    width: 18px;
    height: auto;
  }

  .blog03 .sidebar .cor {
    width: 15px;
    min-height: 69px;
    background-color: var(--kry-color-1);
    margin: 0 15px 0 0;
  }

  .blog03 .sidebar .sidebarcategoria {
    display: flex;
    align-items: center;
    background-color: var(--kry-branco);
    padding: 0 10px 0 0;
    margin-bottom: 12px;
    color: var(--kry-preto);
    text-decoration: none;
    min-height: 69px;
  }

  .blog03 .sidebar .sidebarcategoria .sctxt {
    font-family: 'OpenSans-Bold'!important;
    font-size: 12px;
    font-family: var(--bold);
    color: var(--kry-color-1);
    line-height: 1.2;
    flex: 1;
    text-transform: uppercase;
  }

  .blog03 .sidebar .sobre-autor {
    background: var(--kry-branco);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .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;
    margin-bottom: 10px;
  }

  .blog03 .sidebar .sobre-autor .nome-autor {
    font-size: 16px;
    font-weight: bold;
    color: var(--kry-preto);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--kry-preto);
    padding-bottom: 5px;
    width: 100%;
  }

  .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;
    color: #8D8D8D;
    font-size: 13px;
    font-family: var(--regular);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .blog03 .wp-pagenavi a:hover {
    background: #fff;
    color: var(--kry-color-1);
  }

  .blog03 .wp-pagenavi .current {
    background: var(--kry-color-1);
    color: #fff;
  }

  .blog03 .opost .post-title {
    font-family: var(--bold);
    font-size: 28px;
    color: var(--kry-preto);
    margin-bottom: 15px;
    text-align: justify;
  }

  .blog03 .opost .editor {
    font-size: 16px;
    color: var(--kry-preto);
    line-height: 1.8;
    font-family: var(--regular);
    text-align: justify;
  }

  .blog03 .opost .editor h2,
  .blog03 .opost .editor h3,
  .blog03 .opost .editor h4 {
    margin: 30px 0 15px;
    font-family: var(--bold);
    color: var(--kry-preto);
  }

  .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(--bold);
    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(--bold);
    font-size: 15px;
    color: var(--kry-preto);
    text-decoration: none;
    margin-bottom: 10px;
    width: 100%;
    max-width: 270px;
  }

  .blog03 .artigos-relacionados .linkartigo img {
    transition: box-shadow 0.3s;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 270px;
    height: 150px;
    object-fit: cover;
  }

  .blog03 .comentarios-titulo {
    font-size: 20px;
    font-family: var(--bold);
    color: var(--kry-preto);
    margin: 20px 0px;
  }

  .blog03 .fundo-form {
    background-color: var(--kry-branco);
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .blog03 .fundo-form h3{
    color: var(--kry-preto);
  }

  .blog03 .fundo-form input,
  .blog03 .fundo-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--kry-preto);
    resize: none;
    width: 100%;
    max-width: 800px;
  }

  .blog03 .fundo-form input:focus,
  .blog03 .fundo-form textarea:focus {
    border-color: var(--kry-color-1);
    outline: none;
  }

  .blog03 .fundo-form input[type="submit"] {
    background: var(--kry-color-1);
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    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-branco);
    padding: 20px;
    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;
    background-color: var(--kry-color-1);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bold);
    flex-shrink: 0;
  }

  .blog03 .nautor .nanome {
    font-size: 15px;
    font-family: var(--bold);
    color: var(--kry-color-3);
  }

  .blog03 .nautor .natxt {
    font-size: 14px;
    font-family: var(--regular);
    color: var(--kry-preto);
    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;
  }

  .blog03 .logged-in-as{
    color: var(--kry-preto);
  }

  .blog03 .comment-form-comment{
    color: var(--kry-preto);
  }

  .blog03 .nenhum-post p{
    color: var(--kry-preto);
  }

  .blog03 .text-center{
    color: var(--kry-branco);
  }

  .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;
    }
  }

/*RESPONSIVO*/
  @media (max-width: 1200px) {
    .blog03 {
      padding: 30px 10px 10px;
    }

    .blog03 .post {
      padding: 10px;
    }

    .blog03 .sidebar {
      padding: 30px 0 !important;
    }

    .blog03 .opost {
      margin: 0;
    }  
  }

  @media (max-width: 1025px) {
    h1{
      font-size: 28px!important;
    }

    h2{
      font-size: 18px!important;
    }

    h3{
      font-size: 17px!important;
    }

    h4{
      font-size: 16px!important;
    }

    p, li{
      font-size: 14px!important;
      line-height: normal!important;
    }

    br{
      display: none!important;
    }

    .blog03 .row{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    } 

    .page-padrao {
      padding-top: 80px;
    }

    .header-menu,
    .popup-pesquisa{
      display: none;
    }

    .header-responsivo {
      display: block;
      position: fixed;
      width: 100%;
      max-width: 1004px;
    }

    .header-responsivo .conteudo {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-responsivo .logo{
      width: 100%;
      max-width: 180px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 0 0 20px;
    }

    .header-responsivo .item-ham {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: flex-end;
      padding: 0 30px 0 0;
      position: relative;
      z-index: 9998;
    }

    .header-responsivo .paginas {
      position: fixed;
      top: 0;
      right: 0;
      width: 85%;
      max-width: 320px;
      height: 100vh;
      background-color: var(--kry-preto);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 40px 25px 30px;
      box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
      transform: translateX(100%);
      transition: transform 0.35s ease;
      z-index: 1001;
      overflow-y: auto;
    }

    .header-responsivo .paginas a {
      color: var(--kry-color-2);
      font-family: var(--regular);
      font-size: 16px;
      border-bottom: 1px solid transparent;
      transition: 0.3s ease-in-out;
      text-decoration: none;
      padding: 10px 0;
      width: 100%;
    }

    .header-responsivo .paginas a:hover {
      border-color: var(--kry-color-2);
    }

    .header-responsivo .paginas .linha {
      width: 100%;
      height: 1px;
      background: #ddd;
    }  

    .footer .conteudo{
      padding: 20px 10px!important;
    }

    .footer .itens-rede{
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .footer .mapa-site{
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .footer .creditos{
      padding: 20px 10px 100px 10px;
    }

    .footer .creditos .dados-site{
      flex-direction: column;
      justify-content: center;
      gap: 15px;
    }

    .footer h3.margin {
      padding: 10px;
      margin: 0;
    }

    .banner{
      height: auto;
      height: 300px;
    }

    .banner .banner__carrossel {
      width: 100%;
      min-height: 300px;
    }

    .banner .conteudo{
      align-items: center;
      gap: 10px;
    }

    .banner .txt{
      text-align: center;
      padding: 50px 0 20px 0;
    }

    .banner h1,
    .banner h3{
      line-height: normal;
    }

    .fx1-home,
    .fx3-home,
    .fx5-home{
      padding: 20px 10px;
    }

    .fx1-home .conteudo{
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .fx1-home .txt-btn{
      align-items: center;
      justify-content: center;
    }

    .fx1-home .txt {
      text-align: center;
    }

    .fx1-home .img {
      width: 100%;
      max-width: 470px;
      height: auto;
    }  

    .fx2-home{
      margin: 0;
      padding: 20px 10px;
    }

    .fx3-home .titulo{
      text-align: center;
    }

    .fx3-home .itens-maq{
      justify-content: center;
      gap: 10px;
    }

    .fx3-home .card {
      justify-content: flex-start;
      gap: 20px;
    }

    .fx4-home{
      min-height: 300px;
      height: auto;
      padding: 20px 10px;
    }

    .fx4-home .barras{
      display: none;
    }

    .fx4-home .conteudo{
      justify-content: center;
    }

    .fx4-home .txt-btn{
      align-items: center;
      text-align: center;
    }

    .fx5-home .itens-explore{
      justify-content: center;
    }

    .fx5-home .linha{
      display: none;
    }

    .fx5-home .titulo{
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    .fx1-garantia{
      padding: 20px 10px;
    }

    .fx1-garantia .conteudo{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .fx1-garantia .txt-btn{
      background-color: transparent;
      padding: 0;
      width: 100%;
      max-width: 670px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx1-garantia .txt-direita{
      padding: 0;
      width: 100%;
      max-width: 670px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .banner-pages{
      min-height: 300px;
      height: auto;
      padding: 20px 10px;
    }

    .banner-pages .conteudo{
      align-items: center;
    }

    .banner-pages .txt{
      text-align: center;
      padding: 40px 0 0 0;
    }

    .fx1-smart, 
    .fx2-smart,
    .fx4-smart{
      padding: 20px 10px;
    }

    .fx1-smart .conteudo{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .fx1-smart .txt{
      max-width: 670px;
      padding: 0;
      text-align: center;
    }

    .fx1-smart .img{
      width: 100%;
      max-width: 570px;
      height: auto;
    }

    .fx2-smart .conteudo{
      align-items: center;
      justify-content: center;
    }

    .fx2-smart .item{
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 670px;
      gap: 0;
    }

    .fx2-smart .item .icn-txt{
      flex-direction: column;
      justify-content: center;
    }

    .fx3-smart{
      padding: 20px 10px;
      background-image: none!important;
      min-height: auto;
    }

    .fx3-smart .conteudo{
      justify-content: center;
    }

    .fx3-smart .txt{
      max-width: 670px;
      gap: 10px;
    }

    .fx3-smart ul {
      padding: 0 0 0 20px;
    }

    .fx4-smart .conteudo{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .fx4-smart .perguntas{
      max-width: 670px;
    }

    .fx4-smart .perguntas ul {
      padding: 0 0 0 20px;
    }

    .fx4-smart .contrato .img{
      width: 100%;
      max-width: 370px;
      height: auto;
    }

    .fx5-smart{
      min-height: auto;
      padding: 20px 10px;
    }

    .fx5-smart .conteudo{
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fx5-smart .txt{
      max-width: 670px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx1-servicos,
    .fx2-servicos,
    .fx4-servicos{
      background-image: none!important;
      min-height: auto;
      padding: 20px 10px;
    }

    .fx1-servicos .conteudo,
    .fx2-servicos .conteudo,
    .fx4-servicos .conteudo{
      justify-content: center;
    }

    .fx1-servicos .txt,
    .fx2-servicos .txt,
    .fx4-servicos .txt{
      max-width: 670px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx1-servicos p,
    .fx2-servicos p,
    .fx4-servicos p{
      text-align: center;
    }

    .fx3-servicos{
      min-height: auto;
      padding: 20px 10px;
      background-image: none!important;
    }

    .fx3-servicos .conteudo{
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .fx3-servicos .img{
      width: 100%;
      max-width: 570px;
      height: auto;
    }

    .fx3-servicos .txt{
      align-items: center;
      justify-content: center;
      max-width: 670px;
      text-align: center;
    }

    .fx3-servicos .area-btn{
      padding: 0;
    }

    .fx5-servicos{
      padding: 20px 10px;
      background-color: var(--kry-preto);
    }

    .fx5-servicos .conteudo{
      min-height: auto;
      background-image: none!important;
    }

    .fx5-servicos .txt{
      padding: 0px;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 100%;
    }

    .fx2-servicos-financeiros{
      padding: 20px 10px;
    }

    .fx2-servicos-financeiros .conteudo{
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .fx2-servicos-financeiros .txt-btn{
      width: 100%;
      max-width: 670px;
      align-items: center;
      gap: 15px;
    }

    .fx1-sobre{
      padding: 20px 10px;
    }

    .fx1-sobre .conteudo{
      flex-direction: column;
      align-items: center;
    }

    .fx1-sobre .txt,
    .fx1-sobre .mvv{
      max-width: 670px;
      text-align: center;
    }

    .fx1-sobre .mvv .item{
      flex-direction: column;
      align-items: center;
      gap: 5px;
      text-align: center;
    }

    .fx2-sobre .desktop{
      display: none!important;
    }

    .fx2-sobre .mobile{
      display: block;
    }

    .fx2-sobre .txt{
      flex-direction: column;
      align-items: flex-start;
    }

    .fx2-sobre .txt a{
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .fx5-smart .sobre-btn{
      padding: 0;
    }

    .fx2-sobre{
      padding: 20px 10px;
    }

    .fx2-sobre .conteudo{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .fx2-sobre .mapa-brasil{
      display: none;
    }

    .fx2-sobre .unidades{
      padding: 0;
    }

    .fx3-sobre{
      padding: 20px 10px;
    }

    .fx3-sobre{
      overflow: hidden;
    }

    .fx3-sobre .scrollbar__inner {
      width: 100%;
      max-width: 1170px;
      margin: 0;
      position: relative;
    }

    .banner-categorias-produtos{
      justify-content: center;
      gap: 0px;
    }

    .banner-pages::before {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.35) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .banner-categorias-produtos .infos{
      align-items: center;
      gap: 30px;
      padding: 45px 10px 20px 10px;
    }

    .banner-categorias-produtos .infos .item strong {
      margin-bottom: 0;
    }

    .fx1-categorias-produtos{
      padding: 20px 10px;
    }

    .fx1-categorias-produtos .conteudo{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .fx1-categorias-produtos .txt{
      align-items: center;
      padding: 0;
      max-width: 670px;
      text-align: center;
    }

    .fx1-categorias-produtos .img {
      height: 370px;
    }

    .fx2-categorias-produtos{
      padding: 20px 0px;
    }

    .fx2-categorias-produtos .conteudo{
      align-items: center;
      flex-direction: column;
      gap: 20px;
    }

    .fx2-categorias-produtos .divisor{
      width: 100%;
      height: 3px;
    }

    .fx2-categorias-produtos a{
      padding: 0 5px;
    }

    .fx3-categorias-produtos {
      padding: 20px 10px;
    }

    .fx3-categorias-produtos h2 {
      font-size: 32px;
      line-height: 38px;
      text-align: center;
    }

    .fx3-categorias-produtos .conteudo {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .fx3-categorias-produtos .txt {
      max-width: 100%;
      padding: 0;
      gap: 25px;
    }

    .fx3-categorias-produtos .txt .itens-caracteristicas {
      width: 100%;
      padding: 0;
      gap: 12px;
    }

    .fx3-categorias-produtos .txt a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 16px;
      line-height: 22px;
      padding: 15px;
      border: 1px solid var(--kry-color-2);
      background-color: var(--kry-branco);
    }

    .fx3-categorias-produtos .txt a::after {
      content: "+";
      font-family: var(--bold);
      font-size: 22px;
      color: var(--kry-color-1);
      margin-left: 15px;
    }

    .fx3-categorias-produtos .txt a.ativo::after {
      content: "−";
    }

    .fx3-categorias-produtos .txt a:hover,
    .fx3-categorias-produtos .txt a.ativo {
      color: var(--kry-color-1);
      border-color: var(--kry-color-1);
    }

    .fx3-categorias-produtos .itens {
      display: none;
    }

    .fx3-categorias-produtos .img-txt {
      max-width: 100%;
      position: static;
      inset: auto;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      margin: -12px 0 12px 0;
      overflow: hidden;
      transition: none;
    }

    .fx3-categorias-produtos .img-txt .img {
      display: none;
    }

    .fx3-categorias-produtos .img-txt .info {
      padding: 16px;
    }

    .fx3-categorias-produtos .img-txt .info p,
    .fx3-categorias-produtos .img-txt .info li {
      font-size: 15px;
      line-height: 23px;
    }  

    .fx4-categorias-produtos{
      padding: 20px 10px;
    }

    .fx4-categorias-produtos .conteudo{
      justify-content: center;
    }

    .fx4-categorias-produtos .titulo{
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx4-categorias-produtos .card{
      width: 100%;
      max-width: 370px;
    }

    .fx6-categorias-produtos{
      padding: 20px 10px;
      min-height: auto;
    }

    .fx6-categorias-produtos .txt{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx1-single-produtos{
      padding: 40px 10px 20px 10px;
    }

    .fx1-single-produtos .conteudo{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0px;
    }

    .fx1-single-produtos .txt-btn-info{
      align-items: center;
      justify-content: center;
      max-width: 670px;
      text-align: center;
      padding: 40px 0 0 0;
    }

    .fx1-single-produtos .img{
      width: 100%;
      max-width: 670px;
      height: auto;
      justify-content: center;
    }

    .fx2-single-produtos .infos{
      justify-content: flex-start;
    }

    .fx1-historia{
      padding: 20px 10px;
    }

    .fx1-historia .conteudo{
      flex-direction: column;
      gap: 10px;
    }

    .fx1-historia .txt{
      text-align: center;
    }

    .fx1-historia p{
      text-align: center;
    }

    .fx1-historia .img {
      width: 100%;
      max-width: 670px;
      height: auto;
    }

    .fx2-historia{
      padding: 20px 10px;
    }

    .fx2-historia .swiper-scrollbar-drag {
      width: 100px!important;
    }

    .fx1-fazenda{
      display: none;
    }

    .fx2-fazenda{
      padding: 20px 10px;
    }

    .fx2-fazenda .conteudo{
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }

    .fx2-fazenda .txt{
      max-width: 670px;
    }

    .fx3-fazenda{
      padding: 20px 10px;
    }

    .fx3-fazenda .conteudo{
      flex-direction: column-reverse;
      gap: 20px;
    }

    .fx3-fazenda .txt{
      max-width: 670px;
      text-align: center;
    }

    .fx3-fazenda .img{
      width: 100%;
      max-width: 670px;
      height: auto;
    }

    .fx3-fazenda .txt .safra{
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .fx3-fazenda .txt .safra .item{
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .fx4-fazenda .conteudo {
      flex-direction: column;
    }

    .fx6-fazenda .conteudo {
      flex-direction: column;
      align-items: center;
    }

    .fx7-fazenda .card {
      align-items: center;
      justify-content: flex-start;
      text-align: center;
    }

    .fx3-home .card .img-txt {
      align-items: center;
    }

    .fx7-historia .swiper-scrollbar-drag {
      width: 100px!important;
    }

    .fx8-fazenda{
      padding: 20px 10px;
      text-align: center;
    }

    .fx9-fazenda{
      padding: 20px 10px;
    }

    .fx9-fazenda .conteudo{
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .fx9-fazenda .txt{
      max-width: 670px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx9-fazenda .img{
      width: 100%;
      max-width: 670px;
      height: auto;
    }

    .fx9-fazenda .area-btn{
      width: 100%;
      max-width: 370px;
    }

    .fx10-fazenda .txt{
      max-width: 670px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx10-fazenda .conteudo {
      flex-direction: column-reverse;
    }

    .fx11-fazenda{
      padding: 20px 10px;
      text-align: center;
    }

    .fx1-galeria-videos {
      padding: 20px 10px;
    }

    .fx1-galeria-videos .videos {
      gap: 20px;
    }

    .fx1-galeria-videos .item {
      width: 100%;
      max-width: 360px;
      height: 240px;
    }  

    .archive-unidades{
      padding: 20px 10PX;
    }

    .archive-unidades .card{
      width: 100%;
      max-width: 340px;
      padding: 10px 5px;
    }

    .single-unidades{
      padding: 20px 10px;
    }
  }

  @media (max-width: 991px) {
    .btnwhats {
      left: 50%;
      right: auto;
      transform: translate(-50%, 0);
    }
  }

  @media (max-width: 769px) {
    .blog03 p {
      margin: 0;
    }

    .blog03 .wp-pagenavi {
      justify-content: center;
    }

    .blog03 .post {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .blog03 .post .img {
      width: 100%;
      max-width: 370px;
      height: auto;
      min-width: auto;
    }

    .blog03 .post .postautor {
      border: none;
      margin-bottom: 5px;
      font-family: var(--bold);
    }

    .blog03 .post .postthumb {
      width: 100%;
      margin-bottom: 10px;
    }

    .blog03 .post .post-resumo {
      font-size: 14px;
    }

    .blog03 .post .post-cat {
      font-size: 10px;
    }

    .blog03 h2 {
      text-align: center;
      font-size: 20px !important;
    }

    .blog03 .informacao-post {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
    }

    .blog03 .sidebar {
      margin-top: 30px;
      padding: 20px;
    }

    .blog03 .sidebar .sidebarcategoria .scimg {
      width: 40px;
      height: 40px;
    }

    .blog03 .sidebar .sobre-autor .nome-autor {
      font-size: 15px;
    }
  }

  @media (max-width: 426px) {
    .g-recaptcha {
      transform: scale(0.7);
      transform-origin: 0 0;
    }

    .fx5-home .card {
      gap: 10px;
    }

    .banner-categorias-produtos .infos{
      justify-content: flex-start;
    }
  }