* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: clip;
  width: 100%;
  background-color: var(--bg-site);
}

a {
  text-decoration: none;
}


.navbar__nav {
  list-style: none;
}

.navbar-mobile__nav {
  list-style: none;
}

.navbar-mobile__nav {
  list-style: none;
}

/* Troca de logo por tema */
.kz__logo {
  width: 220px;
  height: auto;
}

.kz__logo--light {
  display: block !important;
}

.kz__logo--dark {
  display: none !important;
}

[data-theme="dark"] .kz__logo--light {
  display: none !important;
}

[data-theme="dark"] .kz__logo--dark {
  display: block !important;
}

.footer-kz__logo--light {
  display: block;
}

.footer-kz__logo--dark {
  display: none;
}

[data-theme="dark"] .footer-kz__logo--light {
  display: none;
}

[data-theme="dark"] .footer-kz__logo--dark {
  display: block;
}

/* Troca de ícones sociais por tema */
.social-icon--light {
  display: inline-block;
}

.social-icon--dark {
  display: none;
}

[data-theme="dark"] .social-icon--light {
  display: none;
}

[data-theme="dark"] .social-icon--dark {
  display: inline-block;
}

:root {
  /* CORES TEMA LIGHT (Padrão) */
  --bg-site: #ffffff;
  --navbar--normal: #0A121A;
  --navbar--hover: #1E40AF;
  --header-title: #1e40af;
  --header-text: #15253F;
  --header-text2: #15253F;
  --header-desc: #15253F;
  --btn-secondary-border: #d8d7ec;
  --text-note: #666d7a;
  --border: #1E40AF;
  --border--roxa-azul: rgba(30, 64, 175, 1);
  --border--transparente--cinza: rgba(235, 237, 255, 1);
  --purple: rgba(158, 163, 230, 1);
  --blue: #1E40AF;
  --blue-mid: #00AAFF;
  --blue-light: #9CCDFF;
  --blue-bg: rgba(30, 64, 175, 0.1);
  --blue-bg2: rgba(30, 64, 175, 0.05);
  --blue-bg3: rgba(30, 64, 175, 0.2);
  --blue-bg3: rgba(235, 237, 255, 1);
  --purple-bg: #EBEDFF;
  --green: #00FDA9;
  --dark: #15253F;
  --dark-sec: #405560;
  --grey: #6B7582;
  --grey-b: #5C6068;
  --border: #E5E7EB;
  --border-b: #EBEDFF;
  --white: #FFFFFF;
  --orange: #EE6C56;
  --link-color: #78BCFF;
  --qo-bg: #FDF8EC;
  --qo-amber: #F5B841;
  --pmi-pink: #F2789F;
  --li-cream: #FDF8EC;
  --li-row: #F8E8A4;
}

/* CORES TEMA DARK (Ativado pelo seu JS) */
[data-theme="dark"] {
  --bg-site: #15253F;
  --navbar--normal: #FFFFFF;
  --navbar--hover: #0080FF;
  --header-title: #64B2FF;
  --header-text: #15253F;
  --header-text2: #15253F;
  --header-desc: #050505;
  --btn-secondary-border: var(--header-title);
  --text-note: #ffffff;
  --border: #1E40AF;
  --border--roxa-azul: rgba(0, 128, 255, 0.5);
  --border--transparente--cinza: rgba(76, 76, 76, 1);
  --purple: rgba(158, 163, 230, 1);
  --blue: #0080FF;
  --blue-mid: #00AAFF;
  --blue-light: #9CCDFF;
  --blue-bg: rgba(30, 64, 175, 0.1);
  --blue-bg2: rgba(30, 64, 175, 0.05);
  --blue-bg3: rgba(30, 64, 175, 0.2);
  --blue-bg4: rgba(235, 237, 255, 0.1);
  --purple-bg: rgb(22, 40, 74);
  --green: #00FDA9;
  --dark: #ffffff;
  --dark-sec: rgba(255, 255, 255, 0.5);
  --grey: rgba(255, 255, 255, 0.5);
  --grey-b: #ffffff;
  --border: #E5E7EB;
  --border-b: #EBEDFF;
  --white: #FFFFFF;
  --orange: #EE6C56;
  --link-color: #78BCFF;
  --qo-bg: #1E2A45;
  --pmi-pink: #F2789F;
  --li-cream: #1E2A45;
  --li-row: #7D7040;
}

