@charset "UTF-8";

/*FONTES*/
  @font-face {
    font-family: 'Geologica-Regular';
    src: url('../fonts/Geologica-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Geologica-Medium';
    src: url('../fonts/Geologica-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }

  @font-face {
    font-family: 'Geologica-SemiBold';
    src: url('../fonts/Geologica-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
  }

  @font-face {
    font-family: 'Geologica-Bold';
    src: url('../fonts/Geologica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: 'Geologica-ExtraBold';
    src: url('../fonts/Geologica-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
  }

  @font-face {
    font-family: 'Geologica-Black';
    src: url('../fonts/Geologica-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
  }

/*CONFIG CSS*/
  body{
    font-family: var(--regular);
    color: var(--kry-preto);
    background-color: var(--kry-branco);
    margin: 0px!important;
    padding: 0px!important;
  }

  body.glightbox-open {
    overflow: hidden !important;
    padding-right: 0 !important;
  }

  html {
    scrollbar-gutter: stable;
  }

  header, section, footer{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  a{
    text-decoration: none;
  }

  h2{
    font-family: var(--bold);
    font-size: 43px;
    margin: 0;
    color: var(--kry-color-2);
  }

  p{
    font-family: var(--regular); 
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    color: var(--kry-preto);
  }

  .img, .icn{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  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;
  }

  .btnwhats {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .btnwhats img {
    transition: all .2s linear;
    display: block;
  }

  .btnwhats:hover img {
    filter: brightness(1.2);
  }

  #btnTopo {
    position: fixed;
    right: 50%;
    left: 50%;
    bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--kry-color-1);
    border-radius: 50%;
    background: var(--kry-color-2);
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  #btnTopo img{
    width: 28px;
    height: 28px;
  }

  #btnTopo.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #btnTopo:hover {
    background: var(--kry-color-1);
  }  

  ::selection {
    background: var(--kry-color-2);
    color: var(--kry-branco);
  }

  ::-moz-selection {
    background: var(--kry-color-2);
    color: var(--kry-branco);
  }

  :root {
    --regular: 'Geologica-Regular';
    --medium: 'Geologica-Medium';
    --semibold: 'Geologica-SemiBold';
    --bold: 'Geologica-Bold';
    --extrabold: 'Geologica-ExtraBold';
    --black: 'Geologica-Black';

    --kry-color-1: #60B3DD;
    --kry-color-2: #0B5F96;
    --kry-preto: #141414;
    --kry-branco: #FFFFFF;
    --kry-cinza: #EAEAEA;
    --kry-cinza-texto: #444444;
  }

/*ITENS PADRAO*/
  .area-btn {
    width: 100%;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-padrao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 3px solid var(--kry-branco);
    font-family: var(--regular);
    font-size: 16px;
    color: var(--kry-branco);
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    transition: 0.2s ease-in-out;
  }

  .area-btn .icn {
    width: 0;
    height: 23px;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-12px) scale(0.6);
    transform-origin: center;
    transition: 0.3s ease-in-out;
  }

  .btn-padrao:hover {
    border-color: var(--kry-color-1);
    background-color: var(--kry-color-1);
    gap: 2px;
  }

  .btn-padrao:hover .icn {
    width: 23px;
    margin-bottom: -2px;
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .linha-cinza{
    width: 100%;
    max-width: 1920px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kry-cinza);
    margin-top: -30px;
  }

  .titulo-padrao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    position: relative;
    z-index: 4;
  }

  .titulo-padrao h2 {
    font-size: 25px;
    width: 100%;
    max-width: 470px;
    text-align: center;
    margin: -5px 60px 0 60px;
  }

  .titulo-padrao .linha-titulo {
    width: 100%;
    height: 2px;
    background-color: var(--kry-color-2);
  }

/*HEADER - INSTITUCIONAL*/
  .header-site {
    padding: 30px 0 20px;
    position: fixed;
    width: 100%;
    max-width: 1920px;
    z-index: 99999;
    transition: background-color 0.35s ease, padding 0.35s ease;
  }

  .header-site.scrolled {
    padding: 15px 0;
  }

  .header-site.scrolled .logo {
    opacity: 0;
    max-width: 0;
    transform: translateX(-15px) scale(0.96);
    pointer-events: none;
  }

  .header-site.scrolled .conteudo {
    justify-content: center;
  }

  .header-site.scrolled .menu{
    background-color: var(--kry-color-1);
  }

  .header-site.scrolled .menu a{
    color: var(--kry-branco);
  }

  .header-site.scrolled .menu a .linha {
    background-color: var(--kry-branco);
  }

  .header-site.scrolled .menu .submenu a {
    color: var(--kry-cinza-texto);
  }

  .header-site .conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: justify-content 0s linear 0.25s;
  }

  .header-site .conteudo:before,
  .header-site .conteudo:after {
    display: unset !important;
    content: none !important;
  }

  .header-site .logo {
    width: 370px;
    max-width: 370px;
    height: 70px;
    opacity: 1;
    transform: translateX(0) scale(1);
    overflow: hidden;
    pointer-events: auto;
    transition: opacity 0.25s ease, transform 0.35s ease, max-width 0.45s ease;
  }

  .header-site .logo img {
    display: block;
    flex-shrink: 0;
  }

  .header-site .menu {
    width: 100%;
    max-width: 770px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--kry-branco);
    border-radius: 100px;
    min-height: 70px;
  }

  .header-site .menu a {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--regular);
    font-size: 16px;
    color: var(--kry-color-2);
    text-decoration: none;
    user-select: none;
  }

  .header-site .menu a .linha {
    width: 100%;
    height: 3px;
    background-color: var(--kry-color-2);
    border-radius: 100px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .header-site .menu a:hover .linha {
    opacity: 1;
    transform: scaleX(1);
  }

  .header-site .btn-menu-site {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 34px;
    height: 26px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 100002;
  }

  .header-site .btn-menu-site span {
    display: block;
    width: 34px;
    height: 4px;
    background-color: var(--kry-branco);
    border-radius: 5px;
    transition: 0.3s ease-in-out;
  }

  .header-site.menu-aberto .btn-menu-site span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .header-site.menu-aberto .btn-menu-site span:nth-child(2) {
    opacity: 0;
  }

  .header-site.menu-aberto .btn-menu-site span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .header-site .overlay-menu-site {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    z-index: 100000;
  }

  .header-site.menu-aberto .overlay-menu-site {
    opacity: 1;
    visibility: visible;
  }

  .header-site .menu-mobile-site {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background-color: rgb(11, 95, 150, 0.95);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateX(100%);
    transition: 0.3s ease-in-out;
    z-index: 100001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }

  .header-site.menu-aberto .menu-mobile-site {
    transform: translateX(0);
  }

  .header-site .menu-mobile-site a {
    font-family: var(--regular);
    font-size: 17px;
    color: var(--kry-branco);
    line-height: 1.3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 12px;
    text-decoration: none;
  }

  .header-site .menu-mobile-site a:hover {
    color: var(--kry-branco);
    opacity: 0.8;
  }

  .header-site .menu-item {
    position: relative;
  }

  .header-site .submenu {
    opacity: 0;
    visibility: hidden;
    display: flex;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px); 
    gap: 50px;
    z-index: 999;
    background-color: var(--kry-branco);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-direction: row;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .header-site .only-categorias{
    flex-wrap: wrap;
    width: auto;
    min-width: 910px;
  }

  .menu-item:hover .submenu,
  .menu-item .submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); 
  }

  .header-site .submenu .itens {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 180px;
  }

  .header-site .submenu span {
    font-family: var(--extrabold);
    font-size: 16px;
    color: var(--kry-cinza-texto);
    margin-bottom: 10px;
  }

  .header-site .submenu a {
    font-family: var(--regular);
    font-size: 14px;
    color: var(--kry-cinza-texto);
  }

/*FOOTER - INSTITUCIONAL*/
  .divisorias {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 170px;
    margin-bottom: -7px;
  }

  .divisorias .linha-azul-1 {
    width: 380px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kry-color-2);
    border-radius: 0px 100px 100px 0;
  }

  .divisorias .linha-azul-2 {
    width: 1380px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kry-color-2);
    border-radius: 100px 0px 0px 100px;
  }

  .footer-site {
    background-color: var(--kry-cinza);
    padding: 100px 0;
  }

  .footer-site h2 {
    font-size: 25px;
  }

  .footer-site .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
  }

  .footer-site .lista {
    width: 100%;
    max-width: 270px;
    min-height: 240px;
  }

  .footer-site .lista a {
    color: var(--kry-preto);
    line-height: 30px;
  }

  .footer-site .lista .titulo {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-site .lista .titulo .itens {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-site .lista .titulo .redes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
  }

  .footer-site .lista .titulo .redes .icn {
    width: 40px;
    height: 40px;
  }

  .footer-site .contato {
    padding: 0 0 0 60px;
    border-left: 2px solid var(--kry-color-1);
  }

/*BANNER - PAGES*/
  .banner-paginas {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 245px;
    padding: 100px 0 0;
    margin-bottom: -50px;
  }

  .banner-paginas::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(96, 179, 221, 0.5);
    z-index: 1;
    pointer-events: none;
  }

  .banner-paginas h1 {
    font-family: var(--bold);
    font-size: 25px;
    margin: 0;
    color: var(--kry-branco);
    text-transform: uppercase;
  }

  .banner-paginas .conteudo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .divisao-pages {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100px;
    position: relative;
    z-index: 3;
    margin-bottom: -30px;
  }

