/* ── RESET & BASE ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  /* overflow-x: clip evita rolagem horizontal SEM criar um container
     de scroll (como faria o overflow-x: hidden), o que mantém o
     position: sticky funcionando corretamente. */
  overflow-x: clip;
  width: 100%;
}

.navbar__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 {
  --bg-site: #ffffff;
  --bg-header-container: #eeedf8;
  --bg-fundo-card: rgba(235, 237, 255, 0.15);
  --bg-fundo-card-claro: rgba(30, 64, 175, 0.05);
  --bg-fundo-card-claro-escuro: rgba(30, 64, 175, 0.2);
  --bg-fundo-card2: rgba(140, 130, 252, 0.15);
  --bg-fundo-processo__step: rgba(140, 130, 252, 0.15);
  --bg--fundo--verde: rgba(16, 185, 129, 0.07);
  --text-fundo-processo__step: rgba(140, 130, 252, 1);
  --bg-fundo-card-escuro: rgba(140, 130, 252, 0.15);
  --navbar--normal: #0A121A;
  --navbar--hover: #1E40AF;
  --header-title: #1e40af;
  --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);
  --text---violet: #B81F1F;
  --text--green: #00897B;
  --purple: rgba(158, 163, 230, 1);
  --accent-amarelo: #F2C94C;
  --texto--azul--claro: rgba(84, 183, 255, 1);
  --preto--branco: #000000;
}

[data-theme="dark"] {
  --bg-site: #15253F;
  --bg-header-container: #113663;
  --bg-fundo-card: rgba(235, 237, 255, 0.05);
  --bg-fundo-card-claro: rgba(0, 128, 255, 0.1);
  --bg-fundo-card-claro-escuro: rgba(0, 128, 255, 0.5);
  --bg-fundo-card2: rgba(0, 128, 255, 0.05);
  --text-fundo-processo__step: rgba(140, 130, 252, 1);
  --bg-fundo-card-escuro: #EBEAFF;
  --navbar--normal: #FFFFFF;
  --navbar--hover: #0080FF;
  --header-title: #64B2FF;
  --btn-secondary-border: #303546;
  --text-note: #ffffff;
  --border: #303546;
  --border--transparente--cinza: rgba(76, 76, 76, 1);
  --text---violet: #FF6B6B;
  --text--green: #20C997;
  --purple: rgba(158, 163, 230, 1);
  --accent-amarelo: #F2C94C;
  --texto--azul--claro: rgba(84, 183, 255, 1);
  --preto--branco: #ffffff;
}

html {
  scroll-behavior: smooth; /* neutralizado em prefers-reduced-motion (motion.css) */
}

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

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

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

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

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

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

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

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

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;
  background: var(--bg-site);
  color: var(--navbar--normal);
}

/* --- NAVBAR --- */
.navbar {
  background: var(--bg-site);
  padding: 18px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar__container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__brand {
  flex-shrink: 0;
}

.navbar__brand img {
  width: 220px;
  height: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-left: auto;
}

.navbar__nav a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--navbar--normal);
  transition: color 0.2s var(--ease-out);
}

.navbar__nav a:hover,
.navbar__nav a.is-active {
  color: var(--navbar--hover);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 24px;
}

.navbar__cta {
  min-height: 48px;
  padding: 0 38px;
  background: var(--text-fundo-processo__step);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.24);
  border-radius: 5px;
}

.navbar__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.navbar__toggle span {
  width: 18px;
  height: 2px;
  background: var(--navbar--normal);
  display: block;
}

/* THEME TOGGLE */
.theme-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.theme-toggle__track {
  width: 54px;
  height: 28px;
  border-radius: 999px;
  background: #eef1f6;
  border: 1px solid #d8d7ec;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--bg-site);
  box-shadow: 0 2px 8px rgba(31, 42, 68, 0.16);
  transition: transform 0.25s var(--ease-out);
}

.theme-toggle__icon {
  position: relative;
  z-index: 2;
  font-size: 11px;
  line-height: 1;
  color: var(--navbar--normal);
}

html[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(26px);
}

html[data-theme="dark"] .theme-toggle__track {
  background: var(--btn-secondary-border);
  border-color: var(--border);
}

/* NAVBAR MOBILE */
.navbar-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.navbar-mobile.is-open {
  display: block;
}

.navbar-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 23, 0.55);
}

.navbar-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 360px);
  height: 100dvh;
  background: var(--bg-site);
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 24px rgba(31, 42, 68, 0.12);
}

