@charset "UTF-8";

/*FONTES*/
@font-face {
  font-family: 'lexend-light';
  src: url('../fonts/Lexend-Light.woff2') format('woff2'),
       url('../fonts/Lexend-Light.woff') format('woff');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'lexend-regular';
  src: url('../fonts/Lexend-Regular.woff2') format('woff2'),
       url('../fonts/Lexend-Regular.woff') format('woff');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'paytoneone-regular';
  src: url('../fonts/PaytoneOne-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
}

/* Variáveis globais */
:root {
  --lexend-light: 'lexend-light';
  --lexend-regular: 'lexend-regular';
  --paytoneone-regular: 'paytoneone-regular';

  --kry-azul-escuro: #004AAD;
  --kry-azul-ultra-escuro: #003B89;
  --kry-azul-claro: #00AFF0;
  --kry-branco: #FFFFFF;
  --kry-preto: #000000;
}

/*ESTILOS GLOBAIS*/
body {
  font-family: var(--lexend-regular);
}

strong,
b {
  font-weight: lighter;
  font-family: var(--lexend-regular);
}

a {
  transition: all .2s linear;
  color: inherit;

  &:hover,
  &:active {
    color: #004AAD;
  }

  &:link,
  &:visited {
    color: inherit;
  }
}

.editor {
  a {
    color: #000000 !important;

    &:hover {
      text-decoration: underline !important;
    }
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
  }

  p {
    margin-bottom: 20px;
  }
}

::selection {
  background: #004AAD;
}

::-moz-selection {
  background: #004AAD;
}

/*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: #000000;
  color: #FFF;
  transition: all .2s linear;
  cursor: pointer;

  &:hover {
    filter: brightness(1.2);
  }
}

/*BOTÃO WHATSAPP FLUTUANTE*/
.btnwhats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  img {
    transition: all .2s linear;
  }

  &:hover {
    img {
      filter: brightness(1.2);
    }
  }
}

/*FORMULÁRIOS (Contact Form)*/
.wpcf7 {
  &-not-valid {
    background-color: #FFD2D2 !important;
  }

  &-form-control-wrap {
    display: block;
  }

  &-response-output {
    color: #FFF !important;
    border: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
  }

  form {
    &.sent .wpcf7-response-output {
      background-color: #46b450;
    }

    &.failed .wpcf7-response-output,
    &.aborted .wpcf7-response-output {
      background-color: #dc3232;
    }

    &.spam .wpcf7-response-output {
      background-color: #f56e28;
    }

    &.invalid .wpcf7-response-output,
    &.unaccepted .wpcf7-response-output {
      background-color: #ffb900;
    }
  }
}

span.wpcf7-not-valid-tip {
  position: absolute;
  right: 3px;
  top: 1px;
  font-size: 9px;
  z-index: 1;
}

.g-recaptcha {
  display: block;
  margin-bottom: 20px;
}

/*PAGINAÇÃO*/
.pagination {
  .active {
    a,
    a:hover {
      background-color: #004AAD;
      border-color: #004AAD;
    }
  }
}

.wp-pagenavi {
  span,
  a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    background-color: #DDDDDD;
  }

  span.current {
    background-color: #004AAD;
    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: #004AAD;
  }
}

/*MODAL FIX*/
.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/*MEDIA QUERIES DAS CONFIGURAÇÕES GERAIS*/
@media (max-width: 991px) {
  form {
    .row > div {
      width: 100%;
    }

    border: 0;
    padding: 0;
  }

  .fxsm {
    height: auto;
    min-height: 0;
    padding: 40px 0;
  }

  .btnwhats {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 480px) {
  .fxsm {
    padding: 30px 0;
  }
}

@media (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.7);
    transform-origin: 0 0;
  }
}

/*MENU*/
.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  margin: 0;
  padding: 30px 0 10px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
}

.menu .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px !important;
  background-color: var(--kry-branco);
  border-radius: 50px;
}

.menu .logo,
.menu .itens {
  display: flex;
  align-items: center;
  width: 100%;
}

.menu .logo {
  justify-content: flex-start;
}

.menu .logo a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 351px;

  transition: transform 0.35s ease-in-out;
}