/*FRONT - PAGE*/
  .banner-video {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: -55px;
  }

  .banner-video .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }

  .banner-video .overlay-video {
    position: absolute;
    inset: 0;
    background: rgba(96, 179, 221, 0.5);
    z-index: 2;
    pointer-events: none;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .banner-video .swiper-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
  }

  .banner-video .swiper-wrapper {
    display: flex;
  }

  .banner-video .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .banner-video .swiper-slide .img {
    width: 350px;
    height: 545px;
    position: relative;
  }

  .banner-video .swiper-slide .img img {
    object-fit: contain;
    display: block;
    animation: flutuarProduto 5s ease-in-out infinite;
    will-change: transform;
  }

  .banner-video .swiper-slide .txt-btn {
    width: 100%;
    max-width: 765px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .banner-video p {
    font-family: var(--bold);
    font-size: 15px;
    color: var(--kry-branco);
    margin: 0;
  }

  .banner-video h1 {
    font-family: var(--bold);
    font-size: 112px;
    margin: 10px 0 0;
    line-height: 100px;
    background: none;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 765px;
    text-align: center;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .banner-video .area-btn {
    max-width: 270px;
    padding: 30px 0 0;
  }

  .banner-video .botoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    z-index: 6;
    bottom: -10%;
    width: 100%;
  }

  .banner-video .linha-branca {
    width: 100%;
    height: 2px;
    background-color: var(--kry-branco);
  }

  .banner-video .itens {
    width: 100%;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .banner-video .itens span {
    color: var(--kry-branco);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .banner-video .itens span.active {
    font-size: 15px;
    font-family: var(--bold);
  }

  .fx1-home {
    min-height: 770px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
  }

  .fx1-home::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 30%);
    pointer-events: none;
  }

  .fx1-home .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx1-home .txt-btn {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fx1-home .txt-btn .area-btn {
    max-width: 270px;
  }

  .fx1-home .txt-btn .area-btn .btn-padrao {
    border-color: var(--kry-color-2);
    color: var(--kry-color-2);
  }

  .fx1-home .txt-btn .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    border-color: var(--kry-color-2);
    background-color: var(--kry-color-2);
  }

  .fx1-home .img-video {
    width: 570px;
    height: 570px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: url('../imagens/estrela.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: url('../imagens/estrela.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
    background-color: transparent;
  }

  .fx1-home .img-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .fx1-home h2{
    margin-bottom: 15px;
  }

  .fx1-home .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fx2-home {
    display: flex;
    flex-direction: column;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
  }

  .fx2-home .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .fx2-home .card {
    position: relative;
    overflow: hidden;
    width: 390px;
    height: 500px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--bold);
    color: var(--kry-color-2);
    transition:
    height 0.7s ease,
    margin 0.7s ease;
    will-change: height, margin;
  }

  .fx2-home .card:hover {
    height: 560px;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 5;
  }

  .fx2-home .card .card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
    will-change: transform;
  }
  .fx2-home .card .card-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(96, 179, 221, 0.5);
    transform: translateY(100%);
    transition: transform 0.7s ease;
    will-change: transform;
  }

  .fx2-home .card .card-content {
    position: relative;
    z-index: 3;
    height: 430px;
    padding: 35px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    transform: translateY(70px);
    transition: transform 0.7s ease;
    will-change: transform;
  }

  .fx2-home .card .card-content h3 {
    margin: 0;
    font-family: var(--bold);
    font-size: 39px;
    line-height: 1.1;
    color: var(--kry-color-2);
    transition: color 0.4s ease;
    cursor: default;
  }

  .fx2-home .card .area-btn {
    width: 100%;
    max-width: 170px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s linear 0.5s;
  }

  .fx2-home .card .area-btn a {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }

  .fx2-home .card .area-btn a:hover{
    background-color: var(--kry-branco);
    color: var(--kry-color-2);
    border-color: var(--kry-branco);
  }

  .fx2-home .card:hover .card-bg {
    transform: scale(1.08);
  }

  .fx2-home .card:hover .card-overlay {
    transform: translateY(0);
  }

  .fx2-home .card:hover .card-content {
    transform: translateY(0);
    height: 60%;
  }

  .fx2-home .card:hover .area-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
    opacity 0.5s ease 0.15s,
    transform 0.5s ease 0.15s,
    visibility 0s linear 0s;
  }

  .fx2-home .card:hover h3 {
    color: var(--kry-branco);
  }

  .fx3-home {
    padding: 50px 0;
  }

  .fx3-home h2 {
    font-size: 25px;
    text-align: center;
    padding: 0 0 30px;
  }

  .fx3-home h3 {
    font-size: 20px;
    margin: 0;
    color: var(--kry-color-2);
  }

  .fx3-home p {
    line-height: 25px;
  }

  .fx3-home .cards-itens {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    height: auto;
    min-height: 350px;
  }

  .fx3-home .cards-itens .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 226px;
    height: 291px;
    border-radius: 10px;
    border: 2px solid var(--kry-color-1);
    padding: 15px 20px;
  }

  .fx3-home .cards-itens .item:nth-child(odd) {
    align-self: flex-start;
  }

  .fx3-home .cards-itens .item:nth-child(even) {
    align-self: flex-end;
  }

  .fx3-home .cards-itens .item .icn {
    width: 50px;
    height: 50px;
  }

  .fx4-home {
    padding: 30px 0;
  }

  .fx4-home .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

  .fx4-home .youtube {
    width: 100%;
    max-width: 970px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
  }

  .fx4-home .youtube iframe {
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  } 

  .fx5-home {
    padding: 20px 0 40px;
  }

  .fx5-home .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx5-home .img {
    width: 570px;
    height: 440px;
  }

  .fx5-home .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fx5-home .txt p {
    display: flex;
    align-items: flex-start;
    gap: 5px;
  }

  .fx5-home .txt p img {
    padding: 6px 0 0;
    width: 19px;
    height: 19px;
  }

  .fx6-home {
    padding: 100px 0;
    background-color: var(--kry-color-2);
  }

  .fx6-home h2 {
    font-size: 39px;
    color: var(--kry-branco);
  }

  .fx6-home h3 {
    color: var(--kry-color-1);
    margin: 0;
  }

  .fx6-home .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx6-home .item {
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .fx6-home .item img {
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
  }

  .fx7-home {
    padding: 50px 0;
  }

  .fx7-home h3 {
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
  }

  .fx7-home h4 {
    font-family: var(--bold);
    font-size: 20px;
    line-height: 30px;
    color: var(--kry-color-2);
    margin: 0;
  }

  .fx7-home ul {
    padding: 0 0 0 5px;
    margin: 5px 0 0;
  }

  .fx7-home .circulo {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100px;
    background-color: var(--kry-color-1);
    font-family: var(--bold);
    font-size: 16px;
    line-height: 30px;
    color: var(--kry-branco);
    margin: 5px 0 0;
  }

  .fx7-home .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }

  .fx7-home .txt {
    width: 100%;
    max-width: 770px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .fx7-home .txt .lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fx7-home .txt .lista .item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
  }

  .fx7-home .img {
    width: 370px;
    height: 560px;
    border-radius: 20px;
    overflow: hidden;
  }

  .fx7-home .info{
    width: 100%;
    max-width: 705px;
    display: flex;
    flex-direction: column;
  }

  .fx8-home {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .fx8-home h2 {
    font-size: 25px;
  }

  .fx8-home h3 {
    font-family: var(--bold);
    font-size: 20px;
    color: var(--kry-color-2);
    margin: 0;
    transition: color 0.4s ease, transform 0.4s ease;
  }

  .fx8-home .titulo {
    width: 100%;
    max-width: 1920px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx8-home .titulo .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .fx8-home .titulo .linha-azul {
    width: 100%;
    max-width: 645px;
    height: 2px;
    background-color: var(--kry-color-1);
  }

  .fx8-home .carrossel.swiper-container {
    width: 100%;
  }

  .fx8-home .carrossel .swiper-wrapper {
    display: flex;
  }

  .fx8-home .carrossel .swiper-slide {
    width: 270px;
    height: 415px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    text-align: center;
    transition: transform 0.4s ease;
  }

  .fx8-home .carrossel .swiper-slide .img {
    width: auto;
    height: auto;
    transition: transform 0.5s ease;
  }

  .fx8-home .carrossel .swiper-slide:hover .img {
    transform: scale(1.10);
  }

  .fx8-home .carrossel .swiper-slide:hover h3 {
    transform: translateY(5px);
    color: var(--kry-color-1);
  }

  .fx8-home .scrollbar__inner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 25px;
    position: relative;
  }

  .fx8-home .swiper-scrollbar {
    position: relative !important;
    left: 5% !important;
    bottom: auto !important;
    width: 100% !important;
    height: 2px !important;
    background-color: var(--kry-preto);
    border-radius: 0;
    margin: 60px 0 20px;
  }

  .fx8-home .swiper-scrollbar-drag {
    top: -5px!important;
    height: 100%;
    min-height: 12px;
    border-radius: 100px !important;
    background-color: var(--kry-preto);
    border-radius: 0;
  }

  .fx8-home .area-btn {
    max-width: 370px;
  }

  .fx8-home .area-btn .btn-padrao {
    border-color: var(--kry-color-2);
    color: var(--kry-color-2);
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }

  .fx8-home .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    border-color: var(--kry-color-2);
    background-color: var(--kry-color-2);
  }

  .fx9-home {
    padding: 100px 0 50px;
  }

  .fx9-home h3 {
    font-size: 25px;
    color: var(--kry-color-2);
    margin: 0;
  }

  .fx9-home strong {
    color: var(--kry-color-1);
  }

  .fx9-home h2 {
    font-size: 39px;
  }

  .fx9-home .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx9-home .banner-calendario {
    width: 370px;
    height: 490px;
    border-radius: 10px;
    overflow: hidden;
  }

  .fx9-home .txt {
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    text-align: end;
  }

  .fx9-home .area-btn {
    padding: 30px 0 0;
  }

  .fx9-home .area-btn .btn-padrao {
    border-color: var(--kry-color-1);
    color: var(--kry-color-1);
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }

  .fx9-home .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    background-color: var(--kry-color-1);
  }

  .fx10-home {
    padding: 20px 0 50px;
  }

  .fx10-home h2 {
    color: var(--kry-color-1);
    font-size: 39px;
  }

  .fx10-home h3 {
    color: var(--kry-color-2);
    font-size: 25px;
    margin: 0;
    font-family: var(--bold);
  }

  .fx10-home .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
  }

  .fx10-home-video-container {
    position: relative;
    width: 370px;
    height: 620px;
    overflow: visible;
    padding: 50px 0 0;
  }

  .fx10-home-video-container .video-duvidas {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    z-index: 1;
  }

  .fx10-home-video-container .circulo {
    position: absolute;
    top: 0%;
    left: -65%;
    width: 800px;
    height: 800px;
    z-index: 2;
    pointer-events: none;
  }

  .fx10-home-video-container .circulo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fx10-home-video-container .img {
    position: absolute;
    top: 0;
    left: 15%;
    width: 275px;
    height: 765px;
    z-index: 3;
    pointer-events: none;
  }

  .fx10-home-video-container .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: flutuarProduto 5s ease-in-out infinite;
    will-change: transform;
  }

  .fx10-home .txt {
    width: 100%;
    max-width: 670px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .fx10-home .txt .titulo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fx10-home .txt .titulo .icn {
    width: 40px;
    height: 75px;
  }

  .fx10-home .txt .info {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 610px;
  }

  .fx10-home .faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px 0 0;
  }

  .fx10-home .faq .item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .fx10-home .faq .item .pergunta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 5px;
    border-bottom: 2px solid var(--kry-color-1);
    font-family: var(--medium);
    font-size: 18px;
    color: var(--kry-color-2);
    transition: background 0.3s ease;
  }

  .fx10-home .faq .item .pergunta span {
    width: 100%;
    max-width: 630px;
    display: flex;
  }

  .fx10-home .faq .item.active .pergunta span{
    color: var(--kry-color-1);
  }

  .fx10-home .faq .item .icn {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  .fx10-home .faq .item .resposta {
    max-height: 0;
    overflow: hidden;
    padding: 0 0;
    transition: max-height 0.5s ease, padding 0.5s ease;
    font-family: var(--regular);
  }

  .fx10-home .faq .item.active .resposta {
    max-height: 500px;
    padding: 10px 0;
  }

  .fx10-home .faq .item.active .pergunta .icn {
    transform: rotate(-90deg);
  }

  .fx10-home .area-btn {
    max-width: 270px;
    padding: 30px 0 0;
  }

  .fx10-home .area-btn .btn-padrao {
    border-color: var(--kry-color-2);
    color: var(--kry-color-2);
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }

  .fx10-home .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    background-color: var(--kry-color-2);
  }

  .fx11-home {
    padding:  100px 0 50px;
  }

  .fx11-home .conteudo {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .fx11-home .txt-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .fx11-home .txt-btn .area-btn {
    max-width: 270px;
  }

  .fx11-home .txt-btn .area-btn .btn-padrao {
    color: var(--kry-preto);
    border-color: var(--kry-preto);
  }

  .fx11-home .txt-btn .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    background-color: var(--kry-color-1);
    border-color: var(--kry-color-1);
  }

  .fx11-home .cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx11-home .cards .card-blog {
    width: 100%;
    max-width: 370px;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
  }

  .fx11-home .cards .img {
    width: 370px;
    height: 215px;
    border-radius: 10px;
    overflow: hidden;
  }

  .fx11-home .cards .info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .fx11-home .cards .area-btn {
    max-width: 170px;
  }

  .fx11-home .cards .area-btn .btn-padrao {
    color: var(--kry-color-2);
    border-color: var(--kry-color-2);
  }

  .fx11-home .cards .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    background-color: var(--kry-color-2);
  }

  .fx12-home {
    padding: 40px 0 100px;
  }

  .fx12-home .conteudo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 235px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--kry-color-2);
  }

  .fx12-home .txt-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 80px 0;
  }

  .fx12-home .area-btn {
    max-width: 270px;
  }

  .fx12-home .area-btn .btn-padrao {
    border-color: var(--kry-color-2);
    color: var(--kry-color-2);
  }

  .fx12-home .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    background-color: var(--kry-color-2);
  }