.navbar-mobile__top {
  display: flex;
  justify-content: space-between;
  margin-block: 32px;
}

.navbar-mobile__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--btn-secondary-border);
  border-radius: 8px;
  background: var(--bg-fundo-card);
  color: var(--navbar--normal);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-mobile__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.navbar-mobile__brand img {
  width: 140px;
  height: auto;
  display: block;
}

.navbar-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.navbar-mobile__nav a {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navbar--normal);
  padding: 14px 12px;
  border-radius: 10px;
}

.navbar-mobile__nav a:hover,
.navbar-mobile__nav a.is-active {
  background: var(--bg-fundo-card2);
}

.navbar-mobile__cta {
  margin-top: 18px;
  min-height: 48px;
  background: var(--header-title);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  padding-left: 16px;
  position: relative;
}

.navbar-mobile__theme {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.navbar-mobile__social {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 26px;
}

.navbar-mobile__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.navbar-mobile__copyright {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--navbar--normal);
}

@media (max-width: 900px) {
  .navbar {
    padding: 10px 12px;
  }

  .navbar__container {
    gap: 12px;
  }

  .navbar__brand img {
    width: 135px;
  }

  .navbar__nav,
  .navbar__actions {
    display: none;
  }

  .navbar__toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .navbar-mobile__panel {
    width: 100%;
    max-width: 100%;
    padding: 16px 14px 24px;
  }

  .navbar-mobile__brand img {
    width: 125px;
  }

  .navbar-mobile__nav a {
    font-size: 15px;
    padding: 12px 10px;
  }

  .navbar-mobile__cta {
    font-size: 14px;
    min-height: 44px;
  }
}

/* --- HERO GUIA --- */
.hero-guia {
  /* mapeamento das variáveis globais p/ nomes locais (igual a calculadora) */
  --hero-bg: var(--bg-header-container);
  /* lavanda / navy        */
  --hero-title: var(--purple);
  /* #9ea3e6 (igual nos 2) */
  --hero-violet: var(--text-fundo-processo__step);
  /* #8c82fc btn/badge    */
  --hero-text: var(--navbar--normal);
  --hero-muted: var(--text-note);
  --hero-teal: var(--text--green);
  --hero-line: var(--btn-secondary-border);
  --hero-card-bg: var(--bg-site);

  background: var(--bg-site);
  padding: 30px 30px 44px;
}

.hero-guia__container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  background: var(--hero-bg);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 520px;
}

/* círculo decorativo */
.hero-guia__blob {
  position: absolute;
  top: -70px;
  right: 7%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--hero-title);
  opacity: .18;
  z-index: 0;
}

/* coluna de texto */
.hero-guia__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  padding: 56px 0 56px 56px;
}

.hero-guia__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--hero-muted);
  margin-bottom: 20px
}

.hero-guia__eyebrow strong {
  color: var(--hero-text);
  font-weight: 700
}

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

.hero-guia__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -1px;
  font-weight: 300;
  color: var(--hero-title);
  margin-bottom: 22px;
}

.hero-guia__title strong {
  font-weight: 600
}

.hero-guia__description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--hero-text);
  max-width: 470px;
  margin-bottom: 34px
}

.hero-guia__description strong {
  color: var(--hero-title);
  font-weight: 600
}

.hero-guia__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

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

.hero-guia__btn--primary {
  background: var(--hero-violet);
  color: #fff;
  box-shadow: 0 10px 24px rgba(140, 130, 252, .35)
}

.hero-guia__btn--secondary {
  background: transparent;
  color: var(--hero-text);
  border: 1px solid var(--btn-secondary-border)
}

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

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

.hero-guia__btn-icon--play {
  border: 1px solid var(--hero-line);
  border-radius: 50%
}

.hero-guia__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.hero-guia__avatars {
  display: flex
}

.hero-guia__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--hero-bg);
  background: var(--hero-violet);
  margin-left: -10px
}

.hero-guia__avatar:first-child {
  margin-left: 0
}

.hero-guia__social-text {
  font-size: 13px;
  color: var(--hero-muted);
  line-height: 1.4
}

/* coluna da imagem */
.hero-guia__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  min-width: 480px;
  z-index: 1
}

.hero-guia__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom
}

/* badge "Revisado por pediatras" */
.hero-guia__badge {
  position: absolute;
  top: 130px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hero-violet);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  padding: 11px 16px;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(140, 130, 252, .3)
}

.hero-guia__badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex
}

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

