@charset "UTF-8";

/*FONTES*/
@font-face {
  font-family: 'Mulish-ExtraLight';
  src: url('../fonts/Mulish-ExtraLight.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-Light';
  src: url('../fonts/Mulish-Light.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-Regular';
  src: url('../fonts/Mulish-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-Medium';
  src: url('../fonts/Mulish-Medium.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-SemiBold';
  src: url('../fonts/Mulish-SemiBold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-Bold';
  src: url('../fonts/Mulish-Bold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-ExtraBold';
  src: url('../fonts/Mulish-ExtraBold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-Black';
  src: url('../fonts/Mulish-Black.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Mulish-BlackItalic';
  src: url('../fonts/Mulish-BlackItalic.ttf') format('truetype');
  font-style: italic;
}

/* VARIÁVEIS GLOBAIS */
:root {
  --mulish-extralight: 'Mulish-ExtraLight';
  --mulish-light: 'Mulish-Light';
  --mulish-regular: 'Mulish-Regular';
  --mulish-medium: 'Mulish-Medium';
  --mulish-semibold: 'Mulish-SemiBold';
  --mulish-bold: 'Mulish-Bold';
  --mulish-black: 'Mulish-Black';
  --mulish-extrabold: 'Mulish-ExtraBold';
  --mulish-blackitalic: 'Mulish-BlackItalic';

  --kry-cor-1: #00225C;
  --kry-cor-2: #0068BC;
  --kry-cor-3: #0090FF;
  --kry-cor-4: #FF292F;
  --kry-cor-5: #032A6E;
  --kry-preto: #000000;
  --kry-branco: #FFFFFF;
  --kry-cinza-claro: #D9D9D9;
  --kry-cinza: #8d8e91;
}

body{
  font-family: var(--mulish-regular);
  background-color: var(--kry-branco);
  margin: 0px!important;
  padding: 0px!important;
}

::selection {
  background: var(--kry-cor-2);
  color: var(--kry-branco);
}

::-moz-selection {
  background: var(--kry-cor-1);
  color: var(--kry-branco);
}

/*LAYOUT & CONTAINERS*/
.website {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 100%!important;
  max-width: 1170px!important;
}

/*COOKIES*/
.aceitar_termos {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  background-color: rgba(33, 33, 33, 0.9);
  z-index: 999999;

  a {
    color: #FFFC9E !important;

    &:hover {
      color: #38A7EB !important;
    }
  }
}

a.ctacookies {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 15px;
  border-radius: 50px;
  background-color: var(--kry-cor-1);;
  color: #FFF;
  transition: all .2s linear;
  cursor: pointer;

  &:hover {
    filter: brightness(1.2);
  }
}

/*BOTÃO WHATSAPP FLUTUANTE*/
.btnwhats {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  img {
    transition: all .2s linear;
  }

  &:hover {
    img {
      filter: brightness(1.2);
    }
  }
}

/*FORMULÁRIOS (Contact Form)*/
.wpcf7 {
  &-not-valid {
    background-color: #FFD2D2 !important;
  }

  &-form-control-wrap {
    display: block;
  }

  &-response-output {
    color: #FFF !important;
    border: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
  }

  form {
    &.sent .wpcf7-response-output {
      background-color: #46b450;
    }

    &.failed .wpcf7-response-output,
    &.aborted .wpcf7-response-output {
      background-color: #dc3232;
    }

    &.spam .wpcf7-response-output {
      background-color: #f56e28;
    }

    &.invalid .wpcf7-response-output,
    &.unaccepted .wpcf7-response-output {
      background-color: #ffb900;
    }
  }
}

span.wpcf7-not-valid-tip {
  position: absolute;
  right: 3px;
  top: 1px;
  font-size: 9px;
  z-index: 1;
}

/*HEADER - CABEÇALHO*/
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-cor-1);
  padding: 30px 0;
}

.header .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header a.logo {
  width: 100%;
  max-width: 234px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.header a.logo:hover {
  transform: scale(0.97);
}

.header a.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .itens {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  gap: 10px;
}

.header .itens a.area-cliente {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  width: 100%;
  max-width: 270px;
  text-decoration: none;
  border: 3px solid var(--kry-branco);
  border-radius: 10px;
  padding: 10px 0px;
}

.header .itens a.area-cliente:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  filter: brightness(1.05);
}

.header .itens a.area-cliente .icn {
  width: 100%;
  max-width: 19px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .itens a.area-cliente .icn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .itens a.area-cliente span {
  font-family: var(--mulish-bold);
  font-size: 22px;
  color: var(--kry-branco);
}

.header .itens a.btn-assine {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 270px;
  padding: 13px 0;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  background-color: var(--kry-cor-4);
  box-shadow: 0 0 25px rgba(255, 41, 47, 0.7);
}

.header .itens a.btn-assine:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.header .itens a.btn-assine .icn-assine {
  width: 28px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .itens a.btn-assine .icn-assine img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .itens a.btn-assine span {
  font-family: var(--mulish-bold);
  font-size: 22px;
  color: var(--kry-branco);
}

/*FOOTER - RODAPÉ*/
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 0 0;
  color: var(--kry-preto);
  text-align: justify;
}

.footer .conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer .infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer .infos .txt {
  width: 100%;
  max-width: 668px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .infos .txt h2 {
  font-family: var(--mulish-black);
  font-size: 40px;
  margin: 0;
}

.footer .infos .txt p {
  font-family: var(--mulish-bold);
  font-size: 20px;
  margin: 0;
}

.footer .infos .txt strong {
  color: #14CD1A;
  border-bottom: 1px solid #14CD1A;
}

.footer .infos .txt a{
  text-decoration: none;
}

.footer .infos .dados {
  width: 100%;
  max-width: 381px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer .infos .dados a.logo {
  width: 100%;
  max-width: 370px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.footer .infos .dados a.logo:hover {
  transform: scale(0.99);
}

.footer .infos .dados a.logo img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer .infos .dados a.whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--mulish-regular);
  font-size: 20px;
  color: var(--kry-preto);
  transition: transform 0.3s ease-in-out;
}

.footer .infos .dados a.whatsapp:hover {
  transform: scale(0.99);
}

.footer .infos .dados a.whatsapp .icn-wpp {
  width: 100%;
  max-width: 18px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .infos .dados a.whatsapp .icn-wpp img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.footer span {
  font-family: var(--mulish-semibold);
  font-size: 14px;
  color: var(--kry-preto);
}

.footer .creditos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 100px 0 10px 0;
}

.footer .creditos .developer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .creditos .developer a.kryzalis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.footer .creditos .developer a.kryzalis:hover {
  transform: translateY(-3px);
}

.footer .creditos .developer a.kryzalis .icn {
  width: 100%;
  max-width: 45px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -8px;
}

.footer .creditos .developer a.kryzalis .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

/*BANNER*/
.banner{
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: var(--kry-branco);
}

.banner .conteudo{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.banner .txt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: justify;
}

.banner h1{
  font-family: var(--mulish-bold);
  font-size: 44px;
  margin: 0;
}

.banner p{
  font-family: var(--mulish-bold);
  font-size: 30px;
  margin: 0;
}

.banner a.btn-vermelho{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 470px;
  padding: 15px 0;
  background-color: var(--kry-cor-4);
  color: var(--kry-branco);
  font-family: var(--mulish-bold);
  font-size: 22px;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-align: center;
}

.banner a.btn-vermelho:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  filter: brightness(1.05);
}

.banner a.btn-vermelho:active{
  transform: scale(0.97);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

/*FX1-LP*/
.fx1-lp{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--kry-cor-1);
  padding: 25px 0;
}

.fx1-lp .conteudo{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.fx1-lp .card{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 270px;
  height: auto;
}

.fx1-lp .card .icn{
  width: 100%;
  max-width: 70px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-lp .card .icn img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx1-lp .card .txt{
  display: flex;
  flex-direction: column;
  text-align: justify;
  color: var(--kry-branco);
}

.fx1-lp h2{
  font-family: var(--mulish-bold);
  font-size: 22px;
  margin: 0;
}

.fx1-lp p{
  font-family: var(--mulish-regular);
  font-size: 16px;
  margin: 0;
}

/*FX2-LP*/
.fx2-lp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0px;
}

.fx2-lp h2 {
  font-family: var(--mulish-bold);
  font-size: 30px;
  margin: 0px;
}

.fx2-lp h2 span{
  font-family: var(--mulish-black);
  font-size: 36px;
}

.fx2-lp p {
  font-family: var(--mulish-regular);
  font-size: 22px;
  margin: 0px;
}

.fx2-lp p strong {
  font-family: var(--mulish-black);
  color: var(--kry-cor-3);
}

.fx2-lp .conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: var(--kry-preto);
}

.fx2-lp .conteudo .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.fx2-lp .conteudo .planos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.fx2-lp .conteudo .planos a.card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 220px;
  height: auto;
  background-color: var(--kry-cor-2);
  border-radius: 20px;
  border: 1px solid var(--kry-cor-2);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.fx2-lp .conteudo .planos a.card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 10px 25px rgba(0,145,255,0.5);
  filter: brightness(1.05);
}

.fx2-lp .conteudo .planos a.card::after {
  content: "CONTRATAR PLANO!";
  text-align: center;
  position: absolute;
  inset: 0;  
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #032A6E;
  font-family: var(--mulish-blackitalic);
  font-size: 26px;
  letter-spacing: 1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.fx2-lp .conteudo .planos a.card:hover::after {
  opacity: 1;
}

.fx2-lp .conteudo .planos a.card .tipo {
  font-family: var(--mulish-blackitalic);
  font-size: 28px;
  color: var(--kry-cor-3);
  padding: 30px 15px 20px 15px;
  background-color: var(--kry-branco);
  text-align: center;
}

.fx2-lp .conteudo .planos a.card .especificacoes {
  display: flex;
  flex-direction: column;
  width: auto;
  min-height: 115px;
  padding: 30px 15px;
  gap: 10px;
  background: linear-gradient(to right, #0068BC 0%, #032A6E 100%);
  border-bottom: 2px solid var(--kry-branco);
}

.fx2-lp .conteudo .planos a.card .especificacoes h3 {
  font-family: var(--mulish-black);
  font-size: 55px;
  color: var(--kry-branco);
  margin: 0px;
  text-align: center;
}

.fx2-lp .conteudo .planos a.card .especificacoes p {
  font-family: var(--mulish-bold);
  font-size: 16px;
  color: var(--kry-branco);
  margin: 0px;
}

.fx2-lp .conteudo .planos a.card .preco {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  background-color: var(--kry-cor-2);
  color: var(--kry-branco);
  font-family: var(--mulish-blackitalic);
  font-size: 45px;
}

.fx2-lp .conteudo .planos a.card .preco p {
  font-family: var(--mulish-bold);
  font-size: 18px;
  margin: 8px 0px 0px 0px;
}

.fx2-lp .conteudo .planos__wrapper{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.planos__wrapper .card__container{
  width: 220px;
  height: auto;

  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.planos__wrapper .btn__card__plano{
  position: relative;

  width: 100%;

  display: flex;
  justify-content: center;

  font-family: var(--mulish-blackitalic);
  font-size: 20px;
  color: var(--kry-cor-3);
  text-align: center;
  text-decoration: none;

  background-color: #FFFFFF;
  border-radius: 0px 0px 20px 20px;
  border-top: 1.5px solid var(--kry-cor-3);

  transition: all .3s ease;

  padding: 10px 0px;
}

/*.planos__wrapper .btn__card__plano::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;

  border-radius: 20px;
  background: linear-gradient(to right, #0068BC 0%, #032A6E 100%);
  opacity: 0;

  transition: opacity .3s ease;
}

.planos__wrapper .btn__card__plano span{
  position: relative;
  z-index: 5;
}

.planos__wrapper .btn__card__plano:hover{
  background-color: transparent;
  border-color: transparent;
  color: #FFFFFF;
}

.planos__wrapper .btn__card__plano:hover::before{
  opacity: 1;
}*/

.planos__wrapper .card__plano{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 220px;
  height: auto;
  background-color: var(--kry-cor-3);
  border-radius: 20px;
  border: 1.5px solid var(--kry-cor-3);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.planos__wrapper .card__plano:hover {
  transform: translateY(-3px);
  box-shadow: 5px 10px 25px rgba(0,145,255,0.5);
  filter: brightness(1.05);
}

.planos__wrapper .card__plano::after {
  content: "ASSINAR AGORA!";
  text-align: center;
  position: absolute;
  inset: 0;  
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #032A6E;
  font-family: var(--mulish-blackitalic);
  font-size: 26px;
  letter-spacing: 1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.planos__wrapper .card__plano:hover::after {
  opacity: 1;
}

.planos__wrapper .card__plano .head__card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;

  background-color: var(--kry-branco);

  padding: 30px 0px 20px 0px;
}

.card__plano .plano__title{
  font-family: var(--mulish-blackitalic);
  font-size: 24px;
  color: var(--kry-cor-3);

  margin-bottom: 6px;
}

.card__plano .plano__quantia{
  font-family: var(--mulish-black);
  font-size: 60px;
  line-height: 1;
  color: var(--kry-cor-3);

  margin-top: 0px;
  margin-bottom: 6px;
}

.card__plano .plano__preco{
  display: flex;
  align-items: flex-start;
  justify-content: center;

  color: var(--kry-cor-3);
  font-family: var(--mulish-extrabold);
  font-size: 45px;

  margin-bottom: 6px;
}

.card__plano .plano__preco span{
  font-family: var(--mulish-bold);
  font-size: 18px;
  margin: 8px 0px 0px 0px;
}

.card__plano .alert__txt p{
  font-family: var(--mulish-regular);
  font-size: 14px;
  font-weight: 300;
  color: var(--kry-cor-3);
}

.card__plano .alert__txt p strong{
  font-weight: 600;
}

.card__plano .plano__beneficios{
  width: auto;
  min-height: 115px;

  background-color: #FFFFFF;

  padding: 30px 15px;
}

.card__plano .plano__beneficios p:first-child{
  border-top: 1px solid var(--kry-cor-3);
}

.card__plano .plano__beneficios p{
  font-family: var(--mulish-bold);
  font-size: 16px;
  color: var(--kry-cor-5);

  border-bottom: 1px solid var(--kry-cor-3);

  margin: 0px;
  padding: 7px 0px;
}

.fx2-lp .conteudo .infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.fx2-lp .conteudo .infos .txt-info {
  width: 100%;
  max-width: 600px;
  text-align: justify;
}

.fx2-lp .conteudo .infos a.btn-vermelho {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 470px;
  padding: 15px 0;
  background-color: var(--kry-cor-4);
  color: var(--kry-branco);
  font-family: var(--mulish-bold);
  font-size: 22px;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.fx2-lp .conteudo .infos a.btn-vermelho:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  filter: brightness(1.05);
}

.fx2-lp .conteudo .infos a.btn-vermelho:active {
  transform: scale(0.97);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

/*FX3-LP*/
.fx3-lp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
  background-color: var(--kry-branco);
}

.fx3-lp h2 {
  font-family: var(--mulish-bold);
  font-size: 38px;
  color: var(--kry-preto);
  margin: 0px;
  text-align: center;
}

.fx3-lp h2 strong {
  font-family: var(--mulish-black);
  color: var(--kry-cor-2);
  border-bottom: 2px solid var(--kry-cor-2);
}

.fx3-lp .conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.fx3-lp .itens-beneficios {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 100%;
  flex-wrap: wrap;
}

.fx3-lp .itens-beneficios .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx3-lp .itens-beneficios .logo img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

/*FX4-LP*/
.fx4-lp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--kry-cor-1);
  padding: 50px 0px;
}

.fx4-lp h2 {
  font-family: var(--mulish-bold);
  font-size: 25px;
  margin: 0px;
}

.fx4-lp p {
  font-family: var(--mulish-regular);
  font-size: 18px;
  margin: 0px;
}

.fx4-lp .conteudo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.fx4-lp .conteudo .txt-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 570px;
}

.fx4-lp .conteudo .txt-btn .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-align: justify;
  color: var(--kry-branco);
}

.fx4-lp .conteudo .txt-btn a.btn-vermelho {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 270px;
  padding: 15px 0;
  background-color: var(--kry-cor-4);
  color: var(--kry-branco);
  font-family: var(--mulish-bold);
  font-size: 22px;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.fx4-lp .conteudo .txt-btn a.btn-vermelho:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  filter: brightness(1.05);
}

.fx4-lp .conteudo .txt-btn a.btn-vermelho:active {
  transform: scale(0.97);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

/*FX5-LP*/
.fx5-lp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 0px;
}

.fx5-lp h2 {
  font-family: var(--mulish-bold);
  font-size: 30px;
  margin: 0px;
}

.fx5-lp .conteudo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  color: var(--kry-preto);
}

.fx5-lp .itens-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.fx5-lp .itens-faq .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: justify;
  width: 100%;
  border-bottom: 2px solid var(--kry-preto);
}

.fx5-lp .itens-faq .item .fechado {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-family: var(--mulish-bold);
  font-size: 22px;
  text-decoration: none;
  color: var(--kry-preto);
  cursor: pointer;
}

.fx5-lp .itens-faq .item .fechado .icn {
  width: 15px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx5-lp .itens-faq .item .fechado .icn img{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
} 

.fx5-lp .itens-faq .item .aberto {
  height: 0;
  overflow: hidden;
  font-family: var(--mulish-regular);
  font-size: 16px;
  padding: 0px 0px 18px 0px;
  opacity: 0;
  transition: height 0.35s ease, padding 0.25s ease, opacity 0.2s ease;
}

.fx5-lp .itens-faq .item.ativo .aberto {
  padding-top: 10px;
  opacity: 1;
}

.fx5-lp .itens-faq .item .aberto p{
  margin: 0px;
}

/*FX6-LP*/
.fx6-lp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--kry-cor-1);
  padding: 50px 0px;
}

.fx6-lp h2 {
  font-family: var(--mulish-black);
  font-size: 48px;
  margin: 0px;
  line-height: 40px;
}

.fx6-lp p {
  font-family: var(--mulish-regular);
  font-size: 18px;
  margin: 0px;
}

.fx6-lp p span{
  font-family: var(--mulish-black);
}

.fx6-lp a{
  color: var(--kry-branco);
}

.fx6-lp .conteudo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.fx6-lp .conteudo .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 570px;
  color: var(--kry-branco);
}

/*PAGINA 404*/
.pg-404 {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--kry-cor-2) 0%, var(--kry-cor-1) 100%);
  color: var(--kry-branco);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.pg-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../imagens/banner-1.png') center/cover no-repeat;
  opacity: 0.05;
}

.pg-404 .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pg-404 h1 {
  font-family: var(--mulish-bold);
  font-size: 150px;
  line-height: 1;
  margin: 0;
  color: var(--kry-cor-1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.pg-404 h2 {
  font-family: var(--mulish-semibold);
  font-size: 26px;
  margin: 20px 0 40px;
  color: var(--kry-branco);
  letter-spacing: 0.5px;
}

.pg-404 .editor {
  font-family: var(--mulish-regular);
  font-size: 18px;
  color: #d8e0f0;
  line-height: 1.6;
}

.pg-404 .editor a {
  color: var(--kry-branco);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.pg-404 .editor a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--kry-cor-4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pg-404 .editor a:hover::after {
  transform: scaleX(1);
}

.pg-404 .editor a:hover {
  color: var(--kry-branco);
}

/*PAGINA PADRÃO WORDPRESS*/
.page-padrao {
  background-color: var(--kry-branco);
  padding: 20px 10px;
  color: var(--kry-cor-1);
  overflow: hidden;
}

.page-padrao .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.page-padrao h1,
.page-padrao h2,
.page-padrao h3 {
  font-family: var(--mulish-semibold);
  color: var(--kry-cor-1);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-padrao h1 { font-size: 42px; }
.page-padrao h2 { font-size: 30px; }
.page-padrao h3 { font-size: 22px; }

.page-padrao p {
  font-family: var(--mulish-regular);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.page-padrao a {
  color: var(--kry-cor-1);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.page-padrao a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--kry-cor-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-padrao a:hover {
  color: var(--kry-cor-1);
}

.page-padrao a:hover::after {
  transform: scaleX(1);
}

.page-padrao img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.page-padrao ul, 
.page-padrao ol {
  margin-left: 25px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-padrao .wp-block-button__link,
.page-padrao a.button {
  background-color: var(--kry-cor-1);
  color: var(--kry-branco);
  padding: 12px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.page-padrao .wp-block-button__link:hover,
.page-padrao a.button:hover {
  background-color: var(--kry-cor-1);
  transform: translateY(-2px);
}

/*CABEÇALHO HEADER PADRAO*/
.header-padrao{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  background-color: var(--kry-cor-1);
}

.header-padrao a{
  width: 100%;
  max-width: 270px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-padrao a img{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

/*FOOTER RODAPE PADRAO*/
.footer-padrao {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  color: var(--kry-branco);
  text-align: justify;
  background-color: var(--kry-cor-2);
}

.footer-padrao .conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-padrao .creditos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-padrao .creditos .developer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-padrao .creditos .developer a.kryzalis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease;
  color: var(--kry-branco);
}

.footer-padrao .creditos .developer a.kryzalis:hover {
  transform: translateY(-3px);
}

.footer-padrao .creditos .developer a.kryzalis .icn {
  width: 100%;
  max-width: 45px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -8px;
}

.footer-padrao .creditos .developer a.kryzalis .icn img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

/*TITULO DAS PAGINAS PADRAO*/
.titulo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  background-color: var(--kry-preto);
}

.titulo h2{
  font-family: var(--mulish-bold);
  font-size: 30px;
  margin: 0px;
  color: var(--kry-branco);
}

/* ====== RESPONSIVO / CONFIGURAÇÕES GERAIS ====== */
@media (max-width: 1025px){
  .header{
    padding: 20px 10px;
  }

  .footer{
    padding: 20px 10px 100px 10px;
  }

  .footer .creditos{
    padding: 50px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .footer .infos{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .footer .infos .txt{
    gap: 10px;
  }

  .banner{
    padding: 30px 10px;
  }

  .banner .conteudo{
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .banner .txt{
    align-items: center;
    text-align: center;
  }

  .banner a.btn-vermelho{
    font-size: 16px;
    padding: 10px 0px;
  }

  .fx1-lp{
    padding: 20px 10px;
  }

  .fx1-lp .conteudo{
    gap: 20px;
  }

  .fx1-lp .card{
    flex-direction: column;
    gap: 0px;
  }

  .fx1-lp .card .txt{
    text-align: center;
  }

  .fx2-lp{
    padding: 20px 10px ;
  }

  .fx2-lp .conteudo{
    gap: 20px;
  }

  .fx2-lp .conteudo .infos{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .fx2-lp .conteudo .txt {
    width: 100%;
    max-width: 600px;
  }

  .fx3-lp{
    padding: 20px 10px;
  }

  .fx4-lp{
    padding: 20px 10px;
  }

  .fx4-lp .conteudo{
    justify-content: center;
  }

  .fx4-lp .conteudo .txt-btn{
    align-items: center;
  }

  .fx5-lp{
    padding: 20px 10px;
  }

  .fx5-lp .conteudo{
    gap: 30px;
    max-width: 600px!important;
  }

  .fx5-lp .itens-faq{
    gap: 25px;
  }

  .fx5-lp .itens-faq .item .fechado{
    font-size: 16px;
  }

  .fx5-lp .itens-faq .item .aberto{
    font-size: 14px;
  }

  .fx6-lp{
    padding: 20px 10px;
  }

  .fx6-lp .conteudo{
    justify-content: center;
  }

  .fx6-lp .conteudo .txt{
    gap: 20px;
  }

  .header-padrao{
    padding: 20px 10px;
  }

  .footer-padrao{
    padding: 20px 10px 100px 10px;
  }

  .footer-padrao .creditos{
    padding: 0px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .titulo{
    padding: 10px;
  }
}

@media (max-width: 992px) {
  .btnwhats {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
  }

  .header .conteudo{
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }

  .header a.logo{
    max-width: 150px;
  }

  .header .itens{
    justify-content: center;
  }

  .header .itens a.btn-assine{
    padding: 5px;
    gap: 5px;
    max-width: 150px;

    span{
      font-size: 14px;
    }
  }

  .header .itens a.area-cliente{
    padding: 2px;
    gap: 5px;
    max-width: 150px;

    span{
      font-size: 14px;
    }
  }

  .card__plano .plano__beneficios{
    min-height: auto;
  }
  .planos__wrapper .card__plano .head__card{
    padding: 30px 0px 0px 0px;
  }
  .card__plano .plano__preco{
    font-size: 18px !important;
    align-items: center;
  }
  .card__plano .plano__preco span{
    margin: 0px;
  }

  p{
    font-size: 14px!important;
  }

  h1{
    font-size: 24px!important;
  }

  h2{
    font-size: 20px!important;

    strong{
      font-size: 22px!important;
    }
  }
}

@media (max-width: 426px){
  .banner{
    background-position: center;
  }

  .fx2-lp .conteudo .planos a.card{
    width: 100%;
  }

  .fx2-lp .conteudo .planos a.card .especificacoes{
    align-items: center;
    justify-content: center;
  }
}