/*ARCHIVE - LOJA */
  .fx1-loja {
    flex-direction: column;
    padding: 0 0 50px;
    position: relative;
    overflow: visible;
  }

  .fx1-loja .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx1-loja .card {
    width: 270px;
    height: 445px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    position: relative;
    z-index: 1;
  }

  .fx1-loja .card .novo {
    width: auto;
    height: 30px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--kry-color-2);
    font-family: var(--regular);
    font-size: 12px;
    color: var(--kry-branco);
    position: absolute;
    top: 12px;
    z-index: 2;
  }

  .fx1-loja .card .produto {
    width: 268px;
    height: 323px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--kry-cinza);
    border: 1px solid var(--kry-cinza);
  }

  .fx1-loja .card .produto .img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
  }

  .fx1-loja .card:hover .produto .img {
    transform: scale(1.12);
  }

  .fx1-loja .card span {
    font-family: var(--medium);
    font-size: 20px;
    line-height: 30px;
    color: var(--kry-cinza-texto);
  }

  .fx1-loja .card .area-btn {
    max-width: 170px;
    padding: 15px 0 0;
  }

  .fx1-loja .card .area-btn .btn-padrao {
    color: var(--kry-color-2);
    border-color: var(--kry-color-2);
  }

  .fx1-loja .card .area-btn .btn-padrao:hover {
    background-color: var(--kry-color-2);
    color: var(--kry-branco);
  }

  .fx1-loja .botoes{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1365px;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .fx1-loja .linha-azul{
    width: 100%;
    height: 2px;
    background-color: var(--kry-color-2);
  }

  .fx1-loja .itens{
    width: 100%;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .fx1-loja .itens span{
    color: var(--kry-color-2);
    font-size: 13px;
  }

  .fx1-loja .itens span.active{
    font-size: 15px;
    font-family: var(--bold);
  }

  .conteudo-pesquisa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 0 20px !important;
    overflow: visible;
  }

  .pesquisa-loja {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
  }

  .pesquisa-loja__form {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 440px;
    margin: 0;
    overflow: visible;
    background-color: transparent;
  }

  .pesquisa-loja__campo {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: visible;
  }

  .pesquisa-loja__form input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--kry-cinza);
    border-right: 0;
    border-radius: 5px 0 0 5px;
    outline: 0;
    background-color: var(--kry-branco);
    color: var(--kry-preto);
    font-family: var(--regular);
    font-size: 15px;
  }

  .pesquisa-loja__form input::placeholder {
    color: var(--kry-cinza-texto);
  }

  .pesquisa-loja__form input:focus {
    border-color: var(--kry-color-2);
  }

  .pesquisa-loja__form button {
    flex-shrink: 0;
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 0 5px 5px 0;
    background-color: var(--kry-color-2);
    color: var(--kry-branco);
    font-family: var(--semibold);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .pesquisa-loja__form button:hover {
    background-color: var(--kry-color-1);
  }

  .pesquisa-loja__resultado {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 650px;
    margin-top: 10px;
    margin-bottom: 25px;
  }

  .pesquisa-loja__resultado p {
    margin: 0;
    color: var(--kry-cinza-texto);
    font-family: var(--regular);
  }

  .pesquisa-loja__resultado a {
    color: var(--kry-color-2);
    font-family: var(--medium);
    text-decoration: none;
  }

  .pesquisa-loja__resultado a:hover {
    text-decoration: underline;
  }

  .preview-pesquisa-produtos {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    max-height: 430px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--kry-cinza);
    border-radius: 5px;
    background-color: var(--kry-branco);
    box-shadow: 0 8px 25px rgba(20, 20, 20, 0.12);
  }

  .preview-pesquisa-produtos.ativo {
    display: block;
  }

  .preview-pesquisa-produtos__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid var(--kry-cinza);
    color: var(--kry-preto);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .preview-pesquisa-produtos__item:last-child {
    border-bottom: 0;
  }

  .preview-pesquisa-produtos__item:hover {
    background-color: rgba(96, 179, 221, 0.1);
  }

  .preview-pesquisa-produtos__imagem {
    flex: 0 0 55px;
    width: 55px;
    height: 65px;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--kry-cinza);
  }

  .preview-pesquisa-produtos__imagem img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .preview-pesquisa-produtos__conteudo {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
  }

  .preview-pesquisa-produtos__conteudo strong {
    overflow: hidden;
    color: var(--kry-preto);
    font-family: var(--semibold);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .preview-pesquisa-produtos__conteudo span {
    color: var(--kry-color-2);
    font-family: var(--regular);
    font-size: 12px;
  }

  .preview-pesquisa-produtos__mensagem {
    padding: 18px;
    color: var(--kry-cinza-texto);
    font-family: var(--regular);
    font-size: 14px;
    text-align: center;
  }

  .page-navi-loja{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
  }

  .page-navi-loja .wp-pagenavi a,
  .page-navi-loja .wp-pagenavi span {
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid var(--kry-cinza);
    color: #8D8D8D;
    font-size: 13px;
    font-family: var(--regular);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .page-navi-loja .wp-pagenavi a:hover {
    background: #fff;
    color: var(--kry-color-1);
  }

  .page-navi-loja .wp-pagenavi .current {
    background: var(--kry-color-1);
    color: #fff;
  }

/*SINGLE - LOJA*/
  .fx1-single-loja {
    flex-direction: column;
  }

  .fx1-single-loja p {
    font-size: 20px;
    color: var(--kry-cinza-texto);
  }

  .fx1-single-loja .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 60px 0 0 !important;
  }

  .fx1-single-loja .img {
    width: 570px;
    height: 610px;
    border-radius: 10px;
    overflow: hidden;
  }

  .fx1-single-loja .txt-btn {
    width: 100%;
    max-width: 570px;
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .fx1-single-loja .txt-btn .area-btn {
    max-width: 370px;
  }

  .fx1-single-loja .txt-btn .area-btn .btn-padrao {
    color: var(--kry-color-2);
    border-color: var(--kry-color-2);
  }

  .fx1-single-loja .txt-btn .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    background-color: var(--kry-color-2);
  }

  .fx2-single-loja {
    padding: 30px 0;
  }

  .fx2-single-loja p {
    color: var(--kry-cinza-texto);
    font-size: 20px;
  }

  .fx2-single-loja p strong {
    font-family: var(--bold);
  }

  .fx2-single-loja .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }

  .fx2-single-loja .txt {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 570px;
  }

  .fx3-single-loja {
    padding: 20px 0 50px;
  }

  .fx3-single-loja .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx3-single-loja .youtube {
    width: 100%;
    max-width: 570px;
    height: 330px;
    border-radius: 10px;
    overflow: hidden;
  }

  .fx3-single-loja .youtube iframe {
    width: 100%;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }

  .fx3-5-single-loja{
    padding: 60px 0 80px;
    background-color: var(--kry-cinza);
    flex-direction: column;
  }

  .fx3-5-single-loja h2{
    font-family: var(--bold);
    font-size: 20px;
    color: var(--kry-cinza-texto);
    margin: 0 0 50px;
    text-align: center;
  }

  .fx3-5-single-loja p{
    font-family: var(--bold);
    font-size: 20px;
    line-height: 21px;
    color: var(--kry-color-2);
    width: 100%;
    max-width: 230px;
  }

  .fx3-5-single-loja .conteudo{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx3-5-single-loja .card{
    width: 100%;
    max-width: 365px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
    border-radius: 10px;
    border: 2px solid var(--kry-color-1);
  }

  .fx3-5-single-loja .icn{
    width: 80px;
    height: 86px;
  }

  .fx4-single-loja {
    padding: 50px 0;
  }

  .fx4-single-loja .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .fx4-single-loja .conteudo .img {
    width: 367px;
    height: 392px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    border: 1px solid var(--kry-cinza);
  }

  .fx4-single-loja .conteudo .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .fx4-single-loja .conteudo .img:hover img {
    transform: scale(1.08);
  }

  .fx5-single-loja {
    padding: 10px 0 50px;
    flex-direction: column;
  }

  .fx5-single-loja p {
    font-size: 20px;
    color: var(--kry-cinza-texto);
  }

  .fx5-single-loja p strong {
    font-family: var(--bold);
  }

  .fx5-single-loja .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0 0 0 !important;
  }

  .fx5-single-loja .conteudo .card {
    width: 370px;
    height: 465px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
  }

  .fx5-single-loja .conteudo .card .tamanho {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 368px;
    height: 393px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--kry-cinza);
    border: 1px solid var(--kry-cinza);
  }

  .fx5-single-loja .conteudo .card .img {
    width: 100%;
    height: 100%;
  }

  .fx5-single-loja .conteudo .card span {
    font-family: var(--medium);
    font-size: 35px;
    color: var(--kry-color-2);
  }

  .fx5-single-loja .botoes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1170px;
    padding: 40px 0 0 0;
  }

  .fx5-single-loja .botoes .voltar {
    max-width: 170px;
  }

  .fx5-single-loja .botoes .solicite {
    max-width: 370px;
  }

  .fx5-single-loja .botoes .btn-padrao {
    border-color: var(--kry-color-2);
    color: var(--kry-color-2);
  }

  .fx5-single-loja .botoes .btn-padrao:hover {
    color: var(--kry-branco);
    background-color: var(--kry-color-2);
  }

/*ARCHIVE - EVENTOS*/
  .fx1-eventos {
    flex-direction: column;
  }

  .fx1-eventos .conteudo {
    display: flex;
    flex-direction: column;
  }

  .fx1-eventos .txt {
    text-align: center;
    padding: 50px 0 20px;
  }

  .fx1-eventos .eventos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0 10px;
  }

  .fx1-eventos .eventos .card-evento {
    width: 370px;
    height: 490px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--kry-cinza);
  }

  .fx1-eventos .area-btn{
    padding: 40px 0 0 0;
    max-width: 370px;
  }

  .fx1-eventos .area-btn .btn-padrao {
    border-color: var(--kry-color-2);
    color: var(--kry-color-2);
  }

  .fx1-eventos .area-btn .btn-padrao:hover{
    border-color: var(--kry-color-1);
    color: var(--kry-branco);
  }

  .fx2-eventos {
    padding: 50px 0;
  }

  .fx2-eventos h2 {
    font-size: 25px;
    color: var(--kry-branco);
    margin: 10px 0 15px;
  }

  .fx2-eventos p {
    font-family: var(--medium);
    font-size: 15px;
    color: var(--kry-branco);
    line-height: normal;
  }

  .fx2-eventos .conteudo {
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx2-eventos .newsletter,
  .fx2-eventos .img {
    width: 100%;
    max-width: 650px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
  }

  .fx2-eventos .newsletter {
    background-color: var(--kry-color-2);
    position: relative;
  }

  .fx2-eventos .newsletter .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
  }

  .fx2-eventos .newsletter .formulario form,
  .fx2-eventos .newsletter .formulario .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fx2-eventos .newsletter .formulario p {
    margin: 0;
  }

  .fx2-eventos .newsletter .formulario br {
    display: none;
  }

  .fx2-eventos .newsletter .formulario input[type="text"]{
    margin-top: 10px;
  }

  .fx2-eventos .newsletter .formulario input[type="text"],
  .fx2-eventos .newsletter .formulario input[type="email"] {
    width: 100%;
    min-height: 45px;
    border-radius: 100px;
    border: none;
    color: var(--kry-branco);
    font-family: var(--regular);
    font-size: 15px;
    background-color: #055182;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .fx2-eventos .newsletter .formulario input:focus-visible {
    outline: 2px solid var(--kry-branco);
    outline-offset: 2px;
  }

  .fx2-eventos .newsletter .formulario ::placeholder {
    color: var(--kry-branco);
    font-family: var(--regular);
    font-size: 15px;
  }

  .fx2-eventos .newsletter .formulario .check {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fx2-eventos .newsletter .formulario .check p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
  }

  .fx2-eventos .newsletter .formulario input[type="checkbox"] {
    width: 27px;
    height: 27px;
    min-height: auto;
    padding: 0;
    border-radius: 3px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--kry-cinza);
    position: relative;
  }

  .fx2-eventos .newsletter .formulario input[type="checkbox"]:checked {
    background-color: #00a651;
    border-color: #00a651;
  }

  .fx2-eventos .newsletter .formulario input[type="checkbox"]:checked::after {
    content: "";
    width: 7px;
    height: 13px;
    border: solid var(--kry-branco);
    border-width: 0 2px 2px 0;
    position: absolute;
    left: 9px;
    top: 4px;
    transform: rotate(45deg);
  }

  .fx2-eventos .newsletter .formulario label {
    color: var(--kry-branco);
    font-family: var(--regular);
    font-size: 15px;
  }

  .fx2-eventos .newsletter .formulario .wpcf7-recaptcha {
    display: flex;
    justify-content: flex-start;
    transform: scale(0.95);
    transform-origin: left top;
    margin-top: 10px;
  }

  .fx2-eventos .newsletter .formulario .area-btn {
    max-width: 170px;
  }

  .fx2-eventos .newsletter .formulario .area-btn p {
    width: 100%;
    margin: 0;
  }

  .fx2-eventos .newsletter .formulario button {
    cursor: pointer;
    height: 35px;
  }

  .fx2-eventos .newsletter .formulario .area-btn .btn-padrao {
    background-color: transparent;
  }

  .fx2-eventos .newsletter .formulario .area-btn .btn-padrao:hover {
    background-color: var(--kry-color-1);
  }

  .fx2-eventos .newsletter .formulario .wpcf7-response-output {
    margin: 10px 0 0;
    font-size: 14px;
    position: absolute;
    bottom: 22%;
    right: 5%;
    width: 100%;
    max-width: 250px;
    color: #ffb900;
  }