/* --- GELICA FONT FAMILY --- */

/* Extra Light */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Extra-Light.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

/* Light */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* Regular */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* Italic (Regular) */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* Semi Bold */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Semi-Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* Black */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

.azul-escuro {
  color: var(--blue);
}

/* placeholder de imagem */
.img-ph {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 64, 175, .45);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  padding: 12px;
}

h1,
h2 {
  font-family: "Gelica", serif;
  font-weight: 600;
}

h3,
h4,
h5,
h6 {
  font-family: "Gelica", serif;
  font-weight: 400;
}

body {
  font-family: "Inter", sans-serif;
}

.text-bold {
  font-weight: 600;
}

.text-bold-blue-light {
  font-weight: 600;
  color: var(--blue-mid);
}



.hero-como {
  --hc-violet: #7A6FE0;
  /* botão primário (cor NOVA — ver observação) */
  background: var(--bg-site);
  padding: 56px 24px 40px;
}

.hero-como__container {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.hero-como__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 22px
}

.hero-como__eyebrow strong {
  font-weight: 700
}

.hero-como__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0
}

.hero-como__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 44px;
  line-height: 1.16;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 20px;
  letter-spacing: -.5px
}

.hero-como__title strong {
  font-weight: 700
}

.hero-como__sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dark);
  opacity: .85;
  max-width: 560px;
  margin-bottom: 30px
}

.hero-como__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 26px
}

.hero-como__btn {
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s
}

.hero-como__btn:hover {
  transform: translateY(-1px)
}

.hero-como__btn--primary {
  background: var(--hc-violet);
  color: #fff
}

.hero-como__btn--secondary {
  background: transparent;
  color: var(--grey-b);
  border: 1px solid var(--btn-secondary-border)
}

.hero-como__btn-icon {
  width: 32px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.hero-como__btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.hero-como__btn-icon--play {
  width: 24px;
  height: 24px;
  border-radius: 50%
}

.hero-como__checks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--grey-b);
  margin-bottom: 26px
}

.hero-como__check {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.hero-como__check-icon {
  color: var(--purple);
  font-weight: 700
}

.hero-como__sep {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0
}

.hero-como__sep--blue {
  background: var(--blue-mid)
}

.hero-como__sep--amber {
  background: #F2C94C
}

.hero-como__sep--pink {
  background: #F48FB1
}

.hero-como__stores-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px
}

.hero-como__stores-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px
}

.hero-como__store img {
  height: 40px;
  width: auto;
  display: block
}

.hero-como__store-img--dark {
  display: none
}

[data-theme="dark"] .hero-como__store-img--light {
  display: none
}

[data-theme="light"] .hero-como__store-img--dark {
  display: none
}

[data-theme="dark"] .hero-como__store-img--dark {
  display: block
}

.hero-como__timeline {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.hero-como__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;

  opacity: .5;
  z-index: 0
}

.hero-como__tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  z-index: 1
}

.hero-como__tl-dot--1 {
  background: #8C82FC
}

.hero-como__tl-dot--2 {
  background: #4AA3E5
}

.hero-como__tl-dot--3 {
  background: #16B8A6
}

.hero-como__tl-dot--4 {
  background: #F2C94C
}

.hero-como__tl-dot--5 {
  background: #F5A24B
}

.hero-como__tl-dot--6 {
  background: #F4736E
}

.hero-como__tl-dot--7 {
  background: #EF5B5B
}

.hero-como__tl-dot--8 {
  background: #FBD5DF
}