/* card de chat "Kidzenith Bot" */
.hero-guia__chat {
  position: absolute;
  right: 26px;
  bottom: 34px;
  z-index: 4;
  width: 290px;
  background: var(--hero-card-bg);
  border: 1px solid var(--hero-line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(15, 17, 23, .16)
}

.hero-guia__chat-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hero-text);
  margin-bottom: 7px
}

.hero-guia__chat-title span {
  font-weight: 400;
  color: var(--hero-muted)
}

.hero-guia__chat-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--hero-muted)
}

/* barra de estatísticas (gradiente) */
.hero-guia__stats {
  max-width: 1300px;
  margin: 24px auto 0;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 38px 36px;
  background: linear-gradient(90deg, #59B6F2 0%, #7D86F7 55%, #9B86FB 100%);
}

.hero-guia__stat {
  text-align: center;
  padding: 0 14px
}

.hero-guia__stat+.hero-guia__stat {
  border-left: 1px solid rgba(255, 255, 255, .20)
}

.hero-guia__stat-num {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px
}

.hero-guia__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  margin-top: 10px;
  line-height: 1.4
}

/* gradiente da barra no tema dark */
[data-theme="dark"] .hero-guia__stats {
  background: linear-gradient(90deg, #1f3a5b 0%, #2f3a64 55%, #3b3a66 100%);
}

[data-theme="dark"] .hero-guia__stat+.hero-guia__stat {
  border-left-color: rgba(255, 255, 255, .10)
}

/* ---- responsivo ---- */
@media (max-width:900px) {
  .hero-guia {
    padding: 12px 12px 26px
  }

  .hero-guia__container {
    flex-direction: column;
    min-height: auto
  }

  .hero-guia__content {
    max-width: 100%;
    padding: 34px 22px 0
  }

  .hero-guia__blob {
    width: 240px;
    height: 240px;
    top: -50px;
    right: -30px
  }

  .hero-guia__title {
    font-size: 34px
  }

  .hero-guia__description {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 26px
  }

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

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

  .hero-guia__media {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 260px;
    margin-top: 22px
  }

  .hero-guia__image {
    object-position: right bottom
  }

  .hero-guia__badge,
  .hero-guia__chat {
    display: none
  }

  .hero-guia__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
    padding: 30px 20px
  }

  .hero-guia__stat+.hero-guia__stat {
    border-left: none
  }

  .hero-guia__stat-num {
    font-size: 38px
  }
}

@media (max-width:600px) {
  .hero-guia__title {
    font-size: 30px
  }

  .hero-guia__content {
    padding: 28px 18px 0
  }

  .hero-guia__stat-num {
    font-size: 34px
  }
}

.problema {
  --p-title: var(--header-title);
  --p-highlight: var(--purple);
  --p-text: var(--navbar--normal);
  --p-card-bg: var(--bg-fundo-card);
  --p-card-bd: var(--border--transparente--cinza);
  --p-amarelo: var(--accent-amarelo);

  background: var(--bg-site);
  padding: 64px 24px 80px;
}

.problema__container {
  max-width: 1140px;
  margin: 0 auto
}

/* timeline de pontos */
.problema__timeline {
  position: relative;
  max-width: 560px;
  margin: 0 auto 64px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.problema__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--btn-secondary-border);
  z-index: 0
}

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

.problema__dot--1 {
  background: #8C82FC
}

.problema__dot--2 {
  background: #4AA3E5
}

.problema__dot--3 {
  background: #16B8A6
}

.problema__dot--4 {
  background: #F2C94C
}

.problema__dot--5 {
  background: #F5A24B
}

.problema__dot--6 {
  background: #F4736E
}

.problema__dot--7 {
  background: #EF5B5B
}

.problema__dot--8 {
  background: #FBD5DF
}

[data-theme="dark"] .problema__dot--8 {
  background: #ffffff
}

/* grid principal */
.problema__grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 48px;
  align-items: center
}

/* coluna de texto */
.problema__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 30px;
  line-height: 1.28;
  font-weight: 400;
  color: var(--texto--azul--claro);
  margin-bottom: 24px
}

.problema__title em {
  font-style: italic;
  color: var(--p-highlight);
  font-weight: 600
}

.problema__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--p-text);
  opacity: .78;
  max-width: 440px;
  margin-bottom: 16px
}

.problema__text:last-of-type {
  margin-bottom: 0
}

