@charset "UTF-8";

/*FONTES*/
@font-face {
  font-family: 'SplineSans-Light';
  src: url('../fonts/SplineSans-Light.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-Regular';
  src: url('../fonts/SplineSans-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-Medium';
  src: url('../fonts/SplineSans-Medium.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-SemiBold';
  src: url('../fonts/SplineSans-SemiBold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SplineSans-Bold';
  src: url('../fonts/SplineSans-Bold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Square-Peg';
  src: url('../fonts/SquarePeg-Regular.ttf') format('truetype');
  font-style: normal;
}

/* VARIÁVEIS GLOBAIS */
:root {
  --spline-sans-light: 'SplineSans-Light';
  --spline-sans-regular: 'SplineSans-Regular';
  --spline-sans-medium: 'SplineSans-Medium';
  --spline-sans-semibold: 'SplineSans-SemiBold';
  --spline-sans-bold: 'SplineSans-Bold';
  --square-peg-regular: 'Square-Peg';

  --kry-cor-1: #6e0e28;
  --kry-cor-2: #9c2c3e;
  --kry-preto: #242424;
  --kry-branco: #FFFFFF;
  --kry-cinza-claro: #D9D9D9;
  --kry-cinza: #8d8e91;
}

body{
  font-family: var(--spline-sans-regular);
  background-color: var(--kry-cor-1);
  margin: 0px!important;
  padding: 0px!important;
}

strong,
b {
  font-weight: lighter;
  font-family: var(--spline-sans-bold);
}

a {
  transition: all .2s linear;
  color: inherit;
  text-decoration: none;

  &:hover,
  &:active {
    color: var(--kry-cor-1);
  }

  &:link,
  &:visited {
    color: inherit;
  }
}

.editor {
  a {
    color: var(--kry-cor-1); !important;

    &:hover {
      text-decoration: underline !important;
    }
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--kry-cor-1);
  }

  p {
    margin-bottom: 20px;
  }
}

::selection {
  background: var(--kry-cor-2);
  color: var(--kry-branco);
}

::-moz-selection {
  background: var(--kry-cor-1);
  color: var(--kry-branco);
}

/*LAYOUT & CONTAINERS*/
.website {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  padding: 0 !important;
}

.row {
  width: 100% !important;
  max-width: 1170px !important;
  margin: 0 !important;
}

[class^="col-lg-"] {
  padding: 0 !important;
}

/*COOKIES*/
.aceitar_termos {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: rgba(33, 33, 33, 0.9);
  z-index: 999999;

  a {
    color: #FFFC9E !important;

    &:hover {
      color: #38A7EB !important;
    }
  }
}

a.ctacookies {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 15px;
  border-radius: 50px;
  background-color: var(--kry-cor-1);;
  color: #FFF;
  transition: all .2s linear;
  cursor: pointer;

  &:hover {
    filter: brightness(1.2);
  }
}

/*BOTÃO WHATSAPP FLUTUANTE*/
.btnwhats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  img {
    transition: all .2s linear;
  }

  &:hover {
    img {
      filter: brightness(1.2);
    }
  }
}

/*FORMULÁRIOS (Contact Form)*/
.wpcf7 {
  &-not-valid {
    background-color: #FFD2D2 !important;
  }

  &-form-control-wrap {
    display: block;
  }

  &-response-output {
    color: #FFF !important;
    border: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
  }

  form {
    &.sent .wpcf7-response-output {
      background-color: #46b450;
    }

    &.failed .wpcf7-response-output,
    &.aborted .wpcf7-response-output {
      background-color: #dc3232;
    }

    &.spam .wpcf7-response-output {
      background-color: #f56e28;
    }

    &.invalid .wpcf7-response-output,
    &.unaccepted .wpcf7-response-output {
      background-color: #ffb900;
    }
  }
}

span.wpcf7-not-valid-tip {
  position: absolute;
  right: 3px;
  top: 1px;
  font-size: 9px;
  z-index: 1;
}

/*PAGINAÇÃO*/
.pagination {
  .active {
    a,
    a:hover {
      background-color: var(--kry-cor-1);
      border-color: var(--kry-cor-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-cor-1);
    color: #FFFFFF;
  }
}

/*POSTS*/
.postagemcompleta {
  a {
    display: inline-block;
    max-width: 200px;
    position: relative;
    top: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/*ANIMAÇÕES - LOADERS*/
.lds-ellipsis {
  div {
    background-color: var(--kry-cor-1);
  }
}

/*MODAL FIX*/
.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/*===================== INICIO SITE =======================*/
/*HEADER / CABEÇALHO*/
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  border-bottom: 5px solid var(--kry-cor-1);
}

.header .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1170px;
  padding: 10px 0px 20px 0px !important;
}

.header p {
  font-family: var(--spline-sans-semibold);
  font-size: 16px;
  margin: 0px;
  color: var(--kry-cor-1);
}

.header .logo {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .logo a {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.header .logo a:hover {
  transform: scale(0.97);
}

.header .logo a img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.header .menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
}

.header .menu .wpp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header .menu .wpp .icn {
  width: 100%;
  max-width: 32px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .menu .wpp .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.header .menu .itens {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header .menu .itens a {
  text-align: center;
  font-family: var(--spline-sans-bold);
  font-size: 18px;
  color: var(--kry-cor-1);
  transition: transform 0.2s ease-in-out;
  border-bottom: 3px solid transparent;
}

.header .menu .itens a:hover {
  transform: scale(0.97);
  color: var(--kry-cor-2);
  border-color: var(--kry-cor-2);
}

.header .separador {
  font-family: var(--spline-sans-bold);
  font-size: 16px;
  color: var(--kry-preto);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--kry-cor-1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*FOOTER / RODAPÉ*/
.footer-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px 20px 0px;
  background-color: var(--kry-cor-1);
}

.footer-contato .conteudo {
  width: 100%;
  max-width: 1170px;
}

.footer-contato .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-contato .info .item {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.footer-contato .info .redes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-contato .info .redes a {
  width: 100%;
  max-width: 32px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.footer-contato .info .redes a:hover {
  transform: scale(0.97);
}

.footer-contato .info .redes a img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer-contato h2 {
  font-family: var(--spline-sans-bold);
  font-size: 32px;
  color: var(--kry-branco);
  margin: 0px 0px 20px 0px;
}

.footer-contato p {
  font-family: var(--spline-sans-regular);
  font-size: 16px;
  color: var(--kry-branco);
  margin: 0px 0px 10px 0px;
}

.footer-contato .botao {
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-contato .botao a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 20px;
  background-color: var(--kry-preto);
  font-family: var(--spline-sans-medium);
  font-size: 18px;
  color: var(--kry-branco);
  border-radius: 10px;
  transition: transform 0.2s ease-in-out;
}

.footer-contato .botao a:hover {
  transform: scale(0.97);
}

.footer-contato .separador{
  width: 1px;
  min-height: 120px;
  background-color: var(--kry-branco);
}

.footer-creditos {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  padding: 20px 0px;
}

.footer-creditos .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-creditos .desenvolvedor a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-creditos .desenvolvedor a .icn-kryzalis {
  width: 100%;
  max-width: 40px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -8px;
}

.footer-creditos .desenvolvedor a .icn-kryzalis img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer-creditos p {
  font-family: var(--spline-sans-regular);
  font-size: 14px;
  margin: 0px;
  color: var(--kry-preto);
}

/*PAGINA INICIAL / FRONT PAGE / HOME*/
.banner {
  position: relative;
  width: 100%;
  min-height: 664px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banners-carousel .item {
  width: 100%;
  min-height: 780px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banners-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--kry-preto) 40%, transparent);
  z-index: 2;
}

  .banner .conteudo {
  position: absolute;
  z-index: 3;
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner .servicos {
  width: 100%;
  max-width: 280px;
  height: auto;
  overflow: hidden;
  padding: 10px;
  background-color: color-mix(in srgb, var(--kry-preto) 85%, transparent);
  border-radius: 10px;
  position: relative;
}

.banner .servicos-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: slide-vertical 40s linear infinite;
}

.banner .servicos a {
  width: 100%;
  max-width: 240px;
  flex-shrink: 0;
  transition: transform 0.2s ease-in-out;
}

.banner .servicos a:hover {
  transform: scale(0.97);
}

.banner .servicos .img {
  width: 240px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.banner .servicos .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .servicos h3 {
  font-family: var(--spline-sans-semibold);
  font-size: 18px;
  color: var(--kry-branco);
  margin: 0 0 5px 0;
}

@keyframes slide-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.banner .servicos:hover .servicos-wrapper {
  animation-play-state: paused;
}
.owl-carousel{
  z-index: unset!important;
}
.owl-dots {
  position: absolute;
  bottom: 20px;
  left: 38%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 99999;
}

.owl-dot {
  width: 25px!important;
  height: 25px!important;
  border-radius: 50%!important;
  background-color: color-mix(in srgb, var(--kry-branco) 50%, transparent)!important;
  border: 2px solid var(--kry-branco)!important;
  transition: all 0.3s ease-in-out!important;
}

.owl-dot span{
  display: none!important;
}

.owl-dot.active {
  background-color: var(--kry-cor-2)!important;
  border-color: var(--kry-cor-2)!important;
  transform: scale(1.2)!important;
}

.owl-dot:hover {
  background-color: var(--kry-cor-1)!important;
  border-color: var(--kry-cor-1)!important;
}

.servicos-home{
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);

  .conteudo{
    width: 100%;
    max-width: 1170px;
  }

  .servicos{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 10px;

    a{
      width: 100%;
      max-width: 270px;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;

      .img{
        width: 100%;
        max-width: 270px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        overflow: hidden;

        img{
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          object-fit: cover;
        }
      }
    }


  }
}

/*PAGINA SOBRE*/
.fx1-sobre{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px 50px 0px;
  background-color: var(--kry-branco);
}

.fx1-sobre .conteudo{
  width: 100%;
  max-width: 1170px;
}

/*PAGINA CONTATO*/
.contato {
  padding: 80px 20px;
  background-color: var(--kry-branco);
}

.contato .container {
  max-width: 1170px;
  margin: 0 auto;
}

.contato-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contato-form {
  flex: 1;
}

.contato-form h2 {
  font-family: var(--spline-sans-bold);
  color: var(--kry-cor-2);
  font-size: 2rem;
  margin-bottom: 30px;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input[type="text"],
.contato-form input[type="email"],
.contato-form input[type="tel"],
.contato-form textarea,
.contato-form .wpcf7-form-control {
  font-family: var(--spline-sans-regular);
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid var(--kry-cinza);
  border-radius: 8px;
  background-color: var(--kry-branco);
  color: var(--kry-preto);
  width: 100%;
  resize: none;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.contato-form textarea {
  min-height: 140px;
}

.contato-form input[type="submit"],
.contato-form button {
  background-color: var(--kry-cor-2);
  color: var(--kry-branco);
  border: none;
  border-radius: 8px;
  font-family: var(--spline-sans-semibold);
  font-size: 1rem;
  padding: 14px 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.contato-form input[type="submit"]:hover,
.contato-form button:hover {
  background-color: var(--kry-cor-1);
  transform: translateY(-2px);
}

.contato-form p {
  margin: 0;
}

.contato-form .g-recaptcha {
  border: none;

  display: block;
}

.contato-mapa {
  flex: 1;
}

.contato-mapa h2 {
  font-family: var(--spline-sans-bold);
  color: var(--kry-cor-2);
  font-size: 2rem;
  margin-bottom: 20px;
}

.contato-mapa iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/*ARCHIVE SERVIÇOS*/
.fx-archive-servicos {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  padding: 50px 0px;
}

.fx-archive-servicos .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.fx-archive-servicos a.card {
  width: 100%;
  max-width: 370px;
  height: auto;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.fx-archive-servicos a.card:hover {
  transform: scale(0.97);
}

.fx-archive-servicos a.card .img {
  width: 370px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.fx-archive-servicos a.card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: 1;
}

.fx-archive-servicos a.card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.fx-archive-servicos h2 {
  width: 100%;
  max-width: 370px;
  font-family: var(--spline-sans-semibold);
  margin: 0px 0px 20px 20px;
  position: absolute;
  color: var(--kry-branco);
  z-index: 2;
}

/*SINGLE SERVIÇOS*/
.servico-detalhe {
  padding: 80px 20px;
  background-color: var(--kry-branco);
}

.servico-detalhe .container {
  max-width: 1170px;
  margin: 0 auto;
}

.servico-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.servico-thumb {
  display: none;
  flex: 0 0 45%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.servico-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.servico-conteudo {
  flex: 1;
}

.servico-titulo {
  font-family: var(--spline-sans-bold);
  font-size: 2.2rem;
  color: var(--kry-cor-2);
  margin-bottom: 20px;
}

.servico-descricao {
  font-family: var(--spline-sans-regular);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--kry-preto);
}

.servico-voltar {
  margin-top: 40px;
}

.btn-voltar {
  display: inline-block;
  background-color: var(--kry-cor-2);
  color: var(--kry-branco)!important;
  font-family: var(--spline-sans-medium);
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-voltar:hover {
  background-color: var(--kry-cor-1);
  transform: translateY(-2px);
}

/*ARCHIVE FOTOS*/
.fx-archive-fotos {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
  padding: 50px 0px;
}

.fx-archive-fotos .conteudo {
  width: 100%;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.fx-archive-fotos a.card {
  width: 100%;
  max-width: 370px;
  height: auto;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.fx-archive-fotos a.card:hover {
  transform: scale(0.97);
}

.fx-archive-fotos a.card .img {
  width: 370px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.fx-archive-fotos a.card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  z-index: 1;
}

.fx-archive-fotos a.card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/*TITULO DAS PÁGINAS*/
.fx-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-branco);
}

.fx-titulo .conteudo {
  width: 100%;
  max-width: 1170px;
  padding: 20px 0px 5px 0px !important;
}

.fx-titulo h1 {
  font-family: var(--spline-sans-bold);
  font-size: 48px;
  margin: 0px;
  color: var(--kry-cor-1);
}

/*PAGINA 404*/
.pg-404 {
  min-height: 20vh;
  background: linear-gradient(180deg, var(--kry-cor-2) 0%, var(--kry-cor-1) 100%);
  color: var(--kry-branco);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--kry-branco);
}

.pg-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imagens/banner-1.png') center/cover no-repeat;
  opacity: 0.05;
}

.pg-404 .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pg-404 h1 {
  font-family: var(--spline-sans-bold);
  font-size: 150px;
  line-height: 1;
  margin: 0;
  color: var(--kry-cor-1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.pg-404 h2 {
  font-family: var(--spline-sans-semibold);
  font-size: 26px;
  margin: 20px 0 40px;
  color: var(--kry-branco);
  letter-spacing: 0.5px;
}

.pg-404 .editor {
  font-family: var(--spline-sans-regular);
  font-size: 18px;
  color: #d8e0f0;
  line-height: 1.6;
}

.pg-404 .editor a {
  color: var(--kry-branco)!important;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.pg-404 .editor a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--kry-cor-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pg-404 .editor a:hover::after {
  transform: scaleX(1);
}

.pg-404 .editor a:hover {
  color: var(--kry-branco);
}

/*PAGINA PADRÃO WORDPRESS*/
.page-padrao {
  background-color: var(--kry-branco);
  padding: 50px 10px;
  color: var(--kry-cor-1);
  overflow: hidden;
}

.page-padrao .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.page-padrao h1,
.page-padrao h2,
.page-padrao h3 {
  font-family: var(--spline-sans-semibold);
  color: var(--kry-cor-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(--spline-sans-regular);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.page-padrao a {
  color: var(--kry-cor-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-cor-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-padrao a:hover {
  color: var(--kry-cor-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-cor-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-cor-1);
  transform: translateY(-2px);
}

/* ====== CONFIGURAÇÕES GERAIS ====== */
@media (max-width: 991px) {
  form {
    .row > div {
      width: 100%;
    }

    border: 0;
    padding: 0;
  }

  .fxsm {
    height: auto;
    min-height: 0;
    padding: 40px 0;
  }

  .btnwhats {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }

  .fx-titulo .conteudo {
    padding: 10px!important;
    text-align: center;
  }

  .fx-titulo h1 {
    text-align: center;
  }

  .footer-creditos{
    padding: 10px 5px 100px 5px;
  }
}

@media (max-width: 480px) {
  .fxsm {
    padding: 30px 0;
  }
}

@media (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.7);
    transform-origin: 0 0;
  }
}

/* ====== RESPONSIVO DO SITE ====== */
@media (max-width: 1025px){
  .header .conteudo {
    position: relative;
    padding: 10px!important;
  }

  .menu-toggle {
    display: flex;
  }

  .header .menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--kry-branco);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    border-top: 2px solid var(--kry-cor-1);
    transition: max-height 0.3s ease;
    z-index: 99999;
  }

  .header .menu.open {
    max-height: 500px; 
  }

  .header .menu .wpp {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 0px;
    gap: 5px;
  }

  .header .menu .itens {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    padding: 10px 0px;
    gap: 10px;
  }

  .header .menu .itens a {
    font-size: 18px;
    color: var(--kry-cor-1);
    width: 100%;
    display: block;
  }

  .header .separador {
    display: none;
  }

  .footer-contato{
    padding: 20px 10px;
  }

  .footer-contato h2{
    margin: 0px 0px 5px 0px;
  }

  .footer-contato .separador{
    display: none;
  }

  .footer-contato .info{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .footer-contato .info .item{
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-creditos .conteudo{
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .footer-creditos p{
    text-align: center;
  }

  .servicos-home{
    display: flex;
  }

  .servicos-home .servicos{
    display: none;
  }

  .banner{
    min-height: auto;
  }

  .owl-dots{
    left: 50%;
  }

  .banner .servicos{
    display: none;
  }

  .banners-carousel .item{
    min-height: 400px;
  }

  .servico-card {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .servico-thumb {
    width: 100%;
    max-width: 500px;
  }

  .servico-titulo {
    text-align: justify;
    font-size: 1.8rem;
  }

  .servico-descricao {
    text-align: justify;
    font-size: 1rem;
  }

  .servico-voltar {
    text-align: justify;
  }

  .contato{
    padding: 20px 10px;
  }

  .contato-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .contato-form h2,
  .contato-mapa h2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .contato-form button {
    align-self: center;
  }

  .contato-mapa iframe {
    height: 380px;
  }

  .fx1-sobre{
    padding: 10px;
  }

  .fx1-sobre .conteudo{
    text-align: justify;
  }

  h1{
    font-size: 32px!important;
  }

  h2{
    font-size: 22px!important;
  }

  p{
    font-size: 14px!important;
  }
}

@media (max-width: 376px){
  .contato-form input[type="text"],
  .contato-form input[type="email"],
  .contato-form input[type="tel"],
  .contato-form textarea,
  .contato-form .wpcf7-form-control {
    max-width: 300px;
  }
}



