/* ============================================================
   BASE
   ============================================================ */
* {
  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,
.navbar-mobile__nav {
  list-style: none;
}

.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;
}

.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;
}


/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg-site: #ffffff;
  --navbar--normal: #0A121A;
  --navbar--hover: #1E40AF;
  --btn-secondary-border: #d8d7ec;
  --purple: rgba(158, 163, 230, 1);
  --purple-bg: #EBEDFF;
  --dark: #15253F;
  --grey: #6B7582;
  --border: #E5E7EB;
  --white: #FFFFFF;

  --purple-title: #8B7CF0;
  --purple-strong: #7C6BF2;
  --purple-soft: #C9C3F7;
  --purple-band: #4A42A8;

  /* verdes desta página */
  --mint-bg: #E4F7EF;
  --mint-circle: #B6E8D3;
  --green-brand: #12A87A;
  --green-mid: #23C48E;
  --green-soft-bg: #DFF7EC;

  /* faixas de risco */
  --risk-red: #F4736E;
  --risk-red-bg: #FDECEA;
  --risk-amber: #F2C94C;
  --risk-amber-bg: #FEFAEF;
  --risk-green: #23C48E;
  --risk-green-bg: #E7F9F1;
  --samu-btn: #F0453D;

  --card-bg: #FFFFFF;
  --band-text: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] {
  --bg-site: #15253F;
  --navbar--normal: #FFFFFF;
  --navbar--hover: #0080FF;
  --btn-secondary-border: #64B2FF;
  --purple: rgba(158, 163, 230, 1);
  --purple-bg: rgb(22, 40, 74);
  --dark: #ffffff;
  --grey: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.15);
  --white: #FFFFFF;

  --purple-title: #A79BFF;
  --purple-strong: #7C6BF2;
  --purple-soft: rgba(201, 195, 247, 0.5);
  --purple-band: #4A42A8;

  --mint-bg: #1B2C48;
  --mint-circle: rgba(35, 196, 142, 0.14);
  --green-brand: #23C48E;
  --green-mid: #23C48E;
  --green-soft-bg: rgba(35, 196, 142, 0.10);

  --risk-red: #F4736E;
  --risk-red-bg: rgba(244, 115, 110, 0.12);
  --risk-amber: #F2C94C;
  --risk-amber-bg: rgba(242, 201, 76, 0.10);
  --risk-green: #23C48E;
  --risk-green-bg: rgba(35, 196, 142, 0.10);
  --samu-btn: #F0453D;

  --card-bg: #1E2E4C;
  --band-text: rgba(255, 255, 255, 0.9);
}


/* ============================================================
   FONTES
   ============================================================ */
@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;
}


/* ============================================================
   CONTAINERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container2 {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 767px) {

  .container,
  .container2 {
    padding-inline: 20px;
  }
}


/* ============================================================
   1 · HERO
   ============================================================ */
.psh {
  padding: 32px 0 0;
  background: var(--bg-site);
  overflow: hidden;
}

.psh__box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 46%;
  align-items: center;
  background: var(--mint-bg);
  border-radius: 16px;
  min-height: 520px;
}

.psh__content {
  position: relative;
  z-index: 4;
  padding: 64px 30px 64px 64px;
}

.psh__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  color: var(--dark);
  margin: 0 0 22px;
}

.psh__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  flex: none;
}

.psh__title {
  font-family: "Gelica", serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.16;
  color: var(--green-brand);
  margin: 0 0 22px;
  max-width: 14ch;
}

.psh__desc {
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  line-height: 1.65;
  color: var(--dark);
  margin: 0 0 28px;
  max-width: 46ch;
}

.psh__desc em {
  font-style: normal;
  font-weight: 600;
  color: var(--green-brand);
}

.psh__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.psh__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 16px 28px;
  transition: filter .2s ease, transform .2s ease;
}

.psh__btn:active {
  transform: translateY(1px);
}

.psh__btn--primary {
  position: relative;
  background: var(--green-brand);
  color: var(--white);
  padding: 18px 30px 18px 76px;
}

.psh__btn--primary:hover {
  filter: brightness(.95);
  color: var(--white);
}

.psh__btn-icon {
  position: absolute;
  left: 14px;
  top: 20%;
  transform: translateY(-50%);
  width: 48px;
  height: auto;
}