.problema__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 240px;
  height: 54px;
  margin-top: 34px;
  padding: 0 26px;
  border-radius: 8px;
  background: var(--p-amarelo);
  color: #15253F;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s
}

.problema__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(242, 201, 76, .4)
}

.problema__btn-arrow {
  font-size: 18px;
  line-height: 1
}

/* cards */
.problema__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.problema__card {
  position: relative;
  background: var(--p-card-bg);
  border: 1px solid var(--p-card-bd);
  border-radius: 12px;
  padding: 26px 22px 24px;
  overflow: hidden
}

.problema__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, #ccc)
}

.problema__card--red {
  --accent: #F4736E
}

.problema__card--blue {
  --accent: #4AA3E5
}

.problema__card--green {
  --accent: #16B8A6
}

.problema__card--yellow {
  --accent: #F2C94C
}

.problema__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-fundo-card2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.problema__card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block
}

.problema__card-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--p-text);
  margin-bottom: 10px
}

.problema__card-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--p-text);
  opacity: .62
}

/* dado âncora (abaixo dos cards) */
.problema__ancora {
  max-width: 960px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-text);
  opacity: .72;
}

.problema__ancora strong {
  color: var(--p-title);
  font-weight: 700
}

/* destaca o número no azul do título */
.problema__ancora-fonte {
  font-size: 12px;
  opacity: .8
}

/* ---- responsivo ---- */
@media (max-width:900px) {
  .problema {
    padding: 40px 18px 60px
  }

  .problema__timeline {
    max-width: 88%;
    margin-bottom: 44px
  }

  .problema__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start
  }

  .problema__title {
    font-size: 24px
  }

  .problema__text {
    max-width: 100%
  }

  .problema__btn {
    width: 100%
  }

  .problema__cards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .problema__ancora {
    margin-top: 34px;
    font-size: 13px
  }
}

@media (max-width:600px) {
  .problema__dot {
    width: 10px;
    height: 10px
  }
}

.transformacao {
  /* fundos exclusivos da seção (locais p/ não mexer no :root global) */
  --t-bg: #FBF6E8;
  /* creme do container */
  --t-card: #ECEAF5;
  /* lavanda dos cards   */

  background: var(--bg-site);
  padding: px 24px;
}

[data-theme="dark"] .transformacao {
  --t-bg: #1B2A47;
  --t-card: #212F4D;
}

.transformacao__container {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--t-bg);
  border-radius: 24px;
  padding: 56px 48px 60px
}

.transformacao__inner {
  max-width: 1060px;
  margin: 0 auto
}

/* cabeçalho */
.transformacao__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--purple);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 16px
}

.transformacao__title em {
  font-style: italic;
  font-weight: 600
}

.transformacao__subtitle {
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navbar--normal);
  opacity: .65;
  max-width: 470px;
  margin: 0 auto 46px
}

/* grid de cards */
.transformacao__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.transformacao__card {
  position: relative;
  background: var(--t-card);
  border-radius: 14px;
  padding: 30px 28px 26px;
  overflow: hidden
}

.transformacao__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 14px 14px 0 0
}

.transformacao__card--antes {
  --accent: #EE7B3D
}

.transformacao__card--depois {
  --accent: #8C82FC
}

.transformacao__card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px
}

.transformacao__pill {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--t-bg);
  border: 1.5px solid var(--accent);
  color: var(--preto--branco)
}

.transformacao__avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-fundo-card2);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.transformacao__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* lista */
.transformacao__list {
  list-style: none
}

.transformacao__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 2px;
  border-bottom: 1px dotted var(--btn-secondary-border)
}

.transformacao__item:last-child {
  border-bottom: none
}

.transformacao__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

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

/* anel/cor de stand-in enquanto o ícone real não é colocado */
.transformacao__item--x .transformacao__icon {
  background: rgba(238, 91, 91, .12);
  box-shadow: inset 0 0 0 1.5px #EE5B5B
}

.transformacao__item--check .transformacao__icon {
  background: rgba(140, 130, 252, .14);
  box-shadow: inset 0 0 0 1.5px #8C82FC
}

.transformacao__item-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navbar--normal);
  opacity: .82
}

/* ---- responsivo ---- */
@media (max-width:900px) {
  .transformacao {
    padding: 14px 12px
  }

  .transformacao__container {
    padding: 36px 18px 40px;
    border-radius: 20px
  }

  .transformacao__title {
    font-size: 25px
  }

  .transformacao__subtitle {
    margin-bottom: 34px
  }

  .transformacao__grid {
    grid-template-columns: 1fr;
    gap: 20px
  }
}