@media (max-width:900px) {
  .hero-como {
    padding: 36px 18px 24px
  }

  .hero-como__container {
    text-align: left;
    align-items: stretch
  }

  .hero-como__eyebrow {
    font-size: 13px
  }

  .hero-como__title {
    font-size: 30px
  }

  .hero-como__sub {
    font-size: 14px;
    max-width: 100%
  }

  .hero-como__actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero-como__btn {
    width: 100%;
    justify-content: center
  }

  .hero-como__checks {
    display: none
  }

  .hero-como__stores-label {
    text-align: center
  }

  .hero-como__timeline {
    max-width: 100%
  }

  .hero-como__tl-dot {
    width: 8px;
    height: 8px
  }
}

.opcoes {
  --op-coral: #F58A8A;
  /* coral do título (cor NOVA) */
  --op-violet: #7A6FE0;
  /* violeta dos títulos dos cards (cor NOVA) */
  background: var(--bg-site);
  padding: 56px 24px 72px;
}

.opcoes__container {
  max-width: 1160px;
  margin: 0 auto
}

.opcoes__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--op-coral);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px
}

.opcoes__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--blue-mid)
}

.opcoes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.opcoes__card {
  background: var(--purple-bg);
  border: 1px solid var(--btn-secondary-border);
  border-radius: 12px;
  padding: 26px 24px 24px
}

.opcoes__card-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.opcoes__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.opcoes__card-rule {
  border: 0;
  border-top: 1px dotted var(--op-coral);
  opacity: .6;
  margin-bottom: 18px
}

.opcoes__card-title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--op-violet);
  line-height: 1.3;
  margin-bottom: 14px
}

.opcoes__card-result {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dark);
  opacity: .85;
  margin-bottom: 14px
}

.opcoes__card-result strong {
  font-weight: 700;
  opacity: 1
}

.opcoes__card-problem {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--op-violet)
}

@media (max-width:900px) {
  .opcoes {
    padding: 36px 18px 56px
  }

  .opcoes__title {
    font-size: 25px;
    margin-bottom: 28px
  }

  .opcoes__grid {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

.quarta-opcao {
  background: var(--bg-site);
  padding: 24px 24px;
}

.quarta-opcao__container {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--qo-bg);
  border-radius: 14px;
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: center
}

.quarta-opcao__text {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  max-width: 1000px
}

.quarta-opcao__text em {
  font-style: normal;
  color: var(--qo-amber)
}

@media (max-width:900px) {
  .quarta-opcao {
    padding: 16px 14px
  }

  .quarta-opcao__container {
    padding: 26px 22px;
    border-radius: 12px
  }

  .quarta-opcao__text {
    font-size: 19px;
    line-height: 1.45
  }
}

.metodologia-pmi {
  background: var(--bg-site);
  padding: 40px 24px 56px;
}

.metodologia-pmi__container {
  max-width: 1080px;
  margin: 0 auto
}

.metodologia-pmi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

/* coluna esquerda */
.metodologia-pmi__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.metodologia-pmi__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.metodologia-pmi__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 400;
  color: var(--pmi-pink);
  margin-bottom: 26px
}

.metodologia-pmi__title strong {
  font-weight: 700
}

.metodologia-pmi__callout {
  background: var(--blue-bg);
  border: 1px solid var(--blue-bg3);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 26px;
  max-width: 560px
}

.metodologia-pmi__callout p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--dark)
}

.metodologia-pmi__callout em {
  font-style: italic;
  font-weight: 700
}

.metodologia-pmi__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark);
  opacity: .9;
  max-width: 520px;
  margin-bottom: 18px
}

.metodologia-pmi__text:last-child {
  margin-bottom: 0
}

/* coluna direita — imagem inteira, sem padding/margin */
.metodologia-pmi__media {
  margin: 0;
  padding: 0;
  line-height: 0
}

.metodologia-pmi__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 12px
}

.metodologia-pmi__image--dark {
  display: none
}

[data-theme="dark"] .metodologia-pmi__image--light {
  display: none
}

[data-theme="dark"] .metodologia-pmi__image--dark {
  display: block
}

