/* Start custom CSS for html, class: .elementor-element-683e5a7 *//* ==================================================
   ROTA — HERO
   MOBILE FIRST
================================================== */

.rota-hero {
  --hero-bg: #f3f7fc;
  --hero-blue: #0645d8;
  --hero-green: #25d366;
  --hero-green-dark: #1da851;
  --hero-text: #101828;
  --hero-muted: #617087;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: 0;

  overflow: hidden;

  background: var(--hero-bg);
  color: var(--hero-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.rota-hero,
.rota-hero *,
.rota-hero *::before,
.rota-hero *::after {
  box-sizing: border-box;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-hero__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin: 0 auto;

  padding: 18px 0 34px;

  text-align: center;
}


/* ==================================================
   ESPAÇO DA TAG REMOVIDA
================================================== */

.rota-hero__tag-spacer {
  display: block;

  width: 100%;
  height: 25px;
}


/* ==================================================
   HEADLINE
================================================== */

.rota-hero__title {
  max-width: 620px;

  margin: 0 auto;
  padding: 0;

  color: var(--hero-text);

  font-size: clamp(34px, 8vw, 56px);
  font-weight: 900;

  line-height: 1.04;

  letter-spacing: -0.045em;
}

.rota-hero__title span {
  display: block;

  margin-top: 6px;

  color: var(--hero-blue);
}


/* ==================================================
   DESCRIÇÃO
================================================== */

.rota-hero__description {
  width: 100%;
  max-width: 570px;

  margin: 18px auto 0;
  padding: 0;

  color: var(--hero-muted);

  font-size: clamp(15px, 4vw, 18px);

  line-height: 1.5;
}


/* ==================================================
   ETAPAS
================================================== */

.rota-hero__description--steps {
  margin-top: 10px;

  color: var(--hero-text);
}

.rota-hero__description--steps strong {
  display: inline-block;

  margin-top: 4px;

  color: var(--hero-blue);

  font-weight: 800;

  letter-spacing: 0.01em;
}


/* ==================================================
   MOCKUP
================================================== */

.rota-hero__mockup {
  width: 100%;

  max-width: 560px;

  margin: 14px auto 0;

  display: flex;

  justify-content: center;
  align-items: center;

  overflow: hidden;
}

.rota-hero__mockup-image {
  display: block;

  width: 100%;
  max-width: 100%;

  height: auto;

  margin: 0 auto;

  object-fit: contain;
}


/* ==================================================
   ANCORAGEM DE PREÇO
================================================== */

.rota-hero__price {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 100%;

  margin: 12px auto 0;

  text-align: center;

  line-height: 1;
}


/* ==================================================
   INVESTIMENTO
================================================== */

.rota-hero__price-label {
  display: block;

  margin: 0;

  color: var(--hero-blue);

  font-size: 11px;
  font-weight: 900;

  line-height: 1.1;

  letter-spacing: 0.06em;
}


/* ==================================================
   PREÇO ANTERIOR
================================================== */

.rota-hero__price-old {
  display: block;

  margin-top: 4px;

  color: #ff1f1f;

  font-size: 12px;
  font-weight: 700;

  line-height: 1.1;

  text-decoration-line: line-through;
  text-decoration-thickness: 1px;
}


/* ==================================================
   PREÇO ATUAL
================================================== */

.rota-hero__price-current {
  display: flex;

  align-items: flex-start;
  justify-content: center;

  margin-top: 2px;

  color: var(--hero-text);

  line-height: 1;
}


/* R$ */

.rota-hero__price-currency {
  margin-top: 17px;
  margin-right: 5px;

  color: var(--hero-text);

  font-size: 18px;
  font-weight: 800;

  line-height: 1;
}


/* 37 */

.rota-hero__price-value {
  color: var(--hero-text);

  font-size: 68px;
  font-weight: 900;

  line-height: 0.88;

  letter-spacing: -0.065em;
}


/* ==================================================
   PAGAMENTO ÚNICO
================================================== */

.rota-hero__price-payment {
  display: block;

  margin-top: 9px;

  color: #617087;

  font-size: 12px;
  font-weight: 400;

  line-height: 1.2;
}


/* ==================================================
   CTA
================================================== */

.rota-hero__button {
  width: 100%;
  max-width: 430px;

  min-height: 54px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 18px auto 0;

  padding: 15px 20px;

  border-radius: 999px;

  background: linear-gradient(
    180deg,
    var(--hero-green) 0%,
    var(--hero-green-dark) 100%
  );

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;
  font-weight: 900;

  line-height: 1.2;

  text-align: center;

  box-shadow:
    0 10px 24px rgba(29, 168, 81, 0.35);

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.rota-hero__button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 28px rgba(29, 168, 81, 0.4);
}


/* ==================================================
   MICROCOPY
================================================== */

.rota-hero__microcopy {
  max-width: 430px;

  margin: 8px auto 0;

  color: #7a8798;

  font-size: 9px;

  line-height: 1.3;

  text-align: center;
}


/* ==================================================
   TABLET / DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-hero__container {
    width: calc(100% - 48px);

    padding-top: 28px;
    padding-bottom: 48px;
  }

  .rota-hero__tag-spacer {
    height: 25px;
  }

  /* MOCKUP DESKTOP */

  .rota-hero__mockup {
    max-width: 560px;

    margin-top: 20px;
  }

  .rota-hero__price {
    margin-top: 18px;
  }

  .rota-hero__price-value {
    font-size: 72px;
  }

  .rota-hero__price-currency {
    margin-top: 18px;

    font-size: 19px;
  }

  .rota-hero__button {
    margin-top: 18px;
  }
}


/* ==================================================
   MOBILE PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-hero__container {
    width: calc(100% - 24px);

    padding-top: 18px;
    padding-bottom: 28px;
  }

  .rota-hero__tag-spacer {
    height: 0;
  }

  .rota-hero__title {
    margin-top: 0;

    font-size: 32px;
  }

  .rota-hero__description {
    margin-top: 15px;

    font-size: 10px;
  }


  /* MOCKUP MOBILE PEQUENO */

  .rota-hero__mockup {
    width: 100%;

    margin-top: 12px;
  }


  .rota-hero__mockup-image {
    width: 100%;

    max-width: 100%;
  }


  .rota-hero__price {
    margin-top: 16px;
  }

  .rota-hero__price-value {
    font-size: 62px;
  }

  .rota-hero__price-currency {
    margin-top: 16px;

    font-size: 17px;
  }

  .rota-hero__price-label {
    font-size: 10px;
  }

  .rota-hero__price-old {
    font-size: 11px;
  }

  .rota-hero__price-payment {
    font-size: 11px;
  }

  .rota-hero__button {
    min-height: 52px;

    font-size: 14px;
  }
}

/* ==================================================
   AJUSTES FINAIS — ANCORA DE PREÇO
================================================== */