.psh__btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--mint-circle);
  font-weight: 500;
}

.psh__btn--ghost svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.psh__btn--ghost:hover {
  background: rgba(255, 255, 255, .45);
  color: var(--dark);
}

[data-theme="dark"] .psh__btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
}

.psh__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.psh-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  color: var(--dark);
}

.psh-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  flex: none;
}

.psh__circles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 16px;
  pointer-events: none;
}

.psh__circle {
  position: absolute;
  border-radius: 50%;
  background: var(--mint-circle);
}

.psh__circle--top {
  width: 320px;
  height: 320px;
  top: -30px;
  right: 18%;
}

.psh__circle--bottom {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: -4%;
}

.psh__media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.psh__photo {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 0;
  width: 85%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .psh {
    padding: 20px 0 0;
  }

  .psh__box {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    min-height: 0;
  }

  .psh__media {
    display: none;
  }

  .psh__content {
    padding: 34px 24px 38px;
  }

  .psh__title {
    font-size: 2rem;
    max-width: none;
  }

  .psh__desc {
    max-width: none;
  }

  .psh__actions {
    flex-direction: column;
    gap: 14px;
  }

  .psh__btn {
    width: 100%;
  }

  .psh__btn--primary {
    padding: 18px 20px 18px 78px;
    justify-content: flex-start;
  }

  .psh__btn-icon {
    left: 12px;
    width: 52px;
  }

  .psh__pills {
    flex-direction: column;
    gap: 12px;
  }
}


/* ============================================================
   2 · FAIXA ROXA + NÃO É A FEBRE
   ============================================================ */
.assusta {
  padding: 40px 0 56px;
  background: var(--bg-site);
}

.assusta__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--purple-band);
  border-radius: 10px;
  padding: 18px 32px;
  margin-bottom: 40px;
}

.assusta__band-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  color: var(--band-text);
}

.assusta__band-item svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--green-mid);
}

.assusta__box {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--purple-bg);
  border-radius: 12px;
  padding: 48px 52px;
}

.assusta__title {
  font-family: "Gelica", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--purple-title);
  margin: 0;
}

.assusta__sub {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin: 0 0 16px;
}

.assusta__text {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 22px;
}

.assusta__note {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--dark);
  border-bottom: 2px solid var(--risk-amber);
  padding-bottom: 8px;
  margin: 0;
  display: inline-block;
}

@media (max-width: 767px) {
  .assusta {
    padding: 28px 0 40px;
  }

  .assusta__band {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    margin-bottom: 32px;
  }

  .assusta__box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
    background: transparent;
  }

  .assusta__title {
    font-size: 1.75rem;
  }
}


/* ============================================================
   3 · O QUE FAZER EM CADA SITUAÇÃO
   ============================================================ */
.situacao {
  padding: 40px 0 56px;
  background: var(--bg-site);
}

.situacao__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.situacao__title {
  font-family: "Gelica", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  margin: 0;
}

.situacao__desc {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
}

.sit-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.sit-card:last-child {
  margin-bottom: 0;
}

.sit-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  padding: 20px 26px;
}

.sit-card__bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: none;
}

.sit-card--red .sit-card__bullet {
  background: var(--risk-red);
}

.sit-card--amber .sit-card__bullet {
  background: var(--risk-amber);
}

.sit-card--green .sit-card__bullet {
  background: var(--risk-green);
}

.sit-card__name {
  flex: 1;
  font-family: "Gelica", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}

.sit-card__badge {
  width: 30px;
  height: 30px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--purple-bg);
  color: var(--purple-strong);
}

.sit-card__badge svg {
  width: 16px;
  height: 16px;
}

.sit-card__body {
  padding: 24px 26px 28px;
}

.sit-card--red .sit-card__body {
  background: var(--risk-red-bg);
}

.sit-card--amber .sit-card__body {
  background: var(--risk-amber-bg);
}

.sit-card--green .sit-card__body {
  background: var(--risk-green-bg);
}

.sit-card__lead {
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 20px;
}

.sit-card__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin: 0;
  padding: 0;
}

.sit-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--grey);
}

.sit-card__check {
  width: 14px;
  height: 14px;
  flex: none;
  margin-top: 3px;
}