@media (max-width:600px) {
  .transformacao__title {
    font-size: 23px
  }

  .transformacao__card {
    padding: 24px 18px
  }
}

/* --- SEÇÃO MÉTODO (como funciona) --- */
.metodo {
  --m-title: var(--purple);
  --m-accent: #ED6A5A;
  /* coral dos passos (fixo nos 2 temas) */
  --m-text: var(--navbar--normal);
  background: var(--bg-site);
  padding: 64px 24px 40px;
}

.metodo__container {
  max-width: 1120px;
  margin: 0 auto
}

.metodo__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px
}

.metodo__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--text-fundo-processo__step);
  margin-bottom: 14px
}

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

.metodo__subtitle {
  font-size: 14px;
  line-height: 1.55;
  color: var(--m-text);
  opacity: .65;
  max-width: 560px;
  margin: 0 auto
}

.metodo__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.metodo__step {
  padding: 0 28px
}

.metodo__step+.metodo__step {
  border-left: 1px solid var(--btn-secondary-border)
}

.metodo__step-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px
}

.metodo__step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--bg-fundo-card2);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.metodo__step-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block
}

.metodo__step-title {
  font-size: 16px;
  line-height: 1.35;
  color: var(--m-accent);
  font-weight: 400;
  padding-top: 2px
}

.metodo__step-title em {
  font-size: 16px;
  line-height: 1.35;
  color: var(--m-accent);
  font-weight: 600;
  padding-top: 2px
}

.metodo__step-num {
  font-weight: 700
}

.metodo__step-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--m-text);
  opacity: .78
}

@media (max-width:900px) {
  .metodo {
    padding: 44px 18px 24px
  }

  .metodo__title {
    font-size: 25px
  }

  .metodo__steps {
    grid-template-columns: 1fr
  }

  .metodo__step {
    padding: 24px 0
  }

  .metodo__step+.metodo__step {
    border-left: none;
    border-top: 1px solid var(--btn-secondary-border)
  }
}

/* --- SEÇÃO CASOS DE USO --- */
.casos {
  --c-title: var(--purple);
  --c-text: var(--navbar--normal);
  --c-card-bg: var(--bg-fundo-card);
  --c-card-bd: var(--border--transparente--cinza);
  background: var(--bg-site);
  padding: 40px 24px 80px;
}

.casos__container {
  max-width: 1120px;
  margin: 0 auto
}

.casos__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px
}

.casos__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--text-fundo-processo__step);
  margin-bottom: 14px
}

.casos__title em {
  font-style: italic;
  font-weight: 600
}

.casos__subtitle {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text);
  opacity: .65;
  max-width: 740px;
  margin: 0 auto
}

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

.casos__card {
  position: relative;
  background: var(--c-card-bg);
  border: 1px solid var(--c-card-bd);
  border-radius: 10px;
  padding: 18px 18px 18px 22px;
  overflow: hidden
}

.casos__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent, #ccc)
}

/* cor por card (decorativa — fácil de trocar) */
.casos__card--1 {
  --accent: #8C82FC
}

.casos__card--2 {
  --accent: #5B8DEF
}

.casos__card--3 {
  --accent: #16B8A6
}

.casos__card--4 {
  --accent: #8C82FC
}

.casos__card--5 {
  --accent: #16B8A6
}

.casos__card--6 {
  --accent: #EF5B5B
}

.casos__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}

.casos__card-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg-fundo-card2);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.casos__card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block
}

.casos__card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent)
}

.casos__card-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--c-text);
  opacity: .62
}

@media (max-width:900px) {
  .casos {
    padding: 24px 0 56px
  }

  .casos__header {
    padding: 0 18px;
    margin-bottom: 28px
  }

  .casos__title {
    font-size: 25px
  }

  /* carrossel horizontal no mobile (mesmo padrão dos carrosséis do site) */
  .casos__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 18px 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch
  }

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

  .casos__card {
    min-width: 78vw;
    scroll-snap-align: center
  }
}

.conversa {
  --cv-text: var(--navbar--normal);
  --cv-red: var(--text---violet);
  --cv-callout-bg: rgba(229, 72, 77, 0.07);
  --cv-amarelo: var(--accent-amarelo);

  background: var(--bg-site);
  padding: 60px 24px 56px;
}

[data-theme="dark"] .conversa {
  --cv-callout-bg: rgba(229, 72, 77, 0.14);
}