@media (max-width:900px) {
  .metodologia-pmi {
    padding: 30px 18px 44px
  }

  .metodologia-pmi__grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .metodologia-pmi__title {
    font-size: 26px
  }

  .metodologia-pmi__callout,
  .metodologia-pmi__text {
    max-width: 100%
  }
}

.motores {
  --mo-violet: #7A6FE0;
  /* violeta forte (cor NOVA) */
  background: var(--bg-site);
  padding: 56px 0 64px;
}

.motores__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  padding: 0 24px
}

.motores__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 12px
}

.motores__title strong {
  color: var(--mo-violet);
  font-weight: 700
}

.motores__subtitle {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dark);
  opacity: .75
}

/* carrossel (desktop E mobile passam pro lado) */
.motores__track {
  max-width: 100%;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0 0 18px;
  scroll-padding-left: 24px;
  /* alinha o snap com a margem */
  -webkit-overflow-scrolling: touch
}

.motores__track::-webkit-scrollbar {
  display: none
}

.motores__card {
  flex: 0 0 auto;
  width: 470px;
  scroll-snap-align: start;
  background: var(--purple-bg);
  border: 1px solid var(--btn-secondary-border);
  border-radius: 12px;
  padding: 26px 28px 28px
}

.motores__card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.motores__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.motores__card-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px
}

.motores__card-num {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--mo-violet)
}

.motores__card-name {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--purple)
}

.motores__card-body {
  padding-left: 14px
}

.motores__card:first-child {
  margin-left: 24px;
}

.motores__card:last-child {
  margin-right: 24px;
}

.motores__block {
  margin-bottom: 18px
}


.motores__block:last-child {
  margin-bottom: 0
}

.motores__block-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px
}

.motores__block-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--dark);
  opacity: .85
}

/* pílulas de classificação */
.motores__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.motores__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--dark)
}

.motores__pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0
}

.motores__pill--red {
  background: rgba(238, 108, 86, .10)
}

.motores__pill--red .motores__pill-dot {
  background: #EE5B5B
}

.motores__pill--amber {
  background: rgba(242, 201, 76, .12)
}

.motores__pill--amber .motores__pill-dot {
  background: #F2C94C
}

.motores__pill--green {
  background: rgba(22, 184, 166, .10)
}

.motores__pill--green .motores__pill-dot {
  background: #16B8A6
}

.motores__pill--grey {
  background: rgba(107, 117, 130, .10)
}

.motores__pill--grey .motores__pill-dot {
  background: #9AA3AF
}

/* pontinhos */
.motores__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px
}

.motores__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  opacity: .3
}

.motores__dot--active {
  opacity: 1
}

.motores__track {
  cursor: grab;
  user-select: none
}

.motores__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none
}

.motores__track img {
  -webkit-user-drag: none;
  user-drag: none
}

.motores__dot {
  cursor: pointer
}

@media (max-width:900px) {
  .motores {
    padding: 36px 0 44px
  }

  .motores__header {
    padding: 0 18px;
    margin-bottom: 24px
  }

  .motores__title {
    font-size: 26px
  }

  .motores__track {
    gap: 16px;
    padding: 0 18px 16px
  }

  .motores__card {
    width: 80vw;
    padding: 22px 20px 24px
  }

  .motores__card-body {
    padding-left: 0
  }
}

.limites {
  background: var(--bg-site);
  padding: 30px 24px 40px;
}

.limites__container {
  max-width: 1280px;
  margin: 0 auto
}

/* topo: celulares no centro + 1 vetor de cada lado */
.limites__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px
}

.limites__phones {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto
}

.limites__vector {
  position: absolute;
  height: auto;
  z-index: 2;
  pointer-events: none
}

.limites__vector--left {
  left: 20%;
  bottom: 6%;
  width: 170px
}

.limites__vector--right {
  right: 25%;
  top: 40%;
  width: 170px
}

/* avisos */
.limites__panel {
  background: var(--li-cream);
  border-radius: 14px;
  padding: 26px 24px
}

.limites__list {
  max-width: 790px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.limites__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--li-row);
  border-radius: 8px;
  padding: 12px 16px
}

.limites__item-x {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700
}