/*ARCHIVE - FAQ*/
  .fx1-faq {
    flex-direction: column;
    padding: 0 0 100px;
  }

  .fx1-faq h2 {
    font-size: 25px;
    color: var(--kry-color-2);
    margin: 10px 0 15px;
  }

  .fx1-faq .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .fx1-faq .faq {
    padding: 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .fx1-faq .txt {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    padding: 50px 0;
  }

  .fx1-faq .faq .item .pergunta span {
    max-width: 1100px;
  }  

/*PAGE - SOBRE*/
  .fx1-sobre {
    flex-direction: column;
  }

  .fx1-sobre .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 30px 0 0 0 !important;
  }

  .fx1-sobre .img {
    width: 500px;
    height: 640px;
    border-radius: 20px;
    overflow: hidden;
  }

  .fx1-sobre .txt {
    padding: 20px 0 0;
    width: 100%;
    max-width: 570px;
    display: flex;
  }

  .fx2-sobre {
    flex-direction: column;
    background-color: var(--kry-cinza);
  }

  .fx2-sobre .carrossel-area {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
  }

  .fx2-sobre .carrossel {
    width: 100%;
    overflow: visible;
    padding: 0 0 0 10%;
  }

  .fx2-sobre .swiper-wrapper {
    align-items: flex-start;
  }

  .fx2-sobre .card {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .fx2-sobre .card.swiper-slide {
    width: 270px;
  }

  .fx2-sobre .certificado {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 270px;
    border-radius: 20px;
    background-color: var(--kry-branco);
    overflow: hidden;
  }

  .fx2-sobre .certificado .img {
    width: 200px;
    height: 200px;
  }

  .fx2-sobre .certificado .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fx2-sobre .swiper-scrollbar {
    left: 0!important;
    right: -10%!important;
    bottom: auto !important;
    margin: 35px auto 0;
    width: 90% !important;
    height: 2px !important;
    background-color: var(--kry-preto);
    border-radius: 0;
  }

  .fx2-sobre .swiper-scrollbar-drag {
    top: -5px !important;
    height: 12px !important;
    border-radius: 100px !important;
    background-color: var(--kry-preto);
  }

  .fx3-sobre {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 998px;
  }

  .fx3-sobre h2 {
    font-size: 25px;
  }

  .fx3-sobre h3 {
    font-size: 25px;
    color: var(--kry-color-2);
    margin: 0;
  }

  .fx3-sobre p {
    text-align: justify;
  }

  .fx3-sobre .conteudo {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .fx3-sobre .txt-destaque,
  .fx3-sobre .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
  }

  .fx3-sobre .txt {
    gap: 25px;
  }

  .fx3-sobre .txt .item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }

  .fx3-sobre .txt .icn {
    width: 70px;
    height: 70px;
  }

  .fx3-sobre .txt .texto {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fx4-sobre .cards-itens .item {
    max-width: 326px;
    height: 290px;
  }

  .fx4-sobre .cards-itens .item:nth-child(odd) {
    align-self: flex-end;
  }

  .fx4-sobre .cards-itens .item:nth-child(even) {
    align-self: flex-start;
  }

  .fx5-sobre{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 555px;
    margin: 40px 0;
  }

/*PAGE - CONTATO*/
  .fx1-contato {
    flex-direction: column;
  }

  .fx1-contato h2 {
    font-size: 25px;
    color: var(--kry-color-2);
    margin: 10px 0 15px;
  }

  .fx1-contato .txt {
    text-align: center;
    padding: 50px 0 20px;
  }

  .fx1-contato .img-formulario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
  }

  .fx1-contato .img-formulario .img {
    width: 470px;
    height: 470px;
    border-radius: 100%;
    overflow: hidden;
  }

  .fx1-contato .img-formulario .formulario {
    display: flex;
    width: 100%;
    max-width: 670px;
    flex-direction: column;
  }

  .fx1-contato .img-formulario .formulario input {
    width: 100%;
    min-height: 60px;
    border-radius: 100px;
    background-color: #F5F5F5;
    padding: 0 0 0 20px;
    border: 1px solid var(--kry-preto);
    margin: 0 0 10px;
    color: var(--kry-preto);
    font-family: var(--regular);
    font-size: 16px;
    line-height: 30px;
  }

  .fx1-contato .img-formulario .formulario ::placeholder {
    color: var(--kry-preto);
    font-family: var(--regular);
    font-size: 16px;
    line-height: 30px;
  }

  .fx1-contato .img-formulario .formulario .campo-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    padding: 15px 0 0 0;
  }

  .fx1-contato .img-formulario .formulario p button {
    cursor: pointer;
  }

  .fx1-contato .img-formulario .formulario .area-btn{
    max-width: 270px;
  }

  .fx1-contato .img-formulario .formulario .area-btn p {
    width: 100%;
    max-width: 270px;
  }

  .fx1-contato .img-formulario .formulario .area-btn p .btn-padrao {
    background-color: transparent;
    color: var(--kry-color-2);
    border-color: var(--kry-color-2);
    height: 45px;
    max-width: 270px;
  }

  .fx1-contato .img-formulario .formulario .area-btn p .btn-padrao:hover {
    background-color: var(--kry-color-1);
    border-color: var(--kry-color-1);
    color: var(--kry-branco);
  }

  .fx1-contato .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .fx2-contato {
    padding: 100px 0;
    background-color: var(--kry-cinza);
  }

  .fx2-contato .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx2-contato .sociais {
    padding: 10px 0 0;
  }

  .fx2-contato .item {
    width: 270px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .fx2-contato .item .icn {
    width: 40px;
    height: 40px;
  }

  .fx2-contato .item .v1 {
    margin-top: 15px;
  }

  .fx2-contato .item span {
    font-family: var(--regular);
    font-size: 16px;
    line-height: 30px;
    color: var(--kry-cinza-texto);
  }

  .fx2-contato .item .redes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .fx2-contato .item .redes .icn {
    width: 50px;
    height: 50px;
  }  

  .fx3-contato iframe {
    width: 100%;
    min-height: 475px;
    border: 0;
  }

  .fx4-contato {
    flex-direction: column;
    padding: 60px 0;
  }

  .fx4-contato a{
    color: var(--kry-cinza-texto);
    text-decoration: underline;
  }

  .fx4-contato h2 {
    font-size: 25px;
    color: var(--kry-color-2);
    text-align: center;
  }

  .fx4-contato p {
    font-size: 13px;
  }

  .fx4-contato .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    row-gap: 95px;
    column-gap: 30px;
    flex-wrap: wrap;
    padding: 50px 0 0 !important;
  }

  .fx4-contato .card {
    width: 270px;
    min-height: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .fx4-contato .card .logo {
    width: 100%;
    max-width: 270px;
    height: auto;
  }

/*PAGE - OXYFACIAL*/
  .fx1-programa-oxyfacial {
    padding: 0 0 50px;
    position: relative;
    z-index: 4;
  }

  .fx1-programa-oxyfacial .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx1-programa-oxyfacial .area-btn {
    max-width: 370px;
  }

  .fx1-programa-oxyfacial .area-btn .btn-padrao {
    color: var(--kry-color-2);
    border-color: var(--kry-color-2);
  }

  .fx1-programa-oxyfacial .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    border-color: var(--kry-color-1);
  }

  .fx1-programa-flagship {
    flex-direction: column;
    padding: 0 0 50px;
  }

  .fx1-programa-flagship h2 {
    font-size: 25px;
    color: var(--kry-color-2);
  }

  .fx1-programa-flagship .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .fx1-programa-flagship .txt {
    text-align: center;
    padding: 50px 0 20px;
  }

  .fx1-programa-flagship .youtube {
    width: 1170px;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
  }

  .fx1-programa-flagship .youtube iframe {
    width: 100%;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }

  .fx1-programa-flagship .logo-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 100%;
    max-width: 970px;
  }

  .fx1-programa-flagship .logo-txt .img {
    width: 395px;
    height: 125px;
  }

  .fx2-programa-flagship {
    flex-direction: column;
    padding: 0 0 50px;
  }

  .fx2-programa-flagship .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 0 0 !important;
  }

  .fx2-programa-flagship .conteudo .card {
    width: 270px;
    height: auto;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .fx2-programa-flagship .conteudo .card .img {
    width: 270px;
    height: 325px;
  }

  .fx2-programa-flagship .conteudo .card span {
    font-family: var(--medium);
    font-size: 20px;
    line-height: 30px;
    color: var(--kry-cinza-texto);
  }

  .fx3-programa-flagship {
    padding: 60px 0 50px;
    background-color: var(--kry-color-2);
    flex-direction: column;
    gap: 40px;
  }

  .fx3-programa-flagship h2 {
    font-size: 25px;
    color: var(--kry-branco);
  }

  .fx3-programa-flagship p {
    color: var(--kry-branco);
    line-height: 22px;
  }

  .fx3-programa-flagship .titulo {
    text-align: center;
  }

  .fx3-programa-flagship .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx3-programa-flagship .card {
    width: 100%;
    max-width: 326px;
    height: auto;
    min-height: 166px;
    border-radius: 10px;
    border: 2px solid var(--kry-branco);
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    background-color: #236fa0;
  }

  .fx3-programa-flagship .card .icn-titulo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fx3-programa-flagship .card .icn-titulo .icn {
    width: 40px;
    height: 40px;
  }

  .fx3-programa-flagship .card span {
    font-family: var(--bold);
    font-size: 20px;
    line-height: 21px;
    color: var(--kry-branco);
  }

  .fx4-programa-flagship {
    padding: 90px 0 50px;
  }

  .fx4-programa-flagship h2 {
    font-size: 25px;
    color: var(--kry-color-2);
    text-align: center;
  }

  .fx4-programa-flagship .conteudo {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fx4-programa-flagship .img {
    width: 100%;
    height: auto;
  }

  .fx4-programa-flagship .carrossel {
    width: 100%;
    overflow: visible;
  }

  .fx4-programa-flagship .carrossel .swiper-wrapper {
    display: flex;
  }

  .fx4-programa-flagship .carrossel .swiper-slide {
    width: 1170px;
    height: 575px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .fx4-programa-flagship .swiper-scrollbar {
    position: relative !important;
    bottom: auto !important;
    width: 150% !important;
    height: 2px !important;
    background-color: var(--kry-preto);
    border-radius: 0;
    margin: 40px 0 20px;
  }

  .fx4-programa-flagship .swiper-scrollbar-drag {
    top: -5px !important;
    height: 100%;
    min-height: 12px;
    border-radius: 100px;
    background-color: var(--kry-preto);
  }

  .fx5-programa-flagship {
    padding: 20px 0 50px;
  }

  .fx5-programa-flagship .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx5-programa-flagship .card {
    width: 100%;
    max-width: 570px;
    min-height: 705px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
  }

  .fx5-programa-flagship .card .img {
    width: 570px;
    height: 570px;
    border-radius: 20px;
    overflow: hidden;
  }

  .fx5-programa-flagship .card span {
    font-family: var(--bold);
    font-size: 25px;
    color: var(--kry-color-2);
  }

  .fx5-programa-flagship .card .area-btn {
    max-width: 270px;
  }

  .fx5-programa-flagship .card .area-btn .btn-padrao {
    color: var(--kry-color-2);
    border-color: var(--kry-color-2);
  }

  .fx5-programa-flagship .card .area-btn .btn-padrao:hover {
    background-color: var(--kry-color-2);
    color: var(--kry-branco);
  }  

  .fx1-treinamento-flagship .conteudo .txt{
    text-align: center;
    padding: 50px 0 20px;
  }

  .fx2-treinamento-flagship {
    padding: 0 0 80px;
    flex-direction: column;
  }

  .fx2-treinamento-flagship h2 {
    font-size: 25px;
    color: var(--kry-color-2);
    margin: 0 0 30px;
  }

  .fx2-treinamento-flagship h4 {
    font-family: var(--bold);
    font-size: 16px;
    line-height: 21px;
    color: var(--kry-color-1);
    margin: 0 0 15px;
  }

  .fx2-treinamento-flagship ul {
    padding: 0 0 0 25px;
    color: var(--kry-cinza-texto);
  }

  .fx2-treinamento-flagship .conteudo {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .fx2-treinamento-flagship .conteudo h2 {
    margin: 0;
  }

  .fx2-treinamento-flagship .card {
    width: 100%;
    max-width: 445px;
    min-height: 203px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 2px solid var(--kry-color-1);
    padding: 40px 60px;
  } 

  .fx3-treinamento-flagship {
    padding: 30px 0 60px;
  }

  .fx3-treinamento-flagship h2 {
    font-size: 25px;
    color: var(--kry-color-2);
    margin: 0 0 30px;
  }

  .fx3-treinamento-flagship p {
    color: var(--kry-cinza-texto);
  }

  .fx3-treinamento-flagship .titulo {
    text-align: center;
  }

  .fx3-treinamento-flagship .conteudo {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .fx3-treinamento-flagship .img-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx3-treinamento-flagship .img {
    width: 570px;
    height: 475px;
  }

  .fx3-treinamento-flagship .txt {
    width: 100%;
    max-width: 570px;
  }

  .secao-tab {
    display: none !important;
  }

  .secao-tab.ativo {
    display: flex !important;
    flex-direction: column;
  }

  .btn-tab.active {
    background: var(--kry-color-1);
    border-color: var(--kry-color-1)!important;
    color: var(--kry-branco)!important;
  }  

/*PAGE - CLINICA*/
  .mapa-wrapper{
    position: relative;
  }

  .mapa-wrapper img{
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .mapa-portugal {
    position: relative;
    width: 100%;
    display: block;
  }

  .regiao-mapa {
    cursor: pointer;
    transition: fill .3s ease;
  }

  .regiao-mapa.hover {
    fill: var(--kry-branco)!important;
  }

  .regiao-mapa.azul.hover{
    fill: var(--kry-color-2)!important;
  }

  .regiao-mapa.sem-hover {
    pointer-events: none;
  }

  .ponto-mapa{
    transition: transform .3s ease;
    transform-box: fill-box;
    transform-origin: center center;
    pointer-events: all;
  }

  .ponto-mapa .bg{
    transition: .3s;
  }

  .ponto-svg{
    transition: .3s ease;
  }

  .fx2-encontre-clinica {
    padding: 50px 0;
  }

  .fx2-encontre-clinica h2 {
    font-size: 25px;
  }

  .fx2-encontre-clinica hr {
    width: 100%;
    height: 2px;
    border: none;
    background-color: var(--kry-color-2);
  }

  .fx2-encontre-clinica .conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .fx2-encontre-clinica .clinicas,
  .clinicas-list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .fx2-encontre-clinica-responsivo {
    display: none;
  }

  .fx2-encontre-clinica-responsivo .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .clinicas-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .clinicas-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .clinicas-popup {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 80vh;
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px 30px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

    transform: translateY(20px) scale(0.96);
    transition: all 0.3s ease;
  }

  .clinicas-popup-overlay.active .clinicas-popup {
    transform: translateY(0) scale(1);
  }

  .clinicas-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #000;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
  }

  .clinicas-popup-close:hover {
    opacity: 0.6;
  }

  .clinicas-list .clinicas {
    max-width: 100%;
  }

  .clinicas-list .clinicas h2 {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .clinicas-list .clinicas hr:last-child {
    display: none;
  }

  body.clinicas-popup-open {
    overflow: hidden;
  }

  .clinica-card {
    background-color: var(--kry-branco);
    border: 1px solid var(--kry-cinza);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .clinica-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .clinica-card h2 {
    font-family: var(--bold);
    color: var(--kry-color-2);
    margin-bottom: 10px;
  }

  .clinica-card p {
    font-family: var(--regular);
    color: var(--kry-cinza-texto);
    line-height: 1.5;
  }

  .clinica-card hr {
    border: none;
    border-top: 1px solid var(--kry-cinza);
    margin-top: 10px;
  }  

/*PAGE - 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/imagem-atras-letra.png') center/cover no-repeat;
    opacity: 0.5;
  }

  .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-2);
    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-color-2)!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-branco)!important;
  }

/*PAGE - PADRAO WP*/
  .page-padrao {
    background-color: var(--kry-branco);
    padding: 50px 10px;
    color: var(--kry-color-1);
    overflow: hidden;
  }

  .page-padrao .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }

  .page-padrao h1,
  .page-padrao h2,
  .page-padrao h3 {
    font-family: var(--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: #333;
  }

  .page-padrao a {
    color: var(--kry-color-1);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
  }

  .page-padrao a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--kry-color-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .page-padrao a:hover {
    color: var(--kry-color-1);
  }

  .page-padrao a:hover::after {
    transform: scaleX(1);
  }

  .page-padrao img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .page-padrao ul, 
  .page-padrao ol {
    margin-left: 25px;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .page-padrao .wp-block-button__link,
  .page-padrao a.button {
    background-color: var(--kry-color-1);
    color: var(--kry-branco);
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .page-padrao .wp-block-button__link:hover,
  .page-padrao a.button:hover {
    background-color: var(--kry-color-1);
    transform: translateY(-2px);
  }

/*BLOG*/
  .blog03 {
    background: var(--kry-branco);
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .blog03 .container {
    width: 100%;
    max-width: 1170px;
  }

  .blog03 .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .blog03 .blogsubtit {
    font-size: 26px;
    font-weight: var(--bold);
    margin-bottom: 30px;
    color: var(--kry-color-1);
  }

  .blog03 .lista-posts {
    border-radius: 8px;
    width: 100%;
    max-width: 870px;
  }

  .blog03 .informacao-post {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .blog03 .post {
    display: flex;
    flex-direction: column;
    padding: 0 50px 30px 0;
  }

  .blog03 .post h2 {
    font-family: var(--bold);
    font-size: 24px;
    color: var(--kry-color-2);
    margin: 10px 0;
  }

  .blog03 .post .post-cat {
    display: inline-block;
    background-color: var(--kry-color-1);
    color: #fff;
    font-family: var(--bold);
    font-size: 13px;
    line-height: 20px;
    padding: 10px 45px;
    border-radius: 100px;
    border: 2px solid transparent;
    margin: 0 5px 10px 0;
    transition: 0.2s ease-in-out;
    text-align: center;
  }

  .blog03 .post .postautor {
    font-family: var(--regular);
    font-size: 13px;
    line-height: 20px;
    color: var(--kry-preto);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--kry-preto);
  }

  .blog03 .post .img {
    width: 370px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
  }

  .blog03 .post .postthumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .blog03 .post .post-resumo {
    font-family: var(--regular);
    font-size: 16px;
    color: var(--kry-preto);
    line-height: 25px;
  }

  .blog03 .post .post-resumo .lermais {
    display: inline-block;
    margin-top: 8px;
    font-weight: var(--bold);
    color: var(--kry-color-1);
  }

  .blog03 .post a {
    color: inherit;
    text-decoration: none;
  }

  .blog03 .post .clearfix {
    clear: both;
    border: 1px solid var(--kry-cinza);
    margin-top: 20px;
  }

  .blog03 .sidebar {
    width: 100%;
    max-width: 270px;
  }

  .blog03 .sidebar form.buscar {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
  }

  .blog03 .sidebar form.buscar input[type='text'] {
    flex: 1;
    padding: 8px 15px;
    border: 1px solid var(--kry-cinza);
    border-radius: 3px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s;
    width: 100%;
    max-width: 195px;
  }

  .blog03 .sidebar form.buscar input[type='text']:focus {
    border-color: var(--kry-color-1);
  }

  .blog03 .sidebar form.buscar button#buscar {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 3px;
    background: none;
    padding: 6px;
    cursor: pointer;
    background-color: var(--kry-color-1);
  }

  .blog03 .sidebar form.buscar button#buscar img {
    width: 18px;
    height: auto;
  }

  .blog03 .sidebar .sidebarcategoria {
    display: flex;
    align-items: center;
    background-color: var(--kry-color-2);
    padding: 0 0 0 20px;
    margin-bottom: 12px;
    color: var(--kry-branco);
    text-decoration: none;
    min-height: 69px;
    border-radius: 20px 0 0 20px;
    width: 250%;
  }

  .blog03 .sidebar .sidebarcategoria .sctxt {
    font-size: 14px;
    font-family: var(--bold);
    color: #FFF;
    line-height: 1.2;
    flex: 1;
    text-transform: uppercase;
  }

  .blog03 .sidebar .sobre-autor {
    background: var(--kry-color-1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .blog03 .sidebar .sobre-autor .sobre-frase {
    font-size: 14px;
    font-family: var(--bold);
    color: var(--kry-branco);
    margin-bottom: 15px;
  }

  .blog03 .sidebar .sobre-autor img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%;
    margin-bottom: 10px;
  }

  .blog03 .sidebar .sobre-autor .nome-autor {
    font-size: 16px;
    font-family: var(--bold);
    color: var(--kry-branco);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--kry-branco);
    padding-bottom: 5px;
  }

  .blog03 .sidebar .sobre-autor p {
    font-size: 13px;
    color: var(--kry-branco);
    line-height: 1.4;
  }

  .blog03 .wp-pagenavi {
    display: flex;
    justify-content: flex-start;
  }

  .blog03 .wp-pagenavi a,
  .blog03 .wp-pagenavi span {
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid var(--kry-cinza);
    color: #8D8D8D;
    font-size: 13px;
    font-family: var(--regular);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .blog03 .wp-pagenavi a:hover {
    background: #fff;
    color: var(--kry-color-1);
  }

  .blog03 .wp-pagenavi .current {
    background: var(--kry-color-1);
    color: #fff;
  }

  .blog03 .opost .post-categorias {
    margin-bottom: 15px;
  }

  .blog03 .opost .post-title {
    font-family: var(--bold);
    font-size: 28px;
    color: var(--kry-preto);
    margin-bottom: 15px;
  }

  .blog03 .opost .editor {
    font-size: 16px;
    color: var(--kry-preto);
    line-height: 1.8;
    font-family: var(--regular);
  }

  .blog03 .opost .editor h2,
  .blog03 .opost .editor h3,
  .blog03 .opost .editor h4 {
    margin: 30px 0 15px;
    font-family: var(--regular);
    color: var(--kry-color-1);
  }

  .blog03 .opost .editor p,
  .blog03 .opost .editor ul,
  .blog03 .opost .editor ol {
    margin-bottom: 15px;
  }

  .blog03 .opost .editor blockquote {
    font-style: italic;
    color: var(--kry-color-1);
    border-left: 4px solid var(--kry-color-1);
    padding-left: 15px;
    margin: 20px 0;
  }

  .blog03 .opost .editor img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
  }

  .blog03 .opost .editor a {
    color: var(--kry-color-1);
    text-decoration: underline;
  }

  .blog03 .opost .editor a:hover {
    color: var(--kry-color-1);
  }

  .blog03 .sugestao-titulo {
    font-size: 20px;
    font-family: var(--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: 30px;
    width: 100%;
    max-width: 270px;
  }

  .blog03 .artigos-relacionados .linkartigo img {
    border-radius: 6px;
    margin-bottom: 10px;
    transition: box-shadow 0.3s;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 270px;
    height: 180px;
  }

  .blog03 .comentarios-titulo {
    font-size: 20px;
    font-family: var(--bold);
    color: var(--kry-preto);
    margin: 40px 0 10px;
  }

  .blog03 .fundo-form {
    background-color: var(--kry-cinza);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  }

  .blog03 .fundo-form h3{
    font-family: var(--bold);
    color: var(--kry-preto);
  }

  .blog03 .fundo-form input,
  .blog03 .fundo-form textarea {
    width: 100%;
    max-width: 800px;
    margin: 15px 0 0 0;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    resize: none;
  }

  .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-2);
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-family: var(--bold);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .blog03 .fundo-form input[type="submit"]:hover {
    background: var(--kry-color-2);
  }

  .blog03 .nautor {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    width: 100%;
    max-width: 815px;
  }

  .blog03 .nautor .nletra {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: var(--kry-color-1);
    color: #fff;
    font-size: 24px;
    font-weight: var(--bold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--regular);
    flex-shrink: 0;
  }

  .blog03 .nautor .nanome {
    font-size: 15px;
    font-family: var(--bold);
    color: var(--kry-color-2);
  }

  .blog03 .nautor .natxt {
    font-size: 14px;
    font-family: var(--regular);
    color: var(--kry-color-1);
    line-height: 1.6;
  }

  .blog03 .spacer {
    height: 20px;
  }

  .blog03 .clearfix {
    clear: both;
  }

  .blog03 .comment-form-cookies-consent {
    display: none;
    align-items: center;
    justify-content: flex-start;
  }

  .blog03 .comment-form-cookies-consent input {
    width: 100%;
    max-width: 30px;
    margin: 0 0 2px 0;
  }

  .blog03 .comment-form-cookies-consent label {
    margin: 0;
  }

  .wp-pagenavi{
    display: flex;
    align-items: center;
    margin-top: 15px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--kry-color-1);
    background: var(--kry-branco);
    color: var(--kry-color-1);
    font-family: var(--semibold);
    font-size: 16px;
  }

  .wp-pagenavi .current{
    background: var(--kry-color-1);
    color: var(--kry-branco);
  }

  .wp-pagenavi a:hover{
    background: var(--kry-color-1);
    color: var(--kry-branco);
  }

/*LANDING PAGE*/
  .header-lp {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 725px;
  }

  .header-lp h1 {
    font-family: var(--bold);
    font-size: 43px;
    color: var(--kry-color-1);
    margin: 0;
  }

  .header-lp h1 strong {
    color: var(--kry-color-2);
  }

  .header-lp h2 {
    font-family: var(--regular);
    font-size: 28px;
    font-weight: 100;
  }

  .header-lp .conteudo {
    display: flex;
    flex-direction: column;
    max-width: 670px;
    gap: 60px;
  }

  .header-lp .logo {
    width: 500px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-lp .txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .header-lp .area-btn {
    max-width: 270px;
  }

  .header-lp .area-btn .btn-padrao {
    color: var(--kry-color-2);
    border-color: var(--kry-color-2);
  }

  .header-lp .area-btn .btn-padrao:hover {
    color: var(--kry-branco);
    border-color: var(--kry-color-1);
  }

  .fx1-lp {
    padding: 10px 0;
    overflow: hidden;
  }

  .fx1-lp h2 {
    font-size: 34px;
  }

  .fx1-lp p {
    font-size: 22px;
    line-height: 35px;
    color: var(--kry-cinza-texto);
  }

  .fx1-lp p strong {
    font-family: var(--bold);
    color: var(--kry-color-1);
  }

  .fx1-lp .conteudo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    position: relative;
    min-height: 560px;
  }

  .fx1-lp .txt {
    width: 100%;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
  }

  .fx1-lp .carrossel {
    width: 100%;
    max-width: 1170px;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    position: absolute;
    left: -52%;
    overflow: visible;
    isolation: isolate;
  }

  .fx1-lp .img {
    width: 270px;
    min-width: 270px;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    will-change: transform, filter, opacity;
  }

  .fx1-lp .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .fx1-lp .img.passando-tras {
    z-index: 1;
    transform: translateX(var(--passar-x, 900px));
    filter: brightness(0.65);
    opacity: 0.85;
  }

  .fx1-lp .carrossel:hover .img {
    transition-play-state: paused;
  }

  .fx2-lp {
    padding: 10px 0 40px;
    overflow: hidden;
  }

  .fx2-lp h2 {
    font-size: 43px;
  }

  .fx2-lp p {
    font-size: 22px;
    line-height: 35px;
    color: var(--kry-cinza-texto);
  }

  .fx2-lp p strong {
    font-family: var(--bold);
    color: var(--kry-color-1);
  }

  .fx2-lp .conteudo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    position: relative;
    min-height: 520px;
  }

  .fx2-lp .txt {
    width: 100%;
    max-width: 670px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
  }

  .fx2-lp .carrossel {
    width: 100%;
    max-width: 1170px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    position: absolute;
    right: -60%;
    overflow: visible;
    isolation: isolate;
  }

  .fx2-lp .img {
    width: 270px;
    min-width: 270px;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    will-change: transform;
    background-color: var(--kry-cinza);
  }

  .fx2-lp .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .fx2-lp .area-btn{
    max-width: 270px;
  }

  .fx2-lp .area-btn .btn-padrao{
    background-color: var(--kry-color-1);
    border-color: var(--kry-color-1);
  }

  .fx2-lp .area-btn .btn-padrao:hover{
    background-color: var(--kry-color-2);
    border-color: var(--kry-color-2);
  }

  .fx2-lp .estrela{
    width: 330px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -30%;
  }

  .fx3-lp {
    padding: 50px 0;
    background-color: var(--kry-color-2);
  }

  .fx3-lp p {
    font-size: 22px;
    line-height: 39px;
    color: var(--kry-branco);
  }

  .fx3-lp h2 {
    font-family: var(--regular);
    font-size: 33px;
    line-height: 39px;
    font-style: italic;
    color: var(--kry-branco);
    font-weight: 100;
  }

  .fx3-lp .conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

  .fx3-lp .youtube {
    width: 770px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
  }

  .fx3-lp .youtube iframe {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }

  .fx4-lp {
    padding: 60px 0;
    overflow: hidden;
  }

  .fx4-lp h2 {
    font-size: 43px;
  }

  .fx4-lp h3 {
    font-family: var(--regular);
    font-size: 22px;
    line-height: 35px;
    margin: 0;
    font-weight: 100;
  }

  .fx4-lp h3 strong {
    font-family: var(--bold);
    font-size: 28px;
    line-height: 35px;
    text-decoration-line: line-through;
    text-decoration-color: red;
    text-decoration-style: solid;
    text-decoration-thickness: 5px;
  }

  .fx4-lp h3 span {
    font-family: var(--bold);
    font-size: 28px;
    line-height: 35px;
  }

  .fx4-lp p strong {
    font-family: var(--bold);
    color: red;
  }

  .fx4-lp .conteudo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    min-height: 560px;
  }

  .fx4-lp .carrossel {
    width: 100%;
    max-width: 1170px;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    position: absolute;
    left: -60%;
    overflow: visible;
    isolation: isolate;
    z-index: 1;
  }

  .fx4-lp .carrossel .img {
    width: 270px;
    min-width: 270px;
    height: 545px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    will-change: transform, filter, opacity;
    background-color: var(--kry-cinza);
  }

  .fx4-lp .carrossel .img img {
    display: block!important;
  }

  .fx4-lp .txt {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 670px;
    position: relative;
    gap: 30px;
    z-index: 2;
  }

  .fx4-lp .txt .topicos {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fx4-lp .txt .topicos strong {
    font-family: var(--bold);
    color: var(--kry-color-1);
    font-size: 28px;
    line-height: 35px;
    text-decoration-line: none;
  }

  .fx4-lp .txt .topicos .item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fx4-lp .txt .topicos .icn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx4-lp .txt .itens {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fx4-lp .txt .itens .item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fx4-lp .txt .itens .item .icn {
    width: 14px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fx4-lp .area-btn {
    max-width: 270px;
  }

  .fx4-lp .area-btn .btn-padrao {
    border-color: var(--kry-color-2);
    background-color: var(--kry-color-2);
  }

  .fx4-lp .area-btn .btn-padrao:hover {
    background-color: var(--kry-color-1);
    border-color: var(--kry-color-1);
  }

  .linha-azul-lp{
    position: relative;
  }

  .linha-azul-lp .item{
    width: 100%;
    height: 14px;
    background-color: var(--kry-color-2);
    border-radius: 100px;
    position: absolute;
    left: -15%;
  }

  .fx5-lp{
    min-height: 450px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 60px 0;
  }

  .fx5-lp .faq {
    width: 100%;
    max-width: 670px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px 0 0;
  }

  .fx5-lp .faq .item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .fx5-lp .faq .item .pergunta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 5px;
    border-bottom: 2px solid var(--kry-color-1);
    font-family: var(--medium);
    font-size: 18px;
    color: var(--kry-color-2);
    transition: background 0.3s ease;
  }

  .fx5-lp .faq .item .pergunta span {
    width: 100%;
    max-width: 580px;
    display: flex;
  }

  .fx5-lp .faq .item.active .pergunta span{
    color: var(--kry-color-1);
  }

  .fx5-lp .faq .item .icn {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  .fx5-lp .faq .item .resposta {
    max-height: 0;
    overflow: hidden;
    padding: 0 0;
    transition: max-height 0.5s ease, padding 0.5s ease;
    font-family: var(--regular);
  }

  .fx5-lp .faq .item.active .resposta {
    max-height: 500px;
    padding: 10px 0;
  }

  .fx5-lp .faq .item.active .pergunta .icn {
    transform: rotate(-90deg);
  }

  .footer-lp {
    padding: 60px 0 0;
    background-color: var(--kry-cinza);
  }

  .footer-lp h4 {
    font-family: var(--regular);
    font-size: 22px;
    line-height: 35px;
    margin: 15px 0 0;
    font-weight: 100;
  }

  .footer-lp .conteudo {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-lp .infos-formulario {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-lp .infos-formulario .infos {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .footer-lp .infos-formulario .infos .linha-vertical {
    width: 8px;
    min-height: 270px;
    background-color: var(--kry-color-1);
    border-radius: 100px;
  }

  .footer-lp .infos-formulario .infos .txt {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-lp .infos-formulario .infos .redes {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .footer-lp .infos-formulario .infos .redes .logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-lp .infos-formulario .formulario {
    display: flex;
    width: 100%;
    max-width: 470px;
  }

  .footer-lp .infos-formulario .formulario {
    display: flex;
    width: 100%;
    max-width: 470px;
  }

  .footer-lp .infos-formulario .formulario .wpcf7 form {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .footer-lp .infos-formulario .formulario .wpcf7 form p {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 470px;
  }

  .footer-lp .infos-formulario .formulario .wpcf7 form input,
  .footer-lp .infos-formulario .formulario .wpcf7 form textarea {
    width: 100%;
    min-height: 41px;
    border: 1px solid #AAA;
    background-color: var(--kry-branco);
    border-radius: 100px;
    font-family: var(--regular);
    font-size: 16px;
    color: var(--kry-cinza-texto);
    padding: 0 0 0 15px;
    margin: 0 0 10px;
    outline: none;
  }

  .footer-lp .infos-formulario .formulario .wpcf7 form textarea {
    padding: 10px 0 0 15px;
    border-radius: 20px;
    height: 115px;
    resize: none;
  }

  .footer-lp .infos-formulario .formulario .area-btn {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .footer-lp .infos-formulario .formulario .area-btn p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .footer-lp .infos-formulario .formulario .btn-padrao {
    background-color: var(--kry-color-1);
    border: none;
    cursor: pointer;
    height: 40px;
    padding: 0 20px;
    color: #fff;
    transition: 0.3s;
  }

  .footer-lp .infos-formulario .formulario .btn-padrao:hover {
    background-color: var(--kry-color-2);
  }

  .footer-lp .creditos {
    padding: 60px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-lp .creditos a {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .footer-lp .creditos .icn-kryzalis {
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-lp .creditos .icn-kryzalis img {
    margin-top: -12px;
  }

  .lp-whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: var(--regular);
  }

  .lp-whatsapp-modal.ativo {
    display: flex;
  }

  .lp-whatsapp-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .72);
    backdrop-filter: blur(4px);
  }

  .lp-whatsapp-modal__box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    background: var(--kry-branco);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
    animation: lpModalEntrada .25s ease;
  }

  .lp-whatsapp-modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: 0;
    background: transparent;
    color: var(--kry-preto);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s linear;
  }

  .lp-whatsapp-modal__close:hover {
    color: var(--kry-color-2);
    transform: rotate(90deg);
  }

  .lp-whatsapp-modal__header {
    margin-bottom: 24px;
  }

  .lp-whatsapp-modal__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(96, 179, 221, .16);
    color: var(--kry-color-2);
    font-family: var(--semibold);
    font-size: 13px;
  }

  .lp-whatsapp-modal__header h3 {
    margin: 0 0 10px;
    color: var(--kry-preto);
    font-family: var(--bold);
    font-size: 25px;
    line-height: 1.2;
  }

  .lp-whatsapp-modal__header p {
    margin: 0;
    color: var(--kry-cinza-texto);
    font-family: var(--regular);
    font-size: 15px;
    line-height: 1.55;
  }

  .lp-whatsapp-form__group {
    margin-bottom: 14px;
  }

  .lp-whatsapp-form__group label {
    display: block;
    margin-bottom: 7px;
    color: var(--kry-preto);
    font-family: var(--medium);
    font-size: 14px;
  }

  .lp-whatsapp-form__group input {
    width: 94%;
    height: 48px;
    border: 1px solid var(--kry-cinza);
    border-radius: 12px;
    padding: 0 14px;
    color: var(--kry-preto);
    background: var(--kry-branco);
    font-family: var(--regular);
    font-size: 15px;
    outline: none;
    transition: all .2s linear;
  }

  .lp-whatsapp-form__group input:focus {
    border-color: var(--kry-color-1);
    box-shadow: 0 0 0 4px rgba(96, 179, 221, .18);
  }

  .lp-whatsapp-form__submit {
    width: 100%;
    height: 50px;
    margin-top: 8px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--kry-color-1), var(--kry-color-2));
    color: var(--kry-branco);
    font-family: var(--bold);
    font-size: 15px;
    cursor: pointer;
    transition: all .2s linear;
  }

  .lp-whatsapp-form__submit:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
  }

  .lp-whatsapp-form small {
    display: block;
    margin-top: 12px;
    color: var(--kry-cinza-texto);
    font-family: var(--regular);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }

  body.lp-modal-aberto {
    overflow: hidden;
  }  

/*KEYFRAMES*/
  @keyframes flutuarProduto {
    0% {
      transform: translateY(0) rotate(0deg);
    }

    50% {
      transform: translateY(-22px) rotate(1.5deg);
    }

    100% {
      transform: translateY(0) rotate(0deg);
    }
  }

  @keyframes autoRun3d {
    from {
      transform: perspective(1000px) rotateY(-360deg);
    }

    to {
      transform: perspective(1000px) rotateY(0deg);
    }
  }

  @keyframes animateBrightness {
    10% {
      filter: brightness(1);
    }

    50% {
      filter: brightness(0.45);
    }

    90% {
      filter: brightness(1);
    }
  }  

  @keyframes lpModalEntrada {
    from {
      opacity: 0;
      transform: translateY(16px) scale(.98);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

/*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;
      line-height: normal!important;
    }

    h2{
      font-size: 18px!important;
      line-height: normal!important;
    }

    h3{
      font-size: 17px!important;
      line-height: normal!important;
    }

    h4{
      font-size: 16px!important;
      line-height: normal!important;
    }

    p{
      font-size: 14px!important;
      line-height: normal!important;
    }

    .blog03 .row{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }  

    .linha-cinza{
      display: none;
    }

    .header-site{
      background: var(--kry-color-2);
      padding: 10px;
      border-bottom: 3px solid var(--kry-color-1);
    }

    .header-site .logo {
      width: 100%;
      max-width: 230px;
      height: auto;
    }

    .header-site .menu {
      display: none;
    }

    .header-site .btn-menu-site {
      padding: 0 40px 0;
      display: flex;
    }

    .header-site .menu a {
      font-size: 14px;
    }  

    .footer-site{
      padding: 50px 10px;
    }  

    .footer-site .conteudo{
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-site .contato{
      padding: 0;
      border: none;
    }

    .footer-site .lista .titulo{
      align-items: center;
      text-align: center;
      justify-content: center;
      gap: 10px;
    }

    .banner-paginas{
      padding: 60px 0 0;
      margin: 0;
    }

    .divisao-pages{
      display: none;
    }

    .divisorias .linha-azul-1{
      display: none;
    }

    .divisorias .linha-azul-2{
      border-radius: 0;
    }

    .titulo-padrao h2{
      margin: -5px 5px 0 5px;
    }

    .footer-site .lista .titulo .itens {
      gap: 5px;
    }

    .banner-video{
      min-height: 350px;
      padding: 120px 10px 5px;
      margin: 0;
    }

    .banner-video .conteudo{
      flex-direction: column-reverse;
      gap: 30px;
    }

    .banner-video .img{
      width: 100%;
      max-width: 150px;
      height: auto;
    }

    .banner-video .area-btn {
      padding: 20px 0 0;
    }

    .banner-video .botoes {
      bottom: 5%;
    }    

    .fx1-home{
      padding: 30px 10px;
      min-height: auto;
    }

    .fx1-home .conteudo{
      flex-direction: column;
      gap: 20px;
    }

    .fx1-home .txt-btn{
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 20px;
    }

    .fx1-home .txt{
      max-width: 670px;
      gap: 10px;
    }

    .fx1-home .img{
      width: 100%;
      max-width: 570px;
      height: auto;
    }

    .fx2-home{
      background-image: none!important;
      padding: 10px;
    }

    .fx2-home .card{
      width: 100%;
      max-width: 390px;
      height: auto;
    }

    .fx3-home{
      padding: 20px 10px;
    }

    .fx3-home .cards-itens{
      height: auto;
      gap: 20px;
    }

    .fx4-home{
      padding: 20px 10px;
    }

    .fx4-home .conteudo{
      gap: 20px;
    }

    .fx5-home{
      padding: 20px 10px;
    }

    .fx5-home .conteudo{
      flex-direction: column;
      gap: 20px;
    }

    .fx5-home .img{
      width: 100%;
      max-width: 570px;
      height: auto;
    }

    .fx6-home{
      padding: 30px 10px;
    }

    .fx6-home .conteudo{
      gap: 20px;
    }

    .fx7-home{
      padding: 20px 10px;
    }

    .fx7-home .conteudo{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .fx7-home .txt{
      max-width: 670px;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .fx7-home .titulo{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 100%;
    }

    .fx7-home .img{
      width: 100%;
      max-width: 370px;
      height: auto;
    }

    .fx7-home .circulo {
      width: 20px;
      height: 18px;
      font-size: 12px;
    } 

    .fx8-home{
      padding: 20px 10px;
    }

    .fx8-home .swiper-scrollbar{
      display: none!important;
    }  

    .fx9-home{
      padding: 20px 10px;
    } 

    .fx9-home .banner-calendario {
      max-width: 370px;
      width: 100%;
      height: auto;
    }

    .fx9-home .txt {
      max-width: 670px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx10-home{
      padding: 20px 10px;
    }

    .fx10-home-video-container{
      width: 100%;
      max-width: 370px;
      height: 400px;
      padding: 0;
    }

    .fx10-home-video-container .circulo{
      left: 0;
      width: 100%;
      max-width: 800px;
      height: auto;
    }

    .fx10-home .conteudo{
      flex-direction: column;
      align-items: center;
    }

    .fx10-home .img {
      width: 100%;
      max-width: 145px;
      height: auto;
      left: calc(100% - 73%);
    }

    .fx10-home .txt .titulo .icn {
      display: none;
    }

    .fx10-home .faq {
      padding: 0;
    }

    .fx10-home .faq .item .pergunta {
      font-size: 16px;
    }

    .fx10-home .faq .item .resposta {
      font-size: 14px;
    }

    .fx10-home .txt {
      align-items: center;
    }

    .fx11-home{
      padding: 20px 10px;
    }

    .fx11-home .conteudo {
      gap: 30px;
    }

    .fx11-home .txt-btn{
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }

    .fx11-home .cards {
      gap: 20px;
    }    

    .fx11-home .cards .img {
      width: 100%;
      max-width: 370px;
    }

    .fx12-home{
      padding: 20px 10px;
    }

    .fx12-home .conteudo{
      justify-content: center;
      height: auto;
    }

    .fx12-home .txt-btn{
      padding: 0;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx1-sobre{
      padding: 20px 10px;
    }

    .fx1-sobre .conteudo{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .fx1-sobre .img{
      width: 100%;
      max-width: 500px;
      height: auto;
    }

    .fx1-sobre .txt {
      padding: 0;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .fx2-sobre{
      padding: 20px 10px;
    }

    .fx2-sobre .carrossel{
      padding: 20px 0 0;
    }

    .fx2-sobre .carrossel-area {
      padding: 0;
    }

    .fx2-sobre .swiper-scrollbar{
      display: none;
    }

    .fx3-sobre{
      background-image: none!important;
      padding: 20px 10px;
      min-height: auto;
    }

    .fx3-sobre .conteudo{
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 20px;
    }

    .fx3-sobre .txt .item{
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .fx3-sobre p{
      text-align: center;
    }

    .fx5-sobre{
      min-height: 250px;
    }

    .fx1-loja{
      padding: 20px 10px;
    }

    .fx1-loja .conteudo {
      gap: 20px;
    }

    .fx1-single-loja{
      padding: 20px 10px;
    }

    .fx1-single-loja .conteudo{
      padding: 30px 0 0 0 !important;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }

    .fx1-single-loja .img {
      width: 100%;
      max-width: 570px;
      height: auto;
    }

    .fx1-single-loja .txt-btn{
      padding: 0;
      gap: 20px;
      align-items: center;
    }

    .fx2-single-loja{
      padding: 20px 10px;
    }

    .fx2-single-loja .conteudo{
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }

    .fx3-single-loja{
      padding: 20px 10px;
    }

    .fx3-single-loja .conteudo{
      flex-direction: column;
      gap: 20px;
    }

    .fx3-single-loja .youtube {
      height: 250px;
    }

    .fx3-single-loja .youtube iframe {
      height: 250px;
    }

    .fx3-5-single-loja{
      padding: 20px 10px;
    }

    .fx3-5-single-loja h2{
      margin: 0 0 20px;
    }

    .fx3-5-single-loja .conteudo{
      gap: 20px;
    }

    .fx4-single-loja{
      padding: 20px 10px;
    }

    .fx4-single-loja .conteudo{
      gap: 20px;
    }

    .fx5-single-loja{
      padding: 20px 10px;
    }

    .fx5-single-loja .conteudo .card{
      width: 100%;
      max-width: 370px;
      height: auto;
    }

    .fx5-single-loja .conteudo .card .tamanho {
      width: 100%;
    }

    .fx5-single-loja .botoes{
      flex-direction: column;
      justify-content: center;
      gap: 20px;
      padding: 20px 0 0 0;
    }

    .fx5-single-loja .botoes .voltar {
      max-width: 370px;
    }

    .fx1-eventos{
      padding: 20px 10px;
    }

    .fx1-eventos .eventos{
      gap: 20px;
    }

    .fx1-eventos .eventos .card-evento {
      width: 100%;
      max-width: 370px;
      height: auto;
    }

    .fx2-eventos{
      padding: 20px 10px 0;
    }

    .fx2-eventos .conteudo{
      flex-direction: column;
    }

    .fx2-eventos .img {
      display: none;
    }

    .fx2-eventos .newsletter{
      max-width: 100%;
      height: auto;
      padding: 20px 10px 30px;
      border-radius: unset;
    }

    .fx2-eventos .newsletter .formulario label {
      font-size: 12px;
    }

    .fx1-faq .txt{ 
      padding: 15px 0;
    }

    .fx1-contato{
      padding: 20px 10px;
    }

    .fx1-contato .txt{
      padding: 15px 0;
    }

    .fx1-contato .img-formulario .img{
      width: 100%;
      max-width: 470px;
      height: auto;
    }

    .fx1-contato .img-formulario{
      flex-direction: column-reverse;
      gap: 20px;
      padding: 10px 0;
    }

    .fx1-contato .img-formulario .formulario input {
      padding: 0 0 0 5px;
      max-width: 650px;
    }

    .fx1-contato .img-formulario .formulario .campo-btn{
      flex-direction: column;
      justify-content: center;
      gap: 10px;
      padding: 5px 0 0 0;
    }

    .fx2-contato{
      padding: 20px 10px;
    }

    .fx2-contato .conteudo {
      gap: 20px;
    }

    .fx2-contato .sociais{
      padding: 0;
    }

    .fx2-contato .item .v1 {
      margin: 0;
    }

    .fx3-contato iframe {
      height: 350px;
    }

    .fx4-contato{
      padding: 20px 10px;
    }

    .fx4-contato .conteudo{
      gap: 20px;
    }

    .fx1-programa-oxyfacial{
      padding: 20px 10px;
    }

    .fx1-programa-oxyfacial .conteudo {
      gap: 20px;
    }

    .fx1-programa-flagship {
      padding: 20px 10px;
    }

    .fx1-programa-flagship .youtube{
      width: 100%;
      height: auto;
    }

    .fx1-programa-flagship .youtube iframe {
      width: 100%;
      height: 450px;
    }

    .fx1-programa-flagship .logo-txt .img {
      width: 100%;
      max-width: 395px;
      height: auto;
    }

    .fx2-programa-flagship{
      padding: 20px 10px;
    }

    .fx2-programa-flagship .conteudo {
      padding: 20px 0 0 !important;
    }    

    .fx3-programa-flagship{
      padding: 20px 10px;
      gap: 20px;
    }

    .fx3-programa-flagship .conteudo {
      gap: 30px;
    }

    .fx4-programa-flagship{
      padding: 20px 10px;
    }

    .fx4-programa-flagship .carrossel {
      overflow: hidden;
    }

    .fx4-programa-flagship .swiper-scrollbar {
      width: 100% !important;
    }

    .fx4-programa-flagship .carrossel .swiper-slide {
      width: 100%;
      max-width: 1170px;
      height: 500px;
    }

    .fx5-programa-flagship{
      padding: 20px 10px;
    }

    .fx5-programa-flagship .conteudo{
      gap: 20px;
    }

    .fx5-programa-flagship .card{
      min-height: auto;
      gap: 10px;
    }

    .fx5-programa-flagship .card .img {
      width: 100%;
      max-width: 570px;
      height: auto;
    }

    .fx2-treinamento-flagship{
      padding: 20px 10px;
    }

    .fx2-treinamento-flagship .card{
      padding: 40px 20px;
    }

    .fx3-treinamento-flagship{
      padding: 20px 10px;
    }

    .fx3-treinamento-flagship h2 {
      margin: 0;
    }

    .fx3-treinamento-flagship .img-txt{
      flex-direction: column;
      gap: 20px;
    }

    .fx3-treinamento-flagship .img {
      width: 100%;
      max-width: 570px;
      height: auto;
    }

    .fx2-encontre-clinica{
      display: none;
    }

    .clinicas-popup-overlay{
      display: none;
    }

    .fx2-encontre-clinica-responsivo{
      display: flex;
      padding: 20px 10px;
    }

    .mapa-wrapper{
      display: none;
    }

    .header-lp {
      position: relative;
      padding: 20px 10px 30px;
      min-height: auto;
    }

    .header-lp::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.85);
      z-index: 1;
    }

    .header-lp > * {
      position: relative;
      z-index: 2;
    } 

    .header-lp .container{
      display: flex;
      align-items: center;
      justify-content: center;
    }   

    .header-lp .conteudo{
      align-items: center;
      justify-content: center;
      gap: 40px;
      text-align: center;
    }

    .header-lp .logo {
      width: 100%;
      max-width: 500px;
      height: auto;
    }

    .header-lp .txt{
      gap: 10px;
    }

    .fx1-lp,
    .fx2-lp{
      padding: 20px 10px;
    }

    .fx1-lp .conteudo,
    .fx2-lp .conteudo{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      position: unset;
    }

    .fx2-lp .conteudo{
      flex-direction: column-reverse;
    }

    .fx1-lp .carrossel,
    .fx2-lp .carrossel{
      position: unset;
    }

    .fx1-lp .txt,
    .fx2-lp .txt {
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 20px;
      position: unset;
    }   

    .fx3-lp{
      padding: 20px 10px 40px;
    } 

    .fx3-lp .youtube{
      width: 100%;
      height: auto;
    }

    .fx3-lp .youtube iframe {
      width: 100%;
      height: 450px;
    }

    .fx4-lp{
      padding: 20px 10px;
    }

    .fx4-lp .conteudo{
      flex-direction: column;
      justify-content: center;
      position: unset;
      gap: 20px;
    }

    .fx4-lp .carrossel{
      position: unset;
      gap: 0;
    }

    .fx4-lp .carrossel .img img{
      margin-right: -20px;
    }

    .fx4-lp .txt{
      position: unset;
      align-items: center;
      justify-content: center;
      gap: 20px;
      text-align: center;
    }

    .fx4-lp h3{
      font-size: 14px!important;
    }

    .fx4-lp .txt .topicos strong {
      font-size: 16px!important;
      line-height: normal;
    }

    .fx4-lp h3 strong,
    .fx4-lp h3 span{
      font-size: 16px;
    }

    .fx4-lp .txt .topicos .item{
      flex-direction: column;
      justify-content: center;
      text-align: center;
      gap: 5px;
    }

    .fx4-lp .txt .itens .item {
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }    

    .linha-azul-lp{
      position: unset;
    }

    .linha-azul-lp .item {
      border-radius: 0;
      position: unset;
    }

    .fx5-lp {
      min-height: auto;
      background-image: none!important;
      margin: 0;
      padding: 20px 10px;
    }    

    .fx5-lp h2{
      text-align: center;
    }

    .fx5-lp .faq {
      max-width: 100%;
      padding: 20x 0 0;
    }

    .footer-lp{
      padding: 20px 10px 50px 10px;
    }

    .footer-lp .conteudo{
      align-items: center;
      justify-content: center;
      gap: 40px;
      text-align: center;
    }

    .footer-lp .infos-formulario{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .footer-lp .infos-formulario .infos{
      flex-direction: column;
      justify-content: center;
    }

    .footer-lp .infos-formulario .infos .linha-vertical {
      display: none;   
    }

    .footer-lp .infos-formulario .infos .txt {
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .footer-lp .creditos{
      padding: 30px 0;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      gap: 15px;
    }

    .footer-lp .infos-formulario .formulario .wpcf7 form input, 
    .footer-lp .infos-formulario .formulario .wpcf7 form textarea {
      width: 95%;
    }

    .footer-lp .infos-formulario .formulario .wpcf7 form {
      align-items: center;
      justify-content: center;
    }    

    .footer-lp .infos-formulario .formulario {
      align-items: center;
      justify-content: center;
    }

    .footer-lp .infos-formulario .formulario .wpcf7 form p{
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
      padding: 20px 0 0 0;
    }    
  }

  @media (max-width: 991px){
    .btnwhats {
      left: 50%;
      right: auto;
      transform: translate(-50%, 0);
    }

    #btnTopo {
      right: 0;
      left: 80%;
    }
  }

  @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(--regular);
    }

    .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;
    }

    .fx4-home .youtube iframe {
      height: 400px;
    }

    .fx3-contato iframe {
      height: 200px;
      min-height: auto;
    }

    .fx4-programa-flagship .carrossel .swiper-slide {
      height: 350px;
    }
  }

  @media(max-width: 576px){
    .header-site .menu-mobile-site {
      width: 280px;
      padding: 90px 25px 35px;
    }

    .fx4-home .youtube iframe{
      height: auto;
      min-height: 200px;
    }

    .pesquisa-loja__form {
      max-width: 100%;
    }

    .pesquisa-loja__form button {
      padding: 0 15px;
    }

    .preview-pesquisa-produtos {
      width: 100%;
    }

    .preview-pesquisa-produtos__imagem {
      flex-basis: 48px;
      width: 48px;
      height: 58px;
    }

    .pesquisa-loja__resultado {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }    

    .lp-whatsapp-modal {
      align-items: flex-end;
      padding: 12px;
    }

    .lp-whatsapp-modal__box {
      max-width: 100%;
      padding: 28px 22px 24px;
      border-radius: 20px 20px 12px 12px;
      position: relative;
      bottom: 10%;
      }
    }

    .lp-whatsapp-modal__header h3 {
      font-size: 22px;
    }

    .lp-whatsapp-form__group input {
      width: 90%;
    }
  }

  @media (max-width: 426px){
    .g-recaptcha {
      transform: scale(0.7);
      transform-origin: 0 0;
    }

    .fx1-home .img-video{
      width: 100%;
      max-width: 300px;
      height: 300px;
    }

    .fx3-home .cards-itens .item{
      height: auto;
    }

    .fx1-programa-flagship .youtube iframe {
      height: 300px;
    }

    .fx4-programa-flagship .carrossel .swiper-slide {
      height: 200px;
    }

    .fx3-lp .youtube iframe {
      height: 300px;
    }

    .fx2-eventos .newsletter .formulario .wpcf7-response-output {
      font-size: 12px;
      bottom: 0;
      max-width: 160px;
    }

    .fx2-eventos .newsletter {
      padding-bottom: 60px;
    }
  }

  @media(max-width: 376px){
    .fx2-eventos .newsletter .formulario .check {
      gap: 5px;
    }

    .fx2-eventos .newsletter .formulario input[type="checkbox"] {
      width: 25px;
      height: 20px;
    }

    .fx4-programa-flagship .carrossel .swiper-slide {
      height: 1
      50px;
    }    
  }