.conversa__container {
  max-width: 1200px;
  margin: 0 auto
}

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

/* coluna de texto */
.conversa__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 400;
  color: var(--texto--azul--claro);
  margin-bottom: 22px
}

.conversa__title b {
  color: var(--text-fundo-processo__step);
  font-weight: 700;
  display: block
}

.conversa__description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cv-text);
  opacity: .8;
  max-width: 480px;
  margin-bottom: 24px
}

.conversa__callout {
  border-left: 3px solid var(--cv-red);
  background: var(--cv-callout-bg);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  margin-bottom: 30px;
  max-width: 480px
}

.conversa__callout-title {
  color: var(--cv-red);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px
}

.conversa__callout-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--cv-text);
  opacity: .82
}

.conversa__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 240px;
  height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  background: var(--cv-amarelo);
  color: #15253F;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s
}

.conversa__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(242, 201, 76, .4)
}

.conversa__btn-arrow {
  font-size: 18px;
  line-height: 1
}

/* coluna do chat — IMAGENS (chat = 1 img por tema; mascote = 1 img) */
.conversa__chat-wrap {
  position: relative;
  width: 520px;
  max-width: 100%;
  margin-left: auto
}

.conversa__mascot {
  position: absolute;
  z-index: 5;
  width: 150px;
  height: auto;
  left: -160px;
  top: 180px;
  pointer-events: none
}

.conversa__mascot img {
  width: 100%;
  display: block
}

.conversa__chat-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px
}

/* remova o radius se a arte já vier arredondada */
.conversa__chat-img--dark {
  display: none
}

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

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

/* timeline de pontos */
.conversa__timeline {
  position: relative;
  max-width: 560px;
  margin: 86px auto 0;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.conversa__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--btn-secondary-border);
  z-index: 0
}

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

.conversa__dot--1 {
  background: #8C82FC
}

.conversa__dot--2 {
  background: #4AA3E5
}

.conversa__dot--3 {
  background: #16B8A6
}

.conversa__dot--4 {
  background: #F2C94C
}

.conversa__dot--5 {
  background: #F5A24B
}

.conversa__dot--6 {
  background: #F4736E
}

.conversa__dot--7 {
  background: #EF5B5B
}

.conversa__dot--8 {
  background: #FBD5DF
}

[data-theme="dark"] .conversa__dot--8 {
  background: #ffffff
}

/* ---- responsivo ---- */
@media (max-width:900px) {
  .conversa {
    padding: 40px 18px 44px
  }

  .conversa__grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .conversa__title {
    font-size: 27px
  }

  .conversa__description,
  .conversa__callout {
    max-width: 100%
  }

  .conversa__btn {
    width: 100%
  }

  .conversa__chat-wrap {
    width: 100%;
    margin: 0
  }

  .conversa__mascot {
    width: 108px;
    left: auto;
    right: 6px;
    top: -26px
  }

  .conversa__timeline {
    max-width: 88%;
    margin-top: 40px
  }
}

@media (max-width:600px) {
  .conversa__title {
    font-size: 24px
  }

  .conversa__dot {
    width: 10px;
    height: 10px
  }
}

.depoimentos {
  --d-name: #D98E4A;
  /* laranja/âmbar do nome (decorativo, fixo) */
  --d-text: var(--navbar--normal);
  background: var(--bg-site);
  padding: 60px 24px 80px;
}

.depoimentos__container {
  max-width: 1140px;
  margin: 0 auto
}

/* timeline de pontos */
.depoimentos__timeline {
  position: relative;
  max-width: 560px;
  margin: 0 auto 56px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.depoimentos__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--btn-secondary-border);
  z-index: 0
}

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

.depoimentos__dot--1 {
  background: #8C82FC
}

.depoimentos__dot--2 {
  background: #4AA3E5
}

.depoimentos__dot--3 {
  background: #16B8A6
}

.depoimentos__dot--4 {
  background: #F2C94C
}

.depoimentos__dot--5 {
  background: #F5A24B
}

.depoimentos__dot--6 {
  background: #F4736E
}

.depoimentos__dot--7 {
  background: #EF5B5B
}

.depoimentos__dot--8 {
  background: #FBD5DF
}

[data-theme="dark"] .depoimentos__dot--8 {
  background: #ffffff
}

/* cabeçalho */
.depoimentos__header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 44px
}

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

.depoimentos__title strong {
  color: var(--text-fundo-processo__step);
  font-weight: 700
}