.sit-card--red .sit-card__check {
  color: var(--risk-red);
}

.sit-card--amber .sit-card__check {
  color: var(--risk-amber);
}

.sit-card--green .sit-card__check {
  color: var(--risk-green);
}

.sit-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: var(--samu-btn);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  padding: 16px 26px;
  margin-top: 26px;
  transition: filter .2s ease, transform .2s ease;
}

.sit-card__btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.sit-card__btn:hover {
  filter: brightness(.95);
  color: var(--white);
}

.sit-card__btn:active {
  transform: translateY(1px);
}

@media (max-width: 767px) {
  .situacao {
    padding: 32px 0 40px;
  }

  .situacao__head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .situacao__title {
    font-size: 1.75rem;
  }

  .sit-card__head {
    padding: 18px 20px;
  }

  .sit-card__name {
    font-size: 1.125rem;
  }

  .sit-card__body {
    padding: 22px 20px 24px;
  }

  .sit-card__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sit-card__btn {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
}


/* ============================================================
   4 · CTA FAIXA + CADA CRIANÇA É DIFERENTE
   ============================================================ */
.faixa-cta {
  padding: 24px 0 40px;
  background: var(--bg-site);
}

.faixa-cta__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--purple-band);
  border-radius: 10px;
  padding: 32px 40px;
}

.faixa-cta__title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  margin: 0 0 8px;
}

.faixa-cta__sub {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}

.faixa-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  background: var(--white);
  color: var(--dark);
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  padding: 15px 26px;
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease;
}

.faixa-cta__btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.faixa-cta__btn:hover {
  filter: brightness(.96);
  color: var(--dark);
}

.faixa-cta__btn:active {
  transform: translateY(1px);
}

@media (max-width: 767px) {
  .faixa-cta {
    padding: 16px 0 32px;
  }

  .faixa-cta__box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .faixa-cta__title {
    font-size: 1.0625rem;
  }

  .faixa-cta__btn {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
}


.diferente {
  padding: 24px 0 56px;
  background: var(--bg-site);
}

.diferente__box {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--green-soft-bg);
  border-radius: 12px;
  padding: 48px 52px;
}

.diferente__title {
  font-family: "Gelica", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--dark);
  margin: 0;
}

.diferente__sub {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}

.diferente__text {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 20px;
}

.diferente__note {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin: 0;
}

@media (max-width: 767px) {
  .diferente {
    padding: 16px 0 40px;
  }

  .diferente__box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px;
  }

  .diferente__title {
    font-size: 1.75rem;
  }
}


/* ============================================================
   5 · TRÊS PASSOS
   ============================================================ */
.passos {
  padding: 40px 0 56px;
  background: var(--bg-site);
}

.passos__title {
  font-family: "Gelica", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--purple-strong);
  text-align: center;
  margin: 0 0 14px;
}

.passos__desc {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--dark);
  text-align: center;
  margin: 0 0 44px;
}

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

.passo {
  padding: 0 32px;
  border-left: 1px solid var(--green-mid);
}

.passo:first-child {
  border-left: 0;
  padding-left: 0;
}

.passo:last-child {
  padding-right: 0;
}

.passo__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.passo__icon {
  width: 34px;
  height: auto;
  flex: none;
}

.passo__name {
  font-family: "Gelica", serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--green-mid);
  margin: 0;
}

.passo__name b {
  font-weight: 700;
  color: var(--green-brand);
}

.passo__text {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

@media (max-width: 767px) {
  .passos {
    padding: 32px 0 40px;
  }

  .passos__title {
    font-size: 1.75rem;
  }

  .passos__desc {
    margin-bottom: 32px;
  }

  .passos__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .passo {
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--green-mid);
  }

  .passo:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .passo:last-child {
    padding-bottom: 0;
  }
}

.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
  }
}


/* ============================================================
   6 · CIÊNCIA, CUIDADO E PRIVACIDADE
   ============================================================ */
.ciencia {
  padding: 40px 0 72px;
  background: var(--bg-site);
}

.ciencia__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.ciencia__title {
  font-family: "Gelica", serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 18px;
}