.limites__item-x img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.limites__item-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--dark)
}

.limites__item-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px
}

.limites__icon--dark{display:none}
[data-theme="dark"] .limites__icon--light{display:none}
[data-theme="light"] .limites__icon--dark{display:none}
[data-theme="dark"] .limites__icon--dark{display:block}

@media (max-width:900px) {
  .limites {
    padding: 20px 16px 34px
  }

  .limites__stage {
    margin-bottom: 26px
  }

  .limites__phones {
    max-width: 100%
  }

  .limites__vector--left {
    left: 0%;
    bottom: 18%;
    width: 72px
  }

  .limites__vector--right {
    right: 2%;
    top: 38%;
    width: 72px
  }

  .limites__panel {
    padding: 20px 14px
  }

  .limites__item {
    align-items: flex-start;
    gap: 12px;
    padding: 14px
  }

  .limites__item-x {
    margin-top: 2px
  }
}

.cta-app {
  --ca-violet: #7A6FE0;
  /* violeta dos botões/blobs (cor NOVA) */
  background: var(--bg-site);
  padding: 80px 24px 40px;
}

.cta-app__stage {
  position: relative;
  max-width: 1240px;
  margin: 0 auto
}

.cta-app__container {
  position: relative;
  background: var(--purple-bg);
  border-radius: 16px;
  clip-path: inset(-320px 0 0 0 round 16px);
  min-height: 370px;
  display: flex;
  align-items: center
}

.cta-app__blob {
  position: absolute;
  border-radius: 50%;
  background: var(--ca-violet);
  z-index: 0;
  pointer-events: none
}

.cta-app__blob--1 {
  right: 36%;
  top: 0%;
  width: 270px;
  height: 270px;
  opacity: .5
}

.cta-app__blob--2 {
  right: -10px;
  bottom: -70px;
  width: 250px;
  height: 250px;
  opacity: .5
}

.cta-app__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  padding: 56px 0 56px 56px
}

.cta-app__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 18px
}

.cta-app__description {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark);
  opacity: .85;
  max-width: 430px;
  margin-bottom: 28px
}

.cta-app__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.cta-app__btn {
  height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s
}

.cta-app__btn:hover {
  transform: translateY(-1px)
}

.cta-app__btn--primary {
  background: var(--ca-violet);
  color: #fff
}

.cta-app__btn--secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--btn-secondary-border)
}

.cta-app__btn-icon {
  width: 30px;
  height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.cta-app__btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.cta-app__btn-icon--play {
  width: 24px;
  height: 24px;
  border-radius: 50%
}

/* imagem furando o topo, à direita */
.cta-app__media {
  position: absolute;
  right: 8%;
  top: -70px;
  bottom: 0;
  z-index: 4;
  width: 48%;
  min-width: 340px;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.cta-app__image {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-position: center bottom
}

/* disclaimer (fora do container) */
.cta-app__disclaimer {
  max-width: 1340px;
  margin: 40px auto 0;
  padding: 0 56px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--dark);
  opacity: .85;
  max-width: 980px
}

@media (max-width:900px) {
  .cta-app {
    padding: 14px 14px 26px
  }

  .cta-app__stage {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .cta-app__media {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    min-width: 0;
    order: 1;
    z-index: 1;
    margin-bottom: 0px
  }

  .cta-app__image {
    height: auto;
    width: auto;
    max-width: 100%
  }

  .cta-app__container {
    order: 2;
    z-index: 2;
    width: 100%;
    min-height: auto;
    clip-path: inset(0 round 16px)
  }

  .cta-app__content {
    max-width: 100%;
    padding: 40px 22px 34px
  }

  .cta-app__title {
    font-size: 26px
  }

  .cta-app__description {
    max-width: 100%
  }

  .cta-app__actions {
    flex-direction: column;
    align-items: stretch
  }

  .cta-app__btn {
    width: 100%;
    justify-content: center
  }

  .cta-app__blob--1 {
    display: none
  }

  .cta-app__disclaimer {
    padding: 0 8px;
    font-size: 12px
  }
}