.depoimentos__subtitle {
  font-size: 14px;
  color: var(--d-text);
  opacity: .7
}

/* grid */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px
}

.depoimentos__card {
  display: flex;
  flex-direction: column
}

.depoimentos__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px
}

.depoimentos__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-fundo-card2);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.depoimentos__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.depoimentos__meta {
  flex: 1;
  min-width: 0
}

.depoimentos__stars {
  color: var(--accent-amarelo);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 7px
}

.depoimentos__namebox {
  background: var(--bg-fundo-card2);
  border-radius: 8px;
  padding: 8px 12px
}

.depoimentos__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--d-name);
  margin-bottom: 2px
}

.depoimentos__person {
  font-size: 12px;
  color: var(--text-fundo-processo__step)
}

.depoimentos__quote {
  font-size: 13px;
  line-height: 1.65;
  color: var(--d-text);
  opacity: .78
}

/* ---- responsivo ---- */
@media (max-width:900px) {
  .depoimentos {
    padding: 40px 20px 60px
  }

  .depoimentos__timeline {
    max-width: 88%;
    margin-bottom: 40px
  }

  .depoimentos__title {
    font-size: 25px
  }

  .depoimentos__grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .depoimentos__head {
    flex-direction: column;
    align-items: center;
    gap: 12px
  }

  .depoimentos__avatar {
    width: 64px;
    height: 64px
  }

  .depoimentos__meta {
    width: 100%
  }

  .depoimentos__stars {
    text-align: center
  }

  .depoimentos__namebox {
    text-align: left
  }
}

@media (max-width:600px) {
  .depoimentos__dot {
    width: 10px;
    height: 10px
  }
}

/* --- SEÇÃO DISCLAIMER (não substitui o pediatra) --- */
.disclaimer {
  --dc-bg: #FBF6E8;
  /* creme do container (local) */
  --dc-card: #F4F2FA;
  /* card claro (local)         */
  --dc-amber: #E59B36;
  /* "NÃO substitui" (fixo nos 2 temas) */
  --dc-text: var(--navbar--normal);
  background: var(--bg-site);
  padding: 40px 24px;
}

[data-theme="dark"] .disclaimer {
  --dc-bg: #1B2A47;
  --dc-card: #212F4D;
}

.disclaimer__container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--dc-bg);
  border-radius: 24px;
  padding: 48px 40px 44px
}

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

.disclaimer__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dc-text);
  margin-bottom: 14px
}

.disclaimer__title em {
  color: var(--dc-amber);
  font-style: normal
}

.disclaimer__subtitle {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--dc-text);
  opacity: .7;
  max-width: 620px;
  margin: 0 auto
}

.disclaimer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto
}

.disclaimer__card {
  position: relative;
  background: var(--dc-card);
  border-radius: 12px;
  padding: 24px 20px 22px;
  overflow: hidden
}

.disclaimer__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, #ccc);
  border-radius: 12px 12px 0 0
}

.disclaimer__card--red {
  --accent: #F4736E
}

.disclaimer__card--purple {
  --accent: #8C82FC
}

.disclaimer__card--green {
  --accent: #16B8A6
}

.disclaimer__card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--bg-fundo-card2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.disclaimer__card-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block
}

.disclaimer__card-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dc-text);
  margin-bottom: 8px
}

.disclaimer__card-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--dc-text);
  opacity: .6
}

@media (max-width:900px) {
  .disclaimer {
    padding: 14px 12px
  }

  .disclaimer__container {
    padding: 34px 18px 36px;
    border-radius: 20px
  }

  .disclaimer__title {
    font-size: 24px
  }

  .disclaimer__grid {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

/* --- SEÇÃO CTA FINAL --- */
.cta {
  --cta-bg: var(--bg-header-container);
  --cta-title: var(--purple);
  --cta-strong: var(--text-fundo-processo__step);
  --cta-violet: var(--text-fundo-processo__step);
  --cta-text: var(--navbar--normal);
  --cta-muted: var(--text-note);
  background: var(--bg-site);
  padding: 20px 24px 40px;
}

/* timeline de 6 pontos */
.cta__timeline {
  position: relative;
  max-width: 420px;
  margin: 0 auto 36px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.cta__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--btn-secondary-border);
  z-index: 0
}

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

.cta__dot--1 {
  background: #8C82FC
}

.cta__dot--2 {
  background: #4AA3E5
}

.cta__dot--3 {
  background: #16B8A6
}

.cta__dot--4 {
  background: #F2C94C
}

.cta__dot--5 {
  background: #F5A24B
}

.cta__dot--6 {
  background: #F4736E
}

[data-theme="dark"] .cta__dot--6 {
  background: #ffffff
}

.cta__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cta-bg);
  border-radius: 20px;
  display: flex;
  align-items: stretch;
  min-height: 380px;
  clip-path: inset(-300px 0 0 0 round 20px);
}