.ciencia__desc {
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

.ciencia__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ciencia-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.ciencia-item:first-child {
  padding-top: 0;
}

.ciencia-item:last-child {
  border-bottom: 0;
}

.ciencia-item__check {
  width: 32px;
  height: 32px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--green-soft-bg);
  color: var(--green-mid);
}

.ciencia-item__check svg {
  width: 16px;
  height: 16px;
}

.ciencia-item__name {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.ciencia-item__desc {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--grey);
}

@media (max-width: 767px) {
  .ciencia {
    padding: 32px 0 48px;
  }

  .ciencia__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ciencia__title {
    font-size: 1.75rem;
  }
}

/* ============================================================
   9 · CTA FINAL
   ============================================================ */
.cta-fim {
  padding: 0 0 56px;
  background: var(--bg-site);
  overflow-x: clip;
  /* corta só na horizontal */
  overflow-y: visible;
  /* deixa a foto subir */
}

.cta-fim__rainbow {
  display: block;
  height: 3px;
  margin-bottom: 100px;
  background: linear-gradient(to right, #7C6BF2, #00AAFF, #00FDA9, #F6D860, #EE6C56, #F2789F, #FFFFFF);
}

.cta-fim__box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 46%;
  align-items: center;
  background: var(--purple-bg);
  border-radius: 16px;
  min-height: 360px;
}

.cta-fim__content {
  position: relative;
  z-index: 4;
  padding: 56px 40px 56px 56px;
}

.cta-fim__title {
  font-family: "Gelica", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--purple-title);
  margin: 0 0 18px;
  max-width: 18ch;
}

.cta-fim__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--purple-strong);
}

.cta-fim__desc {
  font-family: "Inter", sans-serif;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 26px;
  max-width: 46ch;
}

.cta-fim__desc a {
  color: var(--purple-strong);
  font-weight: 500;
}

.cta-fim__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-strong);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  padding: 18px 30px 18px 76px;
  margin-bottom: 20px;
  transition: filter .2s ease, transform .2s ease;
}

.cta-fim__btn:hover {
  filter: brightness(.95);
  color: var(--white);
}

.cta-fim__btn:active {
  transform: translateY(1px);
}

.cta-fim__btn-icon {
  position: absolute;
  left: 14px;
  top: 20%;
  transform: translateY(-50%);
  width: 48px;
  height: auto;
}

.cta-fim__note {
  font-family: "Inter", sans-serif;
  font-size: .75rem;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
  max-width: 34ch;
}

.cta-fim__circles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 16px;
  pointer-events: none;
}

.cta-fim__circle {
  position: absolute;
  border-radius: 50%;
  background: var(--purple);
}

.cta-fim__circle--top {
  width: 190px;
  height: 190px;
  top: 4%;
  right: 32%;
}

.cta-fim__circle--bottom {
  width: 200px;
  height: 200px;
  bottom: -40px;
  right: -6%;
}

[data-theme="dark"] .cta-fim__circle {
  opacity: .35;
}

.cta-fim__media {
  position: relative;
  align-self: stretch;
  min-height: 360px;
}

.cta-fim__photo {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: 80%;
  height: auto;
  display: block;
  transform: translateX(-42%);
}

@media (max-width: 767px) {
  .cta-fim {
    padding: 0 0 40px;
  }

  .cta-fim__circles {
    display: none;
  }

  .cta-fim__box {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    min-height: 0;
    margin-top: 300px;
    position: relative;
    z-index: 2;
  }

  .cta-fim__media {
    order: 1;
    min-height: 0;
    height: 300px;
    margin-top: -300px;
    position: relative;
    z-index: 1;
    isolation: isolate;
  }

  .cta-fim__photo {
    z-index: 1;
    left: 50%;
    bottom: 0;
    width: 74%;
    transform: translateX(-50%);
  }

  .cta-fim__content {
    order: 2;
    padding: 36px 26px;
  }

  .cta-fim__title {
    font-size: 1.75rem;
    line-height: 1.28;
    max-width: none;
    margin-bottom: 20px;
  }

  .cta-fim__desc {
    max-width: none;
    margin-bottom: 26px;
  }

  .cta-fim__note {
    max-width: none;
  }

  .cta-fim__btn {
    width: 100%;
    padding: 18px 20px 18px 72px;
    justify-content: flex-start;
  }

  .cta-fim__btn-icon {
    left: 12px;
    width: 48px;
  }
}