/* DE: R$ 197 — tamanho, cor e risco */
.rota-hero__price-old {
  width: 100%;
  margin: 0;
  text-align: center;

  color: #ff1f1f;

  font-size: 14px !important;
  font-weight: 700;

  line-height: 1.1;

  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* R$ */
.rota-hero__price-currency {
  font-size: 22px !important;
  margin-right: 6px;
}

/* 37 */
.rota-hero__price-value {
  font-size: 80px !important;
}

/* ==================================================
   CORREÇÃO — LARGURA DA HERO / SCROLL HORIZONTAL
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-hero {
  width: 100% !important;
  max-width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* ==================================================
   CORREÇÃO GLOBAL — REMOVE SCROLL HORIZONTAL
================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9afd56f *//* ==================================================
   ROTA — BLOCO 02
   UM CASE QUE MERECE ATENÇÃO
   PADRÃO VISUAL BASEADO NO HERO
================================================== */

.rota-case {
  --case-bg: #ffffff;
  --case-blue: #0645d8;
  --case-green: #25d366;
  --case-green-dark: #1da851;
  --case-text: #101828;
  --case-muted: #617087;
  --case-border: #d5e0ef;
  --case-soft: #f3f7fc;

  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  overflow: hidden;

  background: var(--case-bg);
  color: var(--case-text);

  /*
    Poppins é a fonte principal.
    A declaração abaixo garante que todos os elementos
    deste bloco herdem a mesma tipografia do Hero.
  */
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.rota-case,
.rota-case *,
.rota-case *::before,
.rota-case *::after {
  box-sizing: border-box;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-case__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin: 0 auto;
  padding: 46px 0 48px;

  text-align: center;
}


/* ==================================================
   EYEBROW
   MESMA LINGUAGEM DO TAG DO HERO
================================================== */

.rota-case__eyebrow {
  display: inline-block;

  max-width: 100%;
  padding: 6px 12px;

  border: 1px solid var(--case-border);
  border-radius: 999px;

  background: #edf3fb;
  color: var(--case-blue);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;

  text-transform: uppercase;
}


/* ==================================================
   HEADLINE
   MESMO PADRÃO DO HERO
================================================== */

.rota-case__title {
  max-width: 620px;

  margin: 18px auto 0;
  padding: 0;

  color: var(--case-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.rota-case__title span {
  display: block;

  margin-top: 6px;

  color: var(--case-blue);
}


/* ==================================================
   INTRO
================================================== */

.rota-case__intro {
  width: 100%;
  max-width: 570px;

  margin: 18px auto 0;
  padding: 0;

  color: var(--case-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.rota-case__intro strong {
  color: var(--case-text);
  font-weight: 800;
}


/* ==================================================
   SEQUÊNCIA DO CASE
================================================== */

.rota-case__sequence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 620px;

  gap: 5px 7px;

  margin: 20px auto 0;
  padding: 16px 14px;

  border: 1px solid var(--case-border);
  border-radius: 14px;

  background: var(--case-soft);

  color: var(--case-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.rota-case__sequence i {
  color: var(--case-blue);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.rota-case__sequence strong {
  color: var(--case-blue);
  font-weight: 800;
}


/* ==================================================
   RESULTADO
   DESTAQUE VISUAL SEM FUGIR DO PADRÃO DO HERO
================================================== */

.rota-case__result {
  width: 100%;
  max-width: 620px;

  margin: 28px auto 0;
  padding: 26px 18px;

  border: 1px solid var(--case-border);
  border-radius: 16px;

  background: var(--case-soft);

  text-align: center;
}

.rota-case__result-label {
  max-width: 500px;

  margin: 0 auto;

  color: var(--case-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.rota-case__result-number {
  margin-top: 7px;

  color: var(--case-blue);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(42px, 11vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.rota-case__result-caption {
  margin-top: 7px;

  color: var(--case-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
}


/* ==================================================
   MARGEM DE LUCRO
================================================== */

.rota-case__margin {
  width: 100%;
  max-width: 620px;

  margin: 12px auto 0;
  padding: 18px;

  border: 1px solid var(--case-border);
  border-radius: 14px;

  background: #ffffff;

  text-align: center;
}

.rota-case__margin-label {
  margin: 0;

  color: var(--case-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.rota-case__margin strong {
  display: block;

  margin-top: 5px;

  color: var(--case-blue);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
}


/* ==================================================
   DISCLAIMER
================================================== */

.rota-case__disclaimer {
  width: 100%;
  max-width: 570px;

  margin: 24px auto 0;

  color: var(--case-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;

  text-align: center;
}

.rota-case__disclaimer p {
  margin: 0;
}

.rota-case__disclaimer p + p {
  margin-top: 7px;
}

.rota-case__disclaimer strong {
  color: var(--case-text);
  font-weight: 800;
}


/* ==================================================
   FRASE PRINCIPAL DO CASE
================================================== */

.rota-case__quote {
  width: 100%;
  max-width: 620px;

  margin: 14px auto 0;
  padding: 20px 18px;

  border: 1px solid var(--case-border);
  border-radius: 14px;

  background: var(--case-soft);
  color: var(--case-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 500;
  line-height: 1.45;

  text-align: center;
}

.rota-case__quote strong {
  font-weight: 800;
}


/* ==================================================
   BOTÃO
   MESMO PADRÃO DO HERO
   VERDE WHATSAPP
================================================== */

.rota-case__button {
  width: 100%;
  max-width: 430px;
  min-height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 16px auto 0;
  padding: 15px 20px;

  border: none;
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    var(--case-green) 0%,
    var(--case-green-dark) 100%
  );

  color: #ffffff;

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;

  text-align: center;
  text-decoration: none;

  box-shadow: 0 10px 24px rgba(29, 168, 81, 0.35);

  cursor: pointer;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.rota-case__button:hover {
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 14px 28px rgba(29, 168, 81, 0.4);
}

.rota-case__button:active {
  transform: translateY(0);
}


/* ==================================================
   DESKTOP
   MESMA LÓGICA DO HERO
================================================== */

@media (min-width: 600px) {

  .rota-case__container {
    width: calc(100% - 48px);

    padding-top: 60px;
    padding-bottom: 64px;
  }

  .rota-case__sequence {
    margin-top: 24px;
    padding: 18px 20px;

    font-size: 13px;
  }

  .rota-case__result {
    margin-top: 34px;
    padding: 30px 24px;
  }

  .rota-case__margin {
    padding: 20px 24px;
  }

  .rota-case__quote {
    padding: 22px 28px;
  }

  .rota-case__button {
    margin-top: 18px;
  }
}


/* ==================================================
   TELAS MUITO PEQUENAS
================================================== */

@media (max-width: 360px) {

  .rota-case__container {
    width: calc(100% - 24px);

    padding-top: 40px;
    padding-bottom: 42px;
  }

  .rota-case__eyebrow {
    font-size: 9px;
    padding: 6px 9px;
  }

  .rota-case__title {
    margin-top: 15px;
    font-size: 32px;
  }

  .rota-case__intro {
    margin-top: 15px;
    font-size: 14px;
  }

  .rota-case__sequence {
    margin-top: 18px;
    padding: 15px 11px;

    font-size: 11px;
  }

  .rota-case__result {
    margin-top: 24px;
    padding: 23px 14px;
  }

  .rota-case__result-number {
    font-size: 40px;
  }

  .rota-case__margin {
    padding: 17px 14px;
  }

  .rota-case__margin strong {
    font-size: 30px;
  }

  .rota-case__disclaimer {
    margin-top: 21px;
    font-size: 12px;
  }

  .rota-case__quote {
    margin-top: 12px;
    padding: 18px 14px;

    font-size: 16px;
  }

  .rota-case__button {
    min-height: 52px;

    margin-top: 15px;

    font-size: 14px;
  }
}

/* ==================================================
   ROTA — BLOCO 02
   CORREÇÃO DE LARGURA E CENTRALIZAÇÃO
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-case {
  width: 100% !important;
  max-width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Garante que o conteúdo interno permaneça centralizado */
.rota-case__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 600px) {
  .rota-case__container {
    width: calc(100% - 48px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 360px) {
  .rota-case__container {
    width: calc(100% - 24px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-51485f9 *//* ==================================================
   ROTA — BLOCO 03
   O PROBLEMA NÃO É FALTA DE INFORMAÇÃO
   PADRÃO VISUAL BASEADO NO HERO
================================================== */

.rota-pain {
  --pain-bg: #ffffff;
  --pain-blue: #0645d8;
  --pain-text: #101828;
  --pain-muted: #617087;
  --pain-border: #d5e0ef;
  --pain-soft: #f3f7fc;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: 0;

  overflow: hidden;

  background: var(--pain-bg);
  color: var(--pain-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.rota-pain,
.rota-pain *,
.rota-pain *::before,
.rota-pain *::after {
  box-sizing: border-box;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-pain__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin: 0 auto;

  padding: 50px 0 54px;

  text-align: center;
}


/* ==================================================
   EYEBROW
================================================== */

.rota-pain__eyebrow {
  display: inline-block;

  max-width: 100%;

  padding: 6px 12px;

  border: 1px solid var(--pain-border);
  border-radius: 999px;

  background: #edf3fb;
  color: var(--pain-blue);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 10px;
  font-weight: 800;

  line-height: 1.2;

  letter-spacing: 0.03em;
}


/* ==================================================
   HEADLINE
================================================== */

.rota-pain__title {
  max-width: 620px;

  margin: 18px auto 0;
  padding: 0;

  color: var(--pain-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: clamp(34px, 8vw, 56px);
  font-weight: 900;

  line-height: 1.04;

  letter-spacing: -0.045em;
}

.rota-pain__title span {
  display: block;

  margin-top: 5px;

  color: var(--pain-blue);
}


/* ==================================================
   CONTEÚDO PRINCIPAL
================================================== */

.rota-pain__content {
  width: 100%;
  max-width: 570px;

  margin: 24px auto 0;

  color: var(--pain-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: clamp(15px, 4vw, 18px);

  line-height: 1.55;

  text-align: center;
}

.rota-pain__content p {
  margin: 0;
}

.rota-pain__content p + p {
  margin-top: 5px;
}


/* ==================================================
   "E DEPOIS DE TUDO ISSO..."
================================================== */

.rota-pain__emphasis {
  margin-top: 20px !important;

  color: var(--pain-text);

  font-weight: 700;
}


/* ==================================================
   FRASE FORTE
================================================== */

.rota-pain__strong {
  margin-top: 7px !important;

  color: var(--pain-text);

  font-size: clamp(16px, 4vw, 19px);

  font-weight: 800;

  line-height: 1.45;
}


/* ==================================================
   O PROBLEMA
================================================== */

.rota-pain__problem {
  width: 100%;
  max-width: 620px;

  margin: 32px auto 0;

  padding: 24px 20px;

  border: 1px solid var(--pain-border);
  border-radius: 16px;

  background: var(--pain-soft);

  text-align: center;
}

.rota-pain__problem h3 {
  margin: 0;

  color: var(--pain-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: clamp(22px, 5vw, 30px);

  font-weight: 900;

  line-height: 1.1;

  letter-spacing: -0.025em;
}

.rota-pain__problem p {
  max-width: 530px;

  margin: 12px auto 0;

  color: var(--pain-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 15px;

  line-height: 1.5;
}

.rota-pain__problem p + p {
  margin-top: 5px;
}

.rota-pain__problem strong {
  color: var(--pain-blue);

  font-weight: 900;
}


/* ==================================================
   FECHAMENTO
================================================== */

.rota-pain__closing {
  max-width: 600px;

  margin: 30px auto 0;

  color: var(--pain-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: clamp(16px, 4vw, 19px);

  line-height: 1.5;

  text-align: center;
}

.rota-pain__closing p {
  margin: 0;
}

.rota-pain__closing strong {
  display: block;

  margin-top: 7px;

  color: var(--pain-blue);

  font-size: clamp(23px, 6vw, 34px);

  font-weight: 900;

  line-height: 1.05;

  letter-spacing: -0.035em;
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-pain__container {
    width: calc(100% - 48px);

    padding-top: 64px;
    padding-bottom: 68px;
  }

  .rota-pain__content {
    margin-top: 26px;
  }

  .rota-pain__problem {
    margin-top: 38px;

    padding: 28px 30px;
  }

  .rota-pain__closing {
    margin-top: 34px;
  }
}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-pain__container {
    width: calc(100% - 24px);

    padding-top: 42px;
    padding-bottom: 46px;
  }

  .rota-pain__eyebrow {
    font-size: 9px;

    padding: 6px 9px;
  }

  .rota-pain__title {
    margin-top: 15px;

    font-size: 32px;
  }

  .rota-pain__content {
    margin-top: 20px;

    font-size: 14px;
  }

  .rota-pain__strong {
    font-size: 15px;
  }

  .rota-pain__problem {
    margin-top: 27px;

    padding: 20px 16px;
  }

  .rota-pain__problem h3 {
    font-size: 22px;
  }

  .rota-pain__problem p {
    font-size: 14px;
  }

  .rota-pain__closing {
    margin-top: 27px;

    font-size: 15px;
  }

  .rota-pain__closing strong {
    font-size: 25px;
  }
}

/* ==================================================
   ROTA — BLOCO 03
   CORREÇÃO DE LARGURA E CENTRALIZAÇÃO
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-pain {
  width: 100% !important;
  max-width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Centraliza o conteúdo interno */
.rota-pain__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 600px) {
  .rota-pain__container {
    width: calc(100% - 48px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 360px) {
  .rota-pain__container {
    width: calc(100% - 24px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-db051f4 *//* ==================================================
   ROTA — BLOCO 05
   CONHEÇA A ROTA
   PADRÃO VISUAL DO HERO
================================================== */

.rota-method {
  --method-bg: #f3f7fc;
  --method-blue: #0645d8;
  --method-blue-dark: #043cae;
  --method-text: #101828;
  --method-muted: #617087;
  --method-border: #d5e0ef;
  --method-white: #ffffff;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: 0;

  overflow: hidden;

  background: var(--method-bg);
  color: var(--method-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.rota-method,
.rota-method *,
.rota-method *::before,
.rota-method *::after {
  box-sizing: border-box;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-method__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin: 0 auto;

  padding: 52px 0 58px;

  text-align: center;
}


/* ==================================================
   EYEBROW
================================================== */

.rota-method__eyebrow {
  display: inline-block;

  padding: 6px 12px;

  border: 1px solid var(--method-border);
  border-radius: 999px;

  background: #edf3fb;
  color: var(--method-blue);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 10px;
  font-weight: 800;

  line-height: 1.2;

  letter-spacing: 0.03em;
}


/* ==================================================
   TÍTULO PRINCIPAL
================================================== */

.rota-method__title {
  margin: 18px auto 0;

  color: var(--method-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: clamp(34px, 8vw, 56px);
  font-weight: 900;

  line-height: 1.04;

  letter-spacing: -0.045em;
}


/* ==================================================
   ETAPAS
================================================== */

.rota-method__step {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  width: 100%;

  margin-top: 14px;
  padding: 22px 18px;

  border: 1px solid var(--method-border);
  border-radius: 16px;

  background: var(--method-white);

  text-align: left;
}

.rota-method__step--first {
  margin-top: 28px;
}


/* ==================================================
   NÚMERO
================================================== */

.rota-method__number {
  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: var(--method-blue);
  color: #ffffff;

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 10px;
  font-weight: 800;

  line-height: 1;
}


/* ==================================================
   CONTEÚDO
================================================== */

.rota-method__content {
  min-width: 0;
  flex: 1;
}

.rota-method__content h3 {
  margin: 0;

  color: var(--method-blue);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 12px;
  font-weight: 900;

  line-height: 1.2;

  letter-spacing: 0.08em;
}

.rota-method__content p {
  margin: 9px 0 0;

  color: var(--method-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 14px;

  line-height: 1.55;
}

.rota-method__content .rota-method__headline {
  margin-top: 7px;

  color: var(--method-text);

  font-size: 17px;
  font-weight: 700;

  line-height: 1.4;
}

.rota-method__content strong {
  display: block;

  margin-top: 10px;

  color: var(--method-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 14px;
  font-weight: 800;

  line-height: 1.5;
}


/* ==================================================
   FÓRMULA
================================================== */

.rota-method__formula {
  margin-top: 24px;

  padding: 24px 18px;

  border-radius: 16px;

  background: var(--method-blue);

  color: #ffffff;

  text-align: center;

  box-shadow: 0 14px 30px rgba(6, 69, 216, 0.16);
}

.rota-method__formula-title {
  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 13px;
  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.02em;
}

.rota-method__formula-result {
  margin-top: 10px;

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;

  line-height: 1.2;

  letter-spacing: -0.02em;
}


/* ==================================================
   FECHAMENTO
================================================== */

.rota-method__closing {
  max-width: 590px;

  margin: 26px auto 0;

  color: var(--method-muted);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  font-size: 15px;

  line-height: 1.55;

  text-align: center;
}

.rota-method__closing p {
  margin: 0;
}

.rota-method__closing strong {
  display: block;

  margin-top: 7px;

  color: var(--method-text);

  font-size: 18px;
  font-weight: 900;

  line-height: 1.35;
}

.rota-method__closing p:last-child {
  margin-top: 16px;
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-method__container {
    width: calc(100% - 48px);

    padding-top: 68px;
    padding-bottom: 74px;
  }

  .rota-method__step {
    padding: 24px 22px;
  }

  .rota-method__formula {
    margin-top: 28px;

    padding: 30px;
  }

  .rota-method__closing {
    margin-top: 30px;
  }
}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-method__container {
    width: calc(100% - 24px);

    padding-top: 44px;
    padding-bottom: 48px;
  }

  .rota-method__eyebrow {
    font-size: 9px;
    padding: 6px 9px;
  }

  .rota-method__title {
    margin-top: 15px;
    font-size: 32px;
  }

  .rota-method__step {
    gap: 12px;

    padding: 18px 15px;
  }

  .rota-method__number {
    flex-basis: 34px;

    width: 34px;
    height: 34px;
  }

  .rota-method__content .rota-method__headline {
    font-size: 16px;
  }

  .rota-method__content p,
  .rota-method__content strong {
    font-size: 13px;
  }

  .rota-method__formula {
    padding: 21px 14px;
  }

  .rota-method__formula-title {
    font-size: 11px;
  }

  .rota-method__formula-result {
    font-size: 19px;
  }
}
/* ==================================================
   ROTA — BLOCO CONHEÇA A ROTA
   CORREÇÃO DE LARGURA E CENTRALIZAÇÃO
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-method {
  width: 100% !important;
  max-width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* CENTRALIZA O CONTEÚDO */

.rota-method__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin-left: auto !important;
  margin-right: auto !important;
}


/* ==================================================
   DESKTOP / TABLET
================================================== */

@media (min-width: 600px) {

  .rota-method__container {
    width: calc(100% - 48px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }

}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-method__container {
    width: calc(100% - 24px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fa8f7e6 *//* ==================================================
   ROTA — BLOCO 05
   POR TRÁS DO ROTA
   PROVA + AUTORIDADE

   PADRÃO VISUAL ROTA
   Poppins
   Mobile First
   Sem animações
   Sem hover
   Sem rollover
================================================== */

.rota-proof {

  --proof-bg: #111827;

  --proof-blue: #0645d8;
  --proof-blue-light: #dce8ff;
  --proof-blue-soft: #edf3fb;

  --proof-text: #ffffff;
  --proof-muted: #b7c1d0;

  --proof-card: #182335;
  --proof-border: #2b3a50;

  --proof-white: #ffffff;
  --proof-dark: #101828;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: 0;

  padding: 0;

  background: var(--proof-bg);
  color: var(--proof-text);

  font-family: "Poppins", Arial, Helvetica, sans-serif;

  overflow: hidden;
}


/* ==================================================
   RESET
================================================== */

.rota-proof,
.rota-proof *,
.rota-proof *::before,
.rota-proof *::after {
  box-sizing: border-box;

  font-family: "Poppins", Arial, Helvetica, sans-serif;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-proof__container {

  width: calc(100% - 32px);
  max-width: 680px;

  margin: 0 auto;

  padding: 48px 0 50px;

  text-align: center;
}


/* ==================================================
   LABEL
================================================== */

.rota-proof__label {

  display: inline-block;

  margin-bottom: 12px;

  color: var(--proof-blue-light);

  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 0.08em;

  text-align: center;
}


/* ==================================================
   HEADLINE
================================================== */

.rota-proof__title {

  width: 100%;
  max-width: 600px;

  margin: 0 auto;
  padding: 0;

  color: var(--proof-text);

  font-size: clamp(29px, 7.5vw, 48px);
  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.035em;

  text-align: center;
}


/* ==================================================
   DESTAQUE DA HEADLINE
================================================== */

.rota-proof__title span {

  display: block;

  margin-top: 6px;

  color: var(--proof-blue-light);
}


/* ==================================================
   INTRO
================================================== */

.rota-proof__intro {

  width: 100%;
  max-width: 550px;

  margin: 17px auto 0;
  padding: 0;

  color: var(--proof-muted);

  font-size: clamp(15px, 4vw, 18px);
  font-weight: 400;

  line-height: 1.5;

  text-align: center;
}


/* ==================================================
   PILARES
================================================== */

.rota-proof__pillars {

  display: grid;

  grid-template-columns: 1fr;

  gap: 12px;

  margin-top: 30px;

  text-align: left;
}


/* ==================================================
   CARD
================================================== */

.rota-proof__pillar {

  display: flex;
  align-items: flex-start;

  gap: 15px;

  width: 100%;
  min-width: 0;

  padding: 20px;

  border: 1px solid var(--proof-border);
  border-radius: 14px;

  background: var(--proof-card);
}


/* ==================================================
   NÚMERO
================================================== */

.rota-proof__icon {

  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--proof-blue);

  color: #ffffff;

  font-size: 10px;
  font-weight: 800;

  line-height: 1;
}


/* ==================================================
   CONTEÚDO DO PILAR
================================================== */

.rota-proof__pillar-content {

  min-width: 0;
  flex: 1;
}


/* ==================================================
   TÍTULO DO PILAR
================================================== */

.rota-proof__pillar-title {

  margin: 0;
  padding: 0;

  color: var(--proof-text);

  font-size: 19px;
  font-weight: 800;

  line-height: 1.25;

  letter-spacing: -0.015em;
}


/* ==================================================
   TEXTO DO PILAR
================================================== */

.rota-proof__pillar-text {

  margin: 8px 0 0;
  padding: 0;

  color: var(--proof-muted);

  font-size: 14px;
  font-weight: 400;

  line-height: 1.5;
}


/* ==================================================
   STATEMENT
================================================== */

.rota-proof__statement {

  width: 100%;

  margin-top: 26px;

  padding: 24px 20px;

  border-radius: 16px;

  background: var(--proof-white);

  color: var(--proof-dark);

  text-align: center;
}


/* ==================================================
   LABEL DO STATEMENT
================================================== */

.rota-proof__statement-label {

  display: block;

  margin-bottom: 10px;

  color: var(--proof-blue);

  font-size: 10px;
  font-weight: 800;

  line-height: 1.3;

  letter-spacing: 0.08em;
}


/* ==================================================
   TEXTO DO STATEMENT
================================================== */

.rota-proof__statement-text {

  margin: 0;
  padding: 0;

  color: #5f6b7a;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.5;
}


/* ==================================================
   DESTAQUES DO STATEMENT
================================================== */

.rota-proof__statement-text strong {

  color: var(--proof-dark);

  font-weight: 800;
}


/* ==================================================
   FECHAMENTO
================================================== */

.rota-proof__closing {

  width: 100%;
  max-width: 540px;

  margin: 20px auto 0;
  padding: 0;

  color: var(--proof-muted);

  font-size: 14px;
  font-weight: 400;

  line-height: 1.5;

  text-align: center;
}


/* ==================================================
   DESTAQUE DO FECHAMENTO
================================================== */

.rota-proof__closing strong {

  color: var(--proof-blue-light);

  font-weight: 800;
}


/* ==================================================
   TABLET / DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-proof__container {

    width: calc(100% - 48px);

    padding-top: 62px;
    padding-bottom: 66px;
  }


  .rota-proof__pillars {

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 38px;
  }


  .rota-proof__pillar {

    display: block;

    min-height: 190px;

    padding: 22px;
  }


  .rota-proof__icon {

    margin-bottom: 14px;
  }


  .rota-proof__statement {

    padding: 30px;
  }

}


/* ==================================================
   CELULARES PEQUENOS
================================================== */

@media (max-width: 360px) {

  .rota-proof__container {

    width: calc(100% - 24px);

    padding-top: 42px;
    padding-bottom: 44px;
  }


  .rota-proof__label {

    font-size: 10px;
  }


  .rota-proof__title {

    font-size: 28px;
  }


  .rota-proof__intro {

    font-size: 14px;
  }


  .rota-proof__pillar {

    gap: 12px;

    padding: 18px;
  }


  .rota-proof__icon {

    flex-basis: 34px;

    width: 34px;
    height: 34px;
  }


  .rota-proof__pillar-title {

    font-size: 17px;
  }


  .rota-proof__pillar-text {

    font-size: 13px;
  }


  .rota-proof__statement {

    padding: 20px 16px;
  }


  .rota-proof__statement-text {

    font-size: 15px;
  }

}

/* ==================================================
   ROTA — BLOCO 05
   CORREÇÃO DE LARGURA E CENTRALIZAÇÃO
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-proof {
  width: 100% !important;
  max-width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Centraliza o conteúdo interno */
.rota-proof__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 600px) {
  .rota-proof__container {
    width: calc(100% - 48px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 360px) {
  .rota-proof__container {
    width: calc(100% - 24px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-03c7ce4 *//* ==================================================
   ROTA — BLOCO 06
   OFERTA + CONDIÇÃO ESPECIAL

   Padrão visual ROTA
   Poppins
   Mobile First
   Sem animações
   Sem hover
   Sem rollover
   Sem overflow horizontal
================================================== */


/* ==================================================
   BLOCO PRINCIPAL
================================================== */

.rota-offer {

  --offer-bg: #eef4fb;

  --offer-blue: #0755e8;
  --offer-blue-dark: #043cae;

  --offer-text: #111827;
  --offer-muted: #647184;

  --offer-white: #ffffff;

  --offer-border: #d9e3ef;

  --offer-green: #168a55;
  --offer-green-dark: #0f7045;
  --offer-green-bg: #edf9f3;

  --offer-red: #e53935;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: 0;

  padding: 0;

  background: var(--offer-bg);

  color: var(--offer-text);

  font-family:
    "Poppins",
    Arial,
    Helvetica,
    sans-serif;

  position: relative;

  overflow: hidden;
}


/* ==================================================
   RESET
================================================== */

.rota-offer,
.rota-offer *,
.rota-offer *::before,
.rota-offer *::after {

  box-sizing: border-box;

  font-family:
    "Poppins",
    Arial,
    Helvetica,
    sans-serif;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-offer__container {

  width: calc(100% - 32px);

  max-width: 680px;

  margin-left: auto;
  margin-right: auto;

  padding-top: 48px;
  padding-bottom: 50px;

  text-align: center;
}


/* ==================================================
   LABEL
================================================== */

.rota-offer__label {

  display: inline-block;

  margin-bottom: 12px;

  color: var(--offer-blue);

  font-size: 11px;

  font-weight: 800;

  line-height: 1.2;

  letter-spacing: 0.08em;
}


/* ==================================================
   TÍTULO
================================================== */

.rota-offer__title {

  width: 100%;

  max-width: 600px;

  margin: 0 auto;

  padding: 0;

  color: var(--offer-text);

  font-size:
    clamp(
      29px,
      7.5vw,
      47px
    );

  font-weight: 800;

  line-height: 1.06;

  letter-spacing: -0.035em;
}


/* ==================================================
   DESTAQUE DO TÍTULO
================================================== */

.rota-offer__title span {

  display: block;

  color: var(--offer-blue);
}


/* ==================================================
   INTRO
================================================== */

.rota-offer__intro {

  width: 100%;

  max-width: 550px;

  margin: 17px auto 0;

  padding: 0;

  color: var(--offer-muted);

  font-size:
    clamp(
      15px,
      4vw,
      18px
    );

  font-weight: 400;

  line-height: 1.5;
}


/* ==================================================
   CAIXA PRINCIPAL DA OFERTA
================================================== */

.rota-offer__box {

  width: 100%;

  max-width: 500px;

  margin: 30px auto 0;

  padding: 24px 18px 22px;

  border: 1px solid var(--offer-border);

  border-radius: 20px;

  background: var(--offer-white);

  box-shadow:
    0 12px 35px
    rgba(
      20,
      45,
      80,
      0.08
    );

  text-align: left;
}


/* ==================================================
   CABEÇALHO DO PRODUTO
================================================== */

.rota-offer__header {

  padding-bottom: 20px;

  border-bottom:
    1px solid
    var(--offer-border);

  text-align: center;
}


/* ==================================================
   LABEL DO PRODUTO
================================================== */

.rota-offer__product-label {

  display: block;

  margin-bottom: 6px;

  color: var(--offer-blue);

  font-size: 10px;

  font-weight: 800;

  line-height: 1.2;

  letter-spacing: 0.08em;
}


/* ==================================================
   NOME DO PRODUTO
================================================== */

.rota-offer__product {

  margin: 0;

  color: var(--offer-text);

  font-size: 34px;

  font-weight: 900;

  line-height: 1;
}


/* ==================================================
   MOCKUP DO PRODUTO
================================================== */

.rota-offer__mockup {

  width: 100%;

  max-width: 360px;

  margin: 14px auto 0;

  text-align: center;
}


.rota-offer__mockup img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  margin: 0 auto;

  object-fit: contain;
}


/* ==================================================
   BENEFÍCIOS
================================================== */

.rota-offer__benefits {

  display: flex;

  flex-direction: column;

  gap: 12px;

  margin-top: 20px;
}


/* ==================================================
   BENEFÍCIO
================================================== */

.rota-offer__benefit {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  width: 100%;
}


/* ==================================================
   CHECK
================================================== */

.rota-offer__check {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 23px;
  height: 23px;

  flex: 0 0 23px;

  border-radius: 50%;

  background:
    var(--offer-green-bg);

  color:
    var(--offer-green);

  font-size: 13px;

  font-weight: 900;

  line-height: 1;
}


/* ==================================================
   TEXTO DO BENEFÍCIO
================================================== */

.rota-offer__benefit p {

  margin: 0;

  padding-top: 1px;

  color: var(--offer-text);

  font-size: 14px;

  font-weight: 400;

  line-height: 1.45;
}


/* ==================================================
   CONDIÇÃO ESPECIAL
================================================== */

.rota-offer__bonus {

  margin-top: 22px;

  padding: 17px;

  border:
    1px solid
    #d5eee1;

  border-radius: 12px;

  background:
    var(--offer-green-bg);
}


/* ==================================================
   LABEL DA CONDIÇÃO
================================================== */

.rota-offer__bonus-label {

  display: block;

  margin-bottom: 5px;

  color:
    var(--offer-green);

  font-size: 9px;

  font-weight: 900;

  line-height: 1.2;

  letter-spacing: 0.08em;
}


/* ==================================================
   TÍTULO DA CONDIÇÃO
================================================== */

.rota-offer__bonus h4 {

  margin: 0;

  color: var(--offer-text);

  font-size: 16px;

  font-weight: 800;

  line-height: 1.3;
}


/* ==================================================
   TEXTO DA CONDIÇÃO
================================================== */

.rota-offer__bonus p {

  margin: 6px 0 0;

  color: var(--offer-muted);

  font-size: 13px;

  font-weight: 400;

  line-height: 1.45;
}


/* ==================================================
   ÁREA DO PREÇO
================================================== */

.rota-offer__price-area {

  margin-top: 24px;

  padding-top: 22px;

  border-top:
    1px solid
    var(--offer-border);

  text-align: center;
}


/* ==================================================
   LABEL INVESTIMENTO
================================================== */

.rota-offer__price-label {

  display: block;

  margin-bottom: 4px;

  color: var(--offer-blue);

  font-size: 10px;

  font-weight: 800;

  line-height: 1.2;

  letter-spacing: 0.08em;
}


/* ==================================================
   PREÇO ANTERIOR
================================================== */

.rota-offer__old-price {

  display: block;

  margin-bottom: 3px;

  color: var(--offer-red);

  font-size: 13px;

  font-weight: 700;

  line-height: 1.3;

  text-decoration-line: line-through;

  text-decoration-thickness: 1.5px;

  text-decoration-color: var(--offer-red);
}


/* ==================================================
   PREÇO ATUAL
================================================== */

.rota-offer__price {

  display: flex;

  align-items: baseline;

  justify-content: center;

  gap: 4px;

  color: var(--offer-text);
}


/* ==================================================
   MOEDA
================================================== */

.rota-offer__currency {

  font-size: 18px;

  font-weight: 800;

  line-height: 1;
}


/* ==================================================
   VALOR
================================================== */

.rota-offer__price-value {

  font-size:
    clamp(
      42px,
      12vw,
      58px
    );

  font-weight: 900;

  line-height: 0.95;

  letter-spacing: -0.04em;
}


/* ==================================================
   INFORMAÇÃO DO PREÇO
================================================== */

.rota-offer__price-info {

  display: block;

  margin-top: 7px;

  color: var(--offer-muted);

  font-size: 12px;

  font-weight: 400;

  line-height: 1.3;
}


/* ==================================================
   BOTÃO
================================================== */

.rota-offer__button {

  width: 100%;

  min-height: 56px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: 22px;

  padding: 16px 20px;

  border-radius: 10px;

  background:
    var(--offer-green);

  color: #ffffff;

  text-align: center;

  text-decoration: none;

  font-size: 15px;

  font-weight: 900;

  line-height: 1.2;

  letter-spacing: 0.01em;
}


/* ==================================================
   SEGURANÇA
================================================== */

.rota-offer__security {

  margin: 12px 0 0;

  color: var(--offer-muted);

  font-size: 11px;

  font-weight: 400;

  line-height: 1.3;

  text-align: center;
}


/* ==================================================
   FECHAMENTO
================================================== */

.rota-offer__closing {

  width: 100%;

  max-width: 520px;

  margin: 22px auto 0;

  padding: 0;

  color: var(--offer-muted);

  font-size: 14px;

  font-weight: 400;

  line-height: 1.5;

  text-align: center;
}


/* ==================================================
   DESTAQUE DO FECHAMENTO
================================================== */

.rota-offer__closing strong {

  color: var(--offer-blue-dark);

  font-weight: 800;
}


/* ==================================================
   TABLET / DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-offer__container {

    width: calc(100% - 48px);

    padding-top: 62px;

    padding-bottom: 66px;
  }


  .rota-offer__box {

    margin-top: 38px;

    padding: 30px;
  }


  .rota-offer__benefits {

    gap: 14px;
  }


  .rota-offer__button {

    min-height: 58px;

    font-size: 16px;
  }


  .rota-offer__mockup {

    max-width: 380px;

    margin-top: 16px;
  }

}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-offer__container {

    width: calc(100% - 24px);

    padding-top: 42px;

    padding-bottom: 44px;
  }


  .rota-offer__title {

    font-size: 28px;
  }


  .rota-offer__intro {

    font-size: 14px;
  }


  .rota-offer__box {

    padding:
      20px
      15px
      18px;

    border-radius: 17px;
  }


  .rota-offer__product {

    font-size: 31px;
  }


  .rota-offer__mockup {

    max-width: 300px;

    margin-top: 12px;
  }


  .rota-offer__benefit p {

    font-size: 13px;
  }


  .rota-offer__bonus {

    padding: 15px;
  }


  .rota-offer__bonus h4 {

    font-size: 15px;
  }


  .rota-offer__bonus p {

    font-size: 12px;
  }


  .rota-offer__old-price {

    font-size: 14px;
  }


  .rota-offer__price-value {

    font-size: 78px;
  }


  .rota-offer__button {

    min-height: 54px;

    font-size: 14px;
  }

}


/* ==================================================
   ROTA — CORREÇÃO DE LARGURA E CENTRALIZAÇÃO
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-offer {

  width: 100% !important;

  max-width: 100% !important;

  margin-left: 0 !important;

  margin-right: 0 !important;
}


/* ==================================================
   CENTRALIZA O CONTEÚDO INTERNO
================================================== */

.rota-offer__container {

  width: calc(100% - 32px);

  max-width: 680px;

  margin-left: auto !important;

  margin-right: auto !important;
}


/* ==================================================
   TABLET / DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-offer__container {

    width: calc(100% - 48px);

    max-width: 680px;

    margin-left: auto !important;

    margin-right: auto !important;
  }

}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-offer__container {

    width: calc(100% - 24px);

    max-width: 680px;

    margin-left: auto !important;

    margin-right: auto !important;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-91e1477 *//* ==================================================
   ROTA — BLOCO 07
   FAQ / QUEBRA DE OBJEÇÕES

   PADRÃO GLOBAL:
   Fundo = largura total da tela
   Conteúdo = centralizado
   Poppins
   Mobile First
   Sem animações
   Sem hover
   Sem rollover
   Sem overflow horizontal
================================================== */


.rota-faq {

  --faq-bg: #ffffff;

  --faq-blue: #0649d8;
  --faq-blue-dark: #043cae;
  --faq-blue-light: #e8f0ff;

  --faq-text: #111827;
  --faq-muted: #5f6b7a;

  --faq-border: #dce6f1;
  --faq-soft: #f5f8fc;

  --faq-white: #ffffff;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: 0;

  padding: 0;

  background: var(--faq-bg);
  color: var(--faq-text);

  font-family:
    "Poppins",
    Arial,
    Helvetica,
    sans-serif;

  position: relative;

  overflow: hidden;
}


/* ==================================================
   RESET
================================================== */

.rota-faq,
.rota-faq *,
.rota-faq *::before,
.rota-faq *::after {

  box-sizing: border-box;

  font-family:
    "Poppins",
    Arial,
    Helvetica,
    sans-serif;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-faq__container {

  width: calc(100% - 32px);

  max-width: 680px;

  margin: 0 auto;

  padding: 48px 0 50px;

  text-align: center;
}


/* ==================================================
   LABEL
================================================== */

.rota-faq__label {

  display: inline-block;

  margin-bottom: 12px;

  color: var(--faq-blue);

  font-size: 11px;

  font-weight: 800;

  line-height: 1.3;

  letter-spacing: 0.08em;

  text-align: center;
}


/* ==================================================
   TÍTULO
================================================== */

.rota-faq__title {

  width: 100%;

  max-width: 600px;

  margin: 0 auto;

  padding: 0;

  color: var(--faq-text);

  font-size: clamp(29px, 7.5vw, 48px);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -0.035em;

  text-align: center;
}


/* ==================================================
   DESTAQUE
================================================== */

.rota-faq__title span {

  display: block;

  margin-top: 6px;

  color: var(--faq-blue);
}


/* ==================================================
   INTRO
================================================== */

.rota-faq__intro {

  width: 100%;

  max-width: 560px;

  margin: 18px auto 0;

  padding: 0;

  color: var(--faq-muted);

  font-size: clamp(15px, 4vw, 18px);

  font-weight: 400;

  line-height: 1.55;

  text-align: center;
}


/* ==================================================
   LISTA DE PERGUNTAS
================================================== */

.rota-faq__list {

  width: 100%;

  margin-top: 32px;

  text-align: left;
}


/* ==================================================
   ITEM
================================================== */

.rota-faq__item {

  width: 100%;

  margin: 0 0 10px;

  border: 1px solid var(--faq-border);

  border-radius: 13px;

  background: var(--faq-white);

  overflow: hidden;
}


/* ==================================================
   PERGUNTA
================================================== */

.rota-faq__question {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  width: 100%;

  min-height: 62px;

  margin: 0;

  padding: 17px 18px;

  color: var(--faq-text);

  font-size: 15px;

  font-weight: 800;

  line-height: 1.4;

  cursor: pointer;

  list-style: none;
}


/* REMOVE MARCADOR NATIVO */

.rota-faq__question::-webkit-details-marker {

  display: none;
}


/* ==================================================
   ÍCONE
================================================== */

.rota-faq__icon {

  display: flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 28px;

  width: 28px;

  height: 28px;

  border-radius: 50%;

  background: var(--faq-blue-light);

  color: var(--faq-blue);

  font-size: 18px;

  font-weight: 500;

  line-height: 1;
}


/* ==================================================
   ÍCONE ABERTO
================================================== */

.rota-faq__item[open] .rota-faq__icon {

  background: var(--faq-blue);

  color: #ffffff;

}


/* ==================================================
   RESPOSTA
================================================== */

.rota-faq__answer {

  padding: 0 18px 19px;

  border-top: 1px solid var(--faq-border);
}


/* ==================================================
   TEXTO DA RESPOSTA
================================================== */

.rota-faq__answer p {

  margin: 16px 0 0;

  color: var(--faq-muted);

  font-size: 14px;

  font-weight: 400;

  line-height: 1.6;
}


/* ==================================================
   DESTAQUE DA RESPOSTA
================================================== */

.rota-faq__answer strong {

  color: var(--faq-text);

  font-weight: 800;
}


/* ==================================================
   FECHAMENTO
================================================== */

.rota-faq__closing {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  width: 100%;

  max-width: 620px;

  margin: 24px auto 0;

  padding: 18px;

  border-radius: 14px;

  background: var(--faq-soft);

  text-align: left;
}


/* ==================================================
   MARCA DO FECHAMENTO
================================================== */

.rota-faq__closing-mark {

  display: flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 30px;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  background: var(--faq-blue);

  color: #ffffff;

  font-size: 14px;

  font-weight: 800;

  line-height: 1;
}


/* ==================================================
   TEXTO DO FECHAMENTO
================================================== */

.rota-faq__closing p {

  margin: 1px 0 0;

  color: var(--faq-muted);

  font-size: 14px;

  font-weight: 400;

  line-height: 1.5;
}


/* ==================================================
   DESTAQUE DO FECHAMENTO
================================================== */

.rota-faq__closing strong {

  color: var(--faq-blue-dark);

  font-weight: 800;
}


/* ==================================================
   TABLET / DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-faq__container {

    width: calc(100% - 48px);

    padding-top: 62px;

    padding-bottom: 66px;
  }


  .rota-faq__intro {

    margin-top: 22px;
  }


  .rota-faq__list {

    margin-top: 38px;
  }


  .rota-faq__item {

    margin-bottom: 12px;

    border-radius: 14px;
  }


  .rota-faq__question {

    min-height: 68px;

    padding: 19px 22px;

    font-size: 15px;
  }


  .rota-faq__answer {

    padding: 0 22px 22px;
  }


  .rota-faq__answer p {

    font-size: 14px;

    line-height: 1.65;
  }


  .rota-faq__closing {

    margin-top: 28px;

    padding: 20px;
  }

}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-faq__container {

    width: calc(100% - 24px);

    padding-top: 42px;

    padding-bottom: 44px;
  }


  .rota-faq__label {

    font-size: 10px;
  }


  .rota-faq__title {

    font-size: 28px;
  }


  .rota-faq__intro {

    font-size: 14px;
  }


  .rota-faq__list {

    margin-top: 28px;
  }


  .rota-faq__question {

    min-height: 58px;

    gap: 10px;

    padding: 15px;

    font-size: 14px;
  }


  .rota-faq__icon {

    flex-basis: 26px;

    width: 26px;

    height: 26px;

    font-size: 17px;
  }


  .rota-faq__answer {

    padding: 0 15px 17px;
  }


  .rota-faq__answer p {

    margin-top: 14px;

    font-size: 13px;

    line-height: 1.55;
  }


  .rota-faq__closing {

    gap: 10px;

    padding: 16px;
  }


  .rota-faq__closing-mark {

    flex-basis: 28px;

    width: 28px;

    height: 28px;
  }


  .rota-faq__closing p {

    font-size: 13px;
  }

}

/* ==================================================
   ROTA — BLOCO 07
   CORREÇÃO DE CENTRALIZAÇÃO
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-faq {
  width: 100% !important;
  max-width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* CENTRALIZA O CONTEÚDO */

.rota-faq__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin-left: auto !important;
  margin-right: auto !important;
}


/* DESKTOP / TABLET */

@media (min-width: 600px) {

  .rota-faq__container {
    width: calc(100% - 48px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }

}


/* CELULAR PEQUENO */

@media (max-width: 360px) {

  .rota-faq__container {
    width: calc(100% - 24px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ddad66a *//* ==================================================
   ROTA — BLOCO 08
   CTA FINAL / FECHAMENTO

   PADRÃO GLOBAL:
   Fundo = largura total da tela
   Conteúdo = centralizado
   Poppins
   Mobile First
   Sem animações
   Sem hover
   Sem rollover
   Sem overflow horizontal
================================================== */

.rota-final {

  --final-bg: #111827;

  --final-blue: #0649d8;
  --final-blue-light: #dce8ff;

  --final-green: #25D366;
  --final-green-dark: #1ebe5d;

  --final-text: #ffffff;
  --final-muted: #b7c1d0;

  --final-card: #182335;
  --final-border: #2b3a50;

  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: 0;

  padding: 0;

  background: var(--final-bg);

  color: var(--final-text);

  font-family:
    "Poppins",
    Arial,
    Helvetica,
    sans-serif;

  position: relative;

  overflow: hidden;
}


/* ==================================================
   RESET
================================================== */

.rota-final,
.rota-final *,
.rota-final *::before,
.rota-final *::after {

  box-sizing: border-box;

  font-family:
    "Poppins",
    Arial,
    Helvetica,
    sans-serif;
}


/* ==================================================
   CONTAINER
================================================== */

.rota-final__container {

  width: calc(100% - 32px);

  max-width: 680px;

  margin: 0 auto;

  padding: 52px 0 54px;

  text-align: center;
}


/* ==================================================
   LABEL
================================================== */

.rota-final__label {

  display: inline-block;

  margin-bottom: 12px;

  color: var(--final-blue-light);

  font-size: 11px;

  font-weight: 800;

  line-height: 1.3;

  letter-spacing: 0.08em;
}


/* ==================================================
   TÍTULO
================================================== */

.rota-final__title {

  max-width: 600px;

  margin: 0 auto;

  color: var(--final-text);

  font-size: clamp(30px, 7.5vw, 50px);

  font-weight: 800;

  line-height: 1.06;

  letter-spacing: -0.035em;
}


/* ==================================================
   DESTAQUE
================================================== */

.rota-final__title span {

  display: block;

  margin-top: 5px;

  color: var(--final-blue-light);
}


/* ==================================================
   INTRO
================================================== */

.rota-final__intro {

  max-width: 550px;

  margin: 18px auto 0;

  color: var(--final-muted);

  font-size: clamp(15px, 4vw, 18px);

  font-weight: 400;

  line-height: 1.55;
}


/* ==================================================
   HIGHLIGHT
================================================== */

.rota-final__highlight {

  max-width: 560px;

  margin: 30px auto 0;

  padding: 21px 18px;

  border: 1px solid var(--final-border);

  border-radius: 15px;

  background: var(--final-card);

  text-align: center;
}


/* ==================================================
   LABEL HIGHLIGHT
================================================== */

.rota-final__highlight-label {

  display: block;

  margin-bottom: 9px;

  color: var(--final-blue-light);

  font-size: 10px;

  font-weight: 800;

  line-height: 1.3;

  letter-spacing: 0.08em;
}


/* ==================================================
   FÓRMULA
================================================== */

.rota-final__highlight strong {

  display: block;

  color: #ffffff;

  font-size: clamp(13px, 3.5vw, 17px);

  font-weight: 800;

  line-height: 1.4;

  letter-spacing: 0.01em;
}


/* ==================================================
   TEXTO HIGHLIGHT
================================================== */

.rota-final__highlight p {

  max-width: 450px;

  margin: 9px auto 0;

  color: var(--final-muted);

  font-size: 13px;

  line-height: 1.5;
}


/* ==================================================
   PREÇO
================================================== */

.rota-final__price {

  margin-top: 28px;

  text-align: center;
}


/* ==================================================
   LABEL PREÇO
================================================== */

.rota-final__price-label {

  display: block;

  margin-bottom: 5px;

  color: var(--final-blue-light);

  font-size: 10px;

  font-weight: 800;

  line-height: 1.3;

  letter-spacing: 0.08em;
}


/* ==================================================
   VALOR
================================================== */

.rota-final__price-value {

  display: flex;

  align-items: baseline;

  justify-content: center;

  gap: 4px;

  color: #ffffff;

  font-size: clamp(48px, 13vw, 68px);

  font-weight: 900;

  line-height: 1;

  letter-spacing: -0.045em;
}


.rota-final__price-value small {

  font-size: 20px;

  font-weight: 800;

  letter-spacing: 0;
}


/* ==================================================
   INFO PREÇO
================================================== */

.rota-final__price-info {

  display: block;

  margin-top: 6px;

  color: var(--final-muted);

  font-size: 12px;

  line-height: 1.3;
}


/* ==================================================
   BOTÃO PRINCIPAL
================================================== */

.rota-final__button {

  width: 100%;

  max-width: 360px;

  min-height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 22px auto 0;

  padding: 16px 22px;

  border-radius: 10px;

  background: var(--final-green);

  color: #ffffff;

  text-align: center;

  text-decoration: none;

  font-size: 14px;

  font-weight: 900;

  line-height: 1.2;

  letter-spacing: 0.02em;
}


/* ==================================================
   SEGURANÇA
================================================== */

.rota-final__security {

  margin: 11px 0 0;

  color: var(--final-muted);

  font-size: 11px;

  line-height: 1.35;

  text-align: center;
}


/* ==================================================
   FECHAMENTO
================================================== */

.rota-final__closing {

  max-width: 500px;

  margin: 25px auto 0;

  color: var(--final-muted);

  font-size: 14px;

  font-weight: 400;

  line-height: 1.55;

  text-align: center;
}


/* ==================================================
   DESTAQUE DO FECHAMENTO
================================================== */

.rota-final__closing strong {

  color: #ffffff;

  font-weight: 800;
}


/* ==================================================
   TABLET / DESKTOP
================================================== */

@media (min-width: 600px) {

  .rota-final__container {

    width: calc(100% - 48px);

    padding-top: 68px;

    padding-bottom: 72px;
  }


  .rota-final__intro {

    margin-top: 22px;
  }


  .rota-final__highlight {

    margin-top: 36px;

    padding: 26px;
  }


  .rota-final__price {

    margin-top: 32px;
  }


  .rota-final__button {

    max-width: 320px;

    min-height: 60px;

    font-size: 15px;
  }


  .rota-final__closing {

    margin-top: 28px;
  }

}


/* ==================================================
   CELULAR PEQUENO
================================================== */

@media (max-width: 360px) {

  .rota-final__container {

    width: calc(100% - 24px);

    padding-top: 44px;

    padding-bottom: 46px;
  }


  .rota-final__label {

    font-size: 10px;
  }


  .rota-final__title {

    font-size: 28px;
  }


  .rota-final__intro {

    font-size: 14px;
  }


  .rota-final__highlight {

    margin-top: 26px;

    padding: 18px 14px;
  }


  .rota-final__highlight strong {

    font-size: 12px;
  }


  .rota-final__highlight p {

    font-size: 12px;
  }


  .rota-final__price-value {

    font-size: 48px;
  }


  .rota-final__button {

    min-height: 56px;

    font-size: 13px;
  }


  .rota-final__closing {

    font-size: 13px;
  }

}

/* ==================================================
   ROTA — BLOCO 08
   CORREÇÃO DE LARGURA E CENTRALIZAÇÃO
   COLOCAR NO FINAL DO CSS
================================================== */

.rota-final {
  width: 100% !important;
  max-width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* CENTRALIZA O CONTEÚDO */

.rota-final__container {
  width: calc(100% - 32px);
  max-width: 680px;

  margin-left: auto !important;
  margin-right: auto !important;
}


/* DESKTOP / TABLET */

@media (min-width: 600px) {

  .rota-final__container {
    width: calc(100% - 48px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }

}


/* CELULAR PEQUENO */

@media (max-width: 360px) {

  .rota-final__container {
    width: calc(100% - 24px);
    max-width: 680px;

    margin-left: auto !important;
    margin-right: auto !important;
  }

}/* End custom CSS */