/* topo aberto · lados/base cortados */
.cta__blob {
  position: absolute;
  right: 25%;
  top: 30px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--cta-violet);
  opacity: .38;
  z-index: 0
}

.cta__blob2 {
  position: absolute;
  right: 0px;
  bottom: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--cta-violet);
  opacity: .30;
  z-index: 0
}

.cta__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  padding: 48px 0 48px 48px
}

.cta__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--cta-title);
  margin-bottom: 18px
}

.cta__title strong {
  color: var(--cta-strong);
  font-weight: 700
}

.cta__description {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cta-text);
  opacity: .8;
  max-width: 430px;
  margin-bottom: 26px
}

.cta__description strong {
  color: var(--purple);
  font-weight: 600
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--cta-violet);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(140, 130, 252, .35);
  transition: transform .15s
}

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

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

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

.cta__note {
  font-size: 11px;
  color: var(--cta-muted);
  opacity: .85;
  margin-top: 16px
}

.cta__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  min-width: 380px;
  z-index: 1
}

.cta__image {
  position: absolute;
  right: 14%;
  bottom: 0;
  width: auto;
  height: calc(100% + 90px);
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
}

@media (max-width:900px) {
  .cta {
    padding: 12px 12px 30px
  }

  .cta__timeline {
    max-width: 78%;
    margin-bottom: 26px;
    position: relative;
    z-index: 1
  }

  /* pontos: camada de baixo */

  .cta__container {
    flex-direction: column;
    min-height: auto;
    position: relative;
    z-index: 2;
    clip-path: inset(-220px 0 0 0 round 20px)
  }

  /* topo aberto + acima dos pontos */

  .cta__content {
    max-width: 100%;
    padding: 30px 22px 32px;
    order: 2
  }

  .cta__title {
    font-size: 27px
  }

  .cta__description {
    max-width: 100%
  }

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

  .cta__media {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 300px;
    order: 1;
    z-index: 2
  }

  .cta__image {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: auto;
    height: calc(100% + 55px);
    max-width: none;
    object-fit: contain;
    object-position: center bottom
  }

  /* sobe e cobre os pontos */

  .cta__blob,
  .cta__blob2 {
    display: none
  }
}

@media (max-width:600px) {
  .cta__dot {
    width: 10px;
    height: 10px
  }
}

.footer-kz {
  padding: 42px 28px 28px;
  background: var(--bg-site);
}

.footer-kz__container {
  max-width: 760px;
  margin: 0 auto;
}

.footer-kz__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-kz__brand img {
  width: 160px;
  margin-bottom: 14px;
}

.footer-kz__social {
  display: flex;
  gap: 14px;
}

.footer-kz__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.footer-kz__links {
  display: flex;
  gap: 80px;
}

.footer-kz__column h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--header-title);
  margin-bottom: 14px;
}

.footer-kz__column ul {
  list-style: none;
}

.footer-kz__column li {
  margin-bottom: 12px;
}

.footer-kz__column a {
  text-decoration: none;
  font-size: 12px;
  color: var(--navbar--normal);
  transition: color 0.2s var(--ease-out);
}

.footer-kz__divider {
  margin: 28px 0;
  height: 1px;
  background: var(--btn-secondary-border);
}

.footer-kz__bottom {
  text-align: center;
}

.footer-kz__copyright {
  font-size: 12px;
  color: var(--navbar--normal);
}

@media (max-width: 640px) {
  .footer-kz {
    padding: 20px 40px;
  }

  .footer-kz__social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .footer-kz__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    width: 20px;
    height: 18px;
  }

  .footer-kz__top {
    flex-direction: column;
    gap: 26px;
  }

  .footer-kz__brand img {
    width: 140px;
  }

  .footer-kz__links {
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }

  .footer-kz__column h4 {
    margin-bottom: 10px;
  }

  .footer-kz__column li {
    margin-bottom: 10px;
  }

  .footer-kz__divider {
    margin: 24px 0;
  }

  .footer-kz__copyright {
    font-size: 11px;
  }
}