.menu .logo a:hover {
  transform: scale(0.98);
}

.menu .logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.menu .itens {
  justify-content: flex-end;
  gap: 15px;
  text-align: center;
}

.menu .itens a {
  font-family: var(--paytoneone-regular);
  font-size: 16px;
  color: var(--kry-azul-escuro);

  border-bottom: 3px solid transparent;
  transition: transform 0.35s ease-in-out;
}

.menu .itens a:hover {
  transform: scale(0.98);
  border-bottom-color: var(--kry-azul-escuro);
}

.hamburguer {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hamburguer span {
  width: 100%;
  height: 3px;

  background: var(--kry-azul-escuro);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/*FOOTER - RODAPE PADRAO*/
.footer{
  padding: 70px 0px 0px 0px;

  .conteudo{
    .contato{
      display: flex;
      flex-direction: column;
      gap: 20px;

      .item{
        display: flex;
        flex-direction: column;

        .titulo{
          display: flex;
          align-items: center;
          gap: 10px;
          font-family: var(--paytoneone-regular);
          font-size: 20px;
          color: var(--kry-preto);
        }

        .redes{
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 20px;

          a{
            width: 100%;
            max-width: 28px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.35s ease-in-out;

            &:hover{
              transform: scale(0.98);
            }

            img{
              width: 100%;
              height: 100%;
              display: flex;
              align-items: center;
              justify-content: center;
              object-fit: cover;
            }
          }
        }
      }
    }

    p{
      font-family: var(--lexend-regular);
      font-size: 15px;
      margin: 0px;
      color: var(--kry-preto);
    }

    iframe{
      width: 100%;
      max-width: 770px;
      height: 282px;
      border-radius: 20px;
    }

    .img{
      width: 100%;
      max-width: 1170px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;

      img{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;
        margin-top: 50px;
      }
    }
  }

  .creditos{
    padding: 20px 0px;
    background-color: var(--kry-azul-escuro);
    color: var(--kry-branco);
    font-family: var(--lexend-regular);
    font-size: 14px;

    .row{
      display: flex;
      align-items: center;
    }

    .direitos{
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .info{
      display: flex;
      align-items: center;
      justify-content: flex-end;

      a{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: transform 0.35s ease-in-out;

        &:hover{
          transform: scale(0.98);
        }

        .icn-kryzalis{
          width: 100%;
          max-width: 50px;
          height: auto;
          display: flex;
          align-items: center;
          justify-content: center;

          img{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            object-fit: cover;
          }
        }
      }
    }
  }
}

/*FOOTER - RODAPE PAGINA DE CONTATO*/
.footer-contato{
  padding: 0px;

  .conteudo{
    .contato{
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0px 0px 0px 20px !important;

      .item{
        display: flex;
        flex-direction: column;

        .titulo{
          display: flex;
          align-items: center;
          gap: 10px;
          font-family: var(--paytoneone-regular);
          font-size: 20px;
          color: var(--kry-preto);
        }

        .redes{
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 20px;

          a{
            width: 100%;
            max-width: 28px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.35s ease-in-out;

            &:hover{
              transform: scale(0.98);
            }

            img{
              width: 100%;
              height: 100%;
              display: flex;
              align-items: center;
              justify-content: center;
              object-fit: cover;
            }
          }
        }
      }
    }

    p{
      font-family: var(--lexend-regular);
      font-size: 15px;
      margin: 0px;
      color: var(--kry-preto);
    }

    iframe{
      width: 100%;
      max-width: 1170px;
      height: 282px;
      border-radius: 20px;
    }

    .formulario {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .formulario form,
    .formulario .wpcf7-form {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      width: 100%;
      max-width: 670px;
    }

    .formulario input[type="text"],
    .formulario input[type="email"],
    .formulario input[type="tel"],
    .formulario input[type="url"],
    .formulario textarea {
      padding: 10px;
      border: 1px solid var(--kry-azul-claro);
      border-radius: 5px;
      background: #F0F0F0;
      color: var(--kry-preto);
      font-family: var(--lexend-regular);
      font-size: 15px;
      width: 100%;
      max-width: 670px;
      margin-bottom: 10px;
    }

    .formulario textarea {
      height: 98px;
      resize: none;
    }

    .formulario input::placeholder,
    .formulario textarea::placeholder {
      color: var(--kry-preto);
      font-family: var(--lexend-regular);
      font-size: 15px;
    }

    /* Botão */
    .formulario button,
    .formulario input[type="submit"] {
      width: 100%;
      max-width: 170px;
      padding: 10px 15px;
      background-color: var(--kry-azul-escuro);
      color: var(--kry-branco);
      font-family: var(--paytoneone-regular);
      font-size: 16px;
      border: none;
      border-radius: 0px 20px;
      transition: transform 0.2s ease-in-out;
      cursor: pointer;
    }

    .formulario button:hover,
    .formulario input[type="submit"]:hover {
      transform: scale(0.98);
    }

    /* Remove margens padrão do CF7 */
    .formulario p {
      margin: 0;
    }

    /* ReCAPTCHA */
    .formulario .g-recaptcha {
      transform: scale(0.95);
      transform-origin: left;
    }

    .wpcf7{
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 670px;

      p{
        width: 100%;
      }
    }


    .img{
      width: 100%;
      max-width: 1170px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;

      img{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;
        margin-top: 50px;
      }
    }

    .mapa{
      margin-top: 50px;
    }
  }

  .creditos{
    padding: 20px 0px;
    background-color: var(--kry-azul-escuro);
    color: var(--kry-branco);
    font-family: var(--lexend-regular);
    font-size: 14px;

    .row{
      display: flex;
      align-items: center;
    }

    .direitos{
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .info{
      display: flex;
      align-items: center;
      justify-content: flex-end;

      a{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: transform 0.35s ease-in-out;

        &:hover{
          transform: scale(0.98);
        }

        .icn-kryzalis{
          width: 100%;
          max-width: 50px;
          height: auto;
          display: flex;
          align-items: center;
          justify-content: center;

          img{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            object-fit: cover;
          }
        }
      }
    }
  }
}

/*UTEIS - REUTILIZAVEIS*/
.elipse-branca {
  width: 100%;
  height: 120px;
  background: var(--kry-branco);
  clip-path: ellipse(55% 100% at 50% 100%);
  position: relative;
  margin: -155px 0px 0px 0px;
  z-index: 1;
}

.elipse-branca-page-padrao {
  width: 100%;
  height: 120px;
  background: var(--kry-branco);
  clip-path: ellipse(55% 100% at 50% 100%);
  position: relative;
  margin: -120px 0px 0px 0px;
  z-index: 1;
}

.elipse-azul-ultra-escuro {
  width: 100%;
  height: 100px;
  background: var(--kry-azul-ultra-escuro);
  clip-path: ellipse(55% 100% at 50% 100%);
  position: relative;
  margin: 0px;
  z-index: 1;
}

.separador{
  width: 32px;
  height: 7px;
  background-color: var(--kry-azul-claro);
  border-radius: 50px;
}

.divisor{
  width: 10px;
  height: 76px;
  background-color: var(--kry-branco);
  border-radius: 50px;
}

.carrossel-servicos{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  padding: 30px 0px;
  position: relative;

  .txt{
    width: 270px;
  }

  p{
    font-family: var(--lexend-regular);
    font-size: 15px;
    line-height: 2.8rem;
    color: var(--kry-preto);
    text-align: justify;
  }

  .itens{
    display: block; 
    width: 100%;
    overflow: hidden; 

    a.card{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      gap: 10px;
      width: 271px;
      transition: transform 0.35s ease-in-out;

      &:hover{
        transform: scale(0.98);
      }

      .img{
        width: 270px;
        height: 346px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px 20px 0px 20px;
        overflow: hidden;

        img{
          width: 270px;
          height: 346px;
          display: flex;
          align-items: center;
          justify-content: center;
          object-fit: cover;
        }
      }

      .nome{
        font-family: var(--paytoneone-regular);
        font-size: 15px;
        color: var(--kry-azul-escuro);
      }
    }
  }

  .carrossel-wrapper{
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .nav-external {
    position: absolute;
    top: 80%;
    left: -6px;
    right: 0;
    display: flex;
    transform: translateY(-50%);
    pointer-events: none;
  }

   .nav-external button {
    background: none !important;
    border: none !important;
    pointer-events: all;
  }

  .nav-external button:hover img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(94%) saturate(2554%) hue-rotate(168deg) brightness(96%) contrast(101%);
  }

   .nav-external .nav-btn {
    width: 57px;
    height: auto;
    cursor: pointer;
  }

}

.header-padrao{
  padding: 220px 0px 150px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  h1{
    font-family: var(--paytoneone-regular);
    font-size: 73px;
    text-transform: uppercase;
    color: var(--kry-branco);
    margin: 0px;
  }

  .txt{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  }
}

/*FRONT PAGE - HOME - PAGINA INICIAL*/
.banner-home {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -90px;

  .owl-carousel {
    position: relative;
  }

  .owl-dots {
    position: absolute;
    bottom: 160px; 
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10; 
  }

  .owl-dot span {
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
  }

  .owl-dot.active span {
    background: var(--kry-azul-escuro);
    transform: scale(1.2);
  }

  .owl-dot:hover span {
    background: var(--kry-azul-claro);
  }
}

.banner-home .banner {
  width: 100%;
  max-width: 1920px;
  min-height: 726px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-home .banner a {
  width: 100%;
  min-height: 726px;
  content: '';
  display: block;
}

.fx1-home{
  padding: 0px 0px 50px 0px;
  background-color: var(--kry-branco);

  h1{
    font-family: var(--paytoneone-regular);
    font-size: 53px;
    margin: 10px 0px;
    color: var(--kry-azul-escuro);

    .cor{
      color: var(--kry-azul-claro);
    }
  }
}

.fx2-home{
  padding: 0px 0px 50px 0px;
  background-color: var(--kry-azul-ultra-escuro);

  .conteudo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .img{
    width: 100%;
    max-width: 84px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;

    img{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      object-fit: cover;
    }
  }

  .txt{
    display: flex;
    flex-direction: column;

    h2{
      font-family: var(--paytoneone-regular);
      font-size: 53px;
      margin: 0px;
      color: var(--kry-branco);

      span{
        color: var(--kry-azul-claro);
      }
    }
  }
}

.fx3-home{
  padding: 50px 0px 10px 0px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 785px;
  background-color: var(--kry-branco);

  .txt{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  h2{
    font-family: var(--paytoneone-regular); 
    font-size: 35px;
    margin: 0px 0px 10px 0px;
    color: var(--kry-azul-claro);
  }

  p{
    font-family: var(--lexend-regular);
    font-size: 15px;
    line-height: 3rem;
    color: var(--kry-preto);
  }
}

/*PAGINA SOBRE*/
.nossa-historia{
  padding: 0px 0px 50px 0px;

  h2{
    font-family: var(--paytoneone-regular);
    font-size: 53px;
    margin: 5px 0px 30px 0px;
    color: var(--kry-azul-ultra-escuro);

    span{
      color: var(--kry-azul-claro);
    }
  }

  p{
    font-family: var(--lexend-regular);
    font-size: 15px;
    color: var(--kry-preto);
    line-height: 3rem;
  }

  .imagem-destaque{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .img{
    width: 100%;
    max-width: 370px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 20px 0px 20px;
    overflow: hidden;

    img{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      object-fit: cover;
    }
  }
}

.nossa-empresa{
  padding: 30px 0px;
  background-color: #F0F0F0;

  h2{
    font-family: var(--paytoneone-regular);
    font-size: 53px;
    margin: 5px 0px 30px 0px;
    color: var(--kry-azul-ultra-escuro);

    span{
      color: var(--kry-azul-claro);
    }
  }

  p{
    font-family: var(--lexend-regular);
    font-size: 15px;
    color: var(--kry-preto);
    line-height: 3rem;
  }
}

/*PAGINA SERVICOS GERAIS*/
.em-breve{
  padding: 0px 0px 50px 0px;
  h2{
    font-family: var(--paytoneone-regular);
    font-size: 53px;
    margin: 5px 0px 30px 0px;
    color: var(--kry-azul-claro);
  }

  p{
    font-family: var(--lexend-regular);
    font-size: 15px;
    color: var(--kry-preto);
    line-height: 3rem;
  }
}

/*ARCHIVE SERVICOS*/
.lista-servicos{
  padding: 30px 0px 50px 0px;
}

.servicos{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;

  a.card{
    width: 270px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 15px;
    transition: transform 0.35 ease-in-out;

    &:hover{
      transform: scale(0.98);
    }

    .img{
      width: 270px;
      height: 346px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0px 20px;
      overflow: hidden;

      img{
        width: 270px;
        height: 346px;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;

      }
    }

    .nome{
      font-family: var(--paytoneone-regular);
      font-size: 15px;
      color: var(--kry-azul-escuro);
    }
  }
}

/*SINGLE SERVICOS*/
.single-servicos{
  padding: 10px 0px 50px 0px;

  h2{
    font-family: var(--paytoneone-regular);
    font-size: 53px;
    margin: 0px;
    color: var(--kry-azul-claro);
  }

  p{
    font-family: var(--lexend-regular);
    font-size: 15px;
    line-height: 3rem;
    color: var(--kry-preto);
  }

  h3{
    font-family: var(--paytoneone-regular);
    font-size: 22px;
    color: var(--kry-azul-escuro);
  }

  h4{
    font-family: var(--paytoneone-regular);
    font-size: 22px;
    color: var(--kry-azul-escuro);
  }

  ul{
    padding: 0px 0px 0px 20px!important;

    li{
      font-family: var(--paytoneone-regular);
      font-size: 15px;
      color: var(--kry-azul-claro);
    }
  }

  .titulo{
    margin-bottom: 40px;
  }

  .img-txt{
    display: flex;
    align-items: center;
    gap: 30px;

    .imagem-destaque{
      width: 100%;
      max-width: 469px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0px 20px;
      overflow: hidden;

      img{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;
      }
    }
  }

  .txt{
    margin: 40px 0px 0px 0px;
  }
}

/*ARCHIVE CLIENTES*/
.lista-clientes{
  padding: 30px 0px 50px 0px;
}

.clientes{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;

  .logo{
    width: 270px;
    height: 143px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #D9D9D9;
    overflow: hidden;

    img{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      object-fit: cover;
    }
  }
}

/*PAGINA 404 - ERROR*/
.pg-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--kry-azul-ultra-escuro) 0%,
    var(--kry-azul-escuro) 100%
  );
  color: var(--kry-branco);

    h1 {
      font-family: var(--paytoneone-regular);
      font-size: 8rem;
      line-height: 1;
      margin: 0 0 10px;
      color: var(--kry-azul-claro);
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    h2 {
      font-family: var(--lexend-regular);
      font-size: 1.8rem;
      margin: 0 0 20px;
    }

    .editor {
      font-family: var(--lexend-light);
      font-size: 1rem;
      color: var(--kry-branco);
      
      a {
      color: var(--kry-azul-claro);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease, border-bottom 0.3s ease;
      border-bottom: 2px solid transparent;
    

       &:hover {
        color: var(--kry-branco);
        border-bottom: 2px solid var(--kry-azul-claro);
      }
    }
  }
}


/* Responsivo */
@media(min-width: 1600px){
  .elipse-branca{
    height: 160px;
  }
}

@media(max-width: 1200px){
  .banner-home{
    margin-top: -170px;
  }

  .footer{
    padding: 10px 0px 0px 0px;

    .row{
      padding: 0px 10px;
    }

    .conteudo{
      .contato{
        gap: 10px;
        padding: 0px 0px 20px 0px!important;

        .item{
          width: 100%;
          align-items: center;
          justify-content: center;
          text-align: center;
        }
      }

      .mapa{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
      }

      iframe{
        height: 200px;
      }
      .img{
        img{
          margin-top: 20px;
        }
      }
    }

    .creditos{
      padding: 10px 0px 90px 0px; 

      .row{
        justify-content: center;
        flex-direction: column;
      }

      .direitos{
        justify-content: center;
      }

      .info{
        justify-content: center;
      }
    }
  }

  .footer-contato{
    padding: 10px 0px 0px 0px;

    .row{
      padding: 0px 10px;
    }

    .conteudo{
      .contato{
        gap: 10px;
        padding: 0px 0px 20px 0px!important;

        .item{
          width: 100%;
          align-items: center;
          justify-content: center;
          text-align: center;
        }
      }

      .mapa{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
      }

      iframe{
        height: 200px;
      }

      .img{
        img{
          margin-top: 20px;
        }
      }

      .formulario{
        align-items: center;
      }

    }

    .creditos{
      padding: 10px 0px 90px 0px; 

      .row{
        justify-content: center;
        flex-direction: column;
      }

      .direitos{
        justify-content: center;
      }

      .info{
        justify-content: center;
      }
    }
  }

  .carrossel-servicos{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px;

    .txt{
      width: 100%;
    }

    .nav-external{
      position: relative;
      left: 0px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 50px;
    }

    .carrossel-wrapper{
      width: 100%;
      max-width: 900px;
    }

    .owl-carousel.owl-drag .owl-item{
      display: flex;
      justify-content: center;
    }

    .itens{
      a.card{
        width: 100%;
        max-width: 270px;

        .img{
          width: 200px;
          height: 270px;

          img{
            width: 200px;
            height: 270px;
          }
        }

        .nome{
          font-size: 14px;
        }
      }
    }
  }

  .fx1-home{
    text-align: center;
    padding: 10px;
  }

  .fx2-home{
    padding: 10px;

    .conteudo{
      flex-direction: column;
      gap: 10px;
    }

    .txt{
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  }

  .fx3-home{
    padding: 30px 10px 10px 10px;
    background-image: none!important;
    min-height: auto;

    .txt{
      gap: 10px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    br{
      display: none;
    }
  }

  .nossa-historia{
    padding: 0px 10px 30px 10px;

    .row{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .txt{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    h2{
      margin: 5px 0px 10px 0px;
    }

    br{
      display: none;
    }

    .imagem-destaque{
      justify-content: center;
    }

  }

  .nossa-empresa{
    padding: 20px 10px;

    .txt{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    
    h2{
      margin: 5px 0px 10px 0px;
    }

    br{
      display: none;
    }
  }

  .em-breve{
    padding: 0px 10px 30px 10px;

    .txt{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    br{
      display: none;
    }
  }

  .single-servicos{
    padding: 10px;

    .titulo{
      margin-bottom: 20px;
      text-align: center;

    }

    .img-txt{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 20px;
    }

    .txt{
      margin: 2px 0px 0px 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    br{
      display: none;
    }
  }

  .elipse-branca {
    margin: -240px 0px 0px 0px;
  }
}

@media (max-width: 769px) {
  .header-padrao{
    padding: 130px 0px 100px 0px;;

    .txt{
      justify-content: center;
      gap: 10px;
    }
  }

  .banner-home {
    margin-top: 0px;

    .owl-dots {
      bottom: 70px;
    }
  }

  .menu .conteudo{
    border: 2px solid var(--kry-azul-escuro);
  }

  .menu .itens {
    position: absolute;
    top: 110px;
    right: 0px;
    left: 5%;
    background: var(--kry-branco);
    border: 2px solid var(--kry-azul-escuro);
    border-radius: 15px;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    display: none;
    z-index: 999;
    width: 90%;
  }

  .menu .itens.active {
    display: flex;
  }

  .hamburguer {
    display: flex;
  }

  .banner-home .banner {
    min-height: 300px;
  }

  .banner-home .banner a {
    min-height: 300px;
  }

  .elipse-branca{
    display: none;
  }

  .elipse-branca-page-padrao {
    height: 100px;
    margin: -70px 0px 0px 0px;
  }

  .elipse-azul-ultra-escuro{
    height: 70px;
  }
}

@media (max-width: 476px){
  .menu{
    padding: 20px 5px 0px 5px;
  }
}

@media(max-width: 426px){
  .elipse-branca{
    margin: -50px 0px 0px 0px;
    height: 50px;
  }

  .elipse-branca-page-padrao {
    height: 70px;
    margin: -50px 0px 0px 0px;
  }

  .elipse-azul-ultra-escuro{
    height: 40px;
  }

  p{
    font-size: 14px!important;
  }

  h1{
    font-size: 30px!important;
  }

  h2{
    font-size: 24px!important;
  }

  h3{
    font-size: 18px!important;
  }

  h4{
    font-size: 17px!important;
  }
}