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

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

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

.navbar {
  background: #ffffff;
  padding: 18px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar__container {
  max-width: 1060px;
  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: 34px;
  margin-left: auto;
}

.navbar__nav a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #0A121A;
  transition: color 0.2s ease;
}

.navbar__nav a:hover,
.navbar__nav a.is-active {
  color: #7a73ff;
}

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

.navbar__cta {
  min-height: 48px;
  padding: 0 38px;
  background: #8a80ff;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.24);
}

.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: #1f2a44;
  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: #ffffff;
  box-shadow: 0 2px 8px rgba(31, 42, 68, 0.16);
  transition: transform 0.25s ease;
}

.theme-toggle__icon {
  position: relative;
  z-index: 2;
  font-size: 11px;
  line-height: 1;
  color: #1f2a44;
}

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

.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: #ffffff;
  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;
  padding: 8px;
  border: 1px solid #d8d7ec;
  border-radius: 8px;
  background: #f5f6fa;
  color: #1f2a44;
  fill: #405560;
  font-size: 20px;
  cursor: pointer;
}

.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-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #1f2a44;
  padding: 14px 12px;
  border-radius: 10px;
}

.navbar-mobile__nav a:hover,
.navbar-mobile__nav a.is-active {
  background: #f2efff;
}

.navbar-mobile__cta {
  margin-top: 18px;
  min-height: 48px;
  background: #8a80ff;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  padding-left: 16px;
  position: relative; /* necessário pro absolute do filho */
}

.navbar-mobile__cta-line {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;        /* espessura da barra */
  height: 18px;      /* altura da barra */
  background: #FFA17E;
  border-radius: 2px;
}

.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 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.navbar-mobile__copyright {
  margin-top: 18px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #0A121A;
}

/* TABLET / MOBILE */
@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;
  }
}

/* MOBILE MENOR */
@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;
  }

  .navbar-mobile__copyright {
    font-size: 11px;
  }
}

.header {
  padding: 30px 100px;
  background: #ffffff;
}

.header__container {
  max-width: 1260px;
  margin: 0 auto;
  background: #eeedf8;
  border-radius: 12px;
  min-height: 380px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 36px 0 36px;
  position: relative;
  overflow: hidden;
}

.header__content {
  width: 100%;
  max-width: 530px;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.header__eyebrow {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4;
  color: #1f2937;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
}

.header__title {
  font-size: 70px;
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -1.8px;
  color: #7a73ff;
  margin-bottom: 18px;
  font-family: "Gelica", "Times New Roman", serif;
}

.header__title strong {
  font-weight: 500;
}

.header__description {
  font-size: 16px;
  line-height: 1.65;
  color: #15253F;
  max-width: 540px;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
}

.header__description strong {
  color: #7a73ff;
  font-weight: 700;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.header__btn {
  height: 40px;
  padding: 20px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.header__btn--primary {
  background: #8a80ff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.22);
}

.header__btn--primary:hover {
  transform: translateY(-1px);
}

.header__btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: -8px; /* sobe o ícone */
}

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

.header__btn--secondary {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d8d7ec;
  min-width: 124px;
}

.header__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.45);
}

.header__btn-circle {
  width: 10px;
  height: 10px;
  border: 1.5px solid #9ca3af;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.header__note {
  font-size: 11px;
  color: #666d7a;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
  .header__note {
    font-size: 14px;
  }
}

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

.header__stores-label {
  font-size: 12px;
  font-weight: 700;
  color: #303544;
  font-family: "Inter", sans-serif;
  margin-bottom: 8px;
}

.header__stores-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header__store-link {
  display: inline-flex;
  line-height: 0;
}

.header__store-link img {
  width: auto;
  height: 26px;
  display: block;
  object-fit: contain;
}

.header__image-wrap {
  flex: 1;
  min-width: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}

.header__image {
  width: 100%;
  max-width: 520px;
  height: auto;
  max-width: none; /* remove o limite */
  display: block;
  position: relative;
  z-index: 2;
  margin-bottom: -6px;
  margin-right: -40px;
  transform: scale(1.7);
  transform-origin: bottom right;
}

.header__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(221, 218, 248, 0.8);
  z-index: 1;
}

.header__circle--top {
  width: 210px;
  height: 210px;
  top: -40px;
  left: 40px;
}

.header__circle--right {
  width: 220px;
  height: 220px;
  right: -90px;
  top: 52%;
  transform: translateY(-50%);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .header__container {
    padding: 32px 28px 0 28px;
    gap: 16px;
  }

  .header__title {
    font-size: 50px;
  }

  .header__image {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .header__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 0 24px;
  }

  .header__content {
    max-width: 100%;
  }

  .header__image-wrap {
    width: 100%;
    min-width: 100%;
    justify-content: center;
  }

  .header__image {
    max-width: 560px;
  }

  .header__circle--top {
    left: 50%;
    transform: translateX(-50%);
  }

  .header__circle--right {
    right: -70px;
    top: 58%;
    transform: translateY(-50%);
  }
}

@media (max-width: 640px) {
  .header {
    padding: 8px;
  }

  .header__container {
    padding: 24px 18px 0 18px;
    border-radius: 10px;
    min-height: auto;
  }

  .header__title {
    font-size: 40px;
    line-height: 0.95;
    letter-spacing: -1px;
  }

  .header__description {
    font-size: 13px;
    max-width: 100%;
  }

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

  .header__btn {
    width: 80%;
    justify-content: center;
  }

  .header__stores-buttons {
    gap: 6px;
  }

  .header__store-link img {
    height: 35px;
    width: auto;
  }

  .header__image {
    max-width: 100%;
  }

    .header__image-wrap {
    display: none;
  }

  .header__circle--top {
    width: 160px;
    height: 160px;
    top: -20px;
  }

  .header__circle--right {
    width: 150px;
    height: 150px;
    right: -55px;
  }
}

/* --- CSS BASE / DESKTOP --- */
.diferencial {
  padding: 40px 10px;
  background: #ffffff;
}

.diferencial__container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  position: relative; /* Necessário para posicionar as setas */
}

.diferencial__arrow {
  display: none; /* Escondido no desktop */
}

.diferencial__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.diferencial__card {
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.diferencial__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.diferencial__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  top: -40px;
}

.diferencial__title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.3;
  color: #1f2a44;
  margin-bottom: 12px;
  font-weight: 400;
    position: relative;
  top: -30px;
}

.diferencial__title strong {
  font-weight: 700;
}

.diferencial__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
    position: relative;
  top: -20px;
}

/* --- TABLET --- */
@media (max-width: 900px) {
  .diferencial__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- MOBILE --- */
@media (max-width: 640px) {
  .diferencial {
    padding: 40px 10px 80px 10px; /* Espaço extra embaixo para as setas */
  }

  .diferencial__grid {
    display: flex; /* Muda de grid para linha */
    gap: 12px;
    overflow-x: auto; /* Habilita o scroll lateral */
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none; /* Esconde scroll no Firefox */
  }

  .diferencial__grid::-webkit-scrollbar {
    display: none; /* Esconde scroll no Chrome/Safari */
  }

  .diferencial__card {
    min-width: 280px; /* Define largura dos cards no mobile */
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Estilização das Setas */
  .diferencial__arrow {
    display: flex;
    position: absolute;
    bottom: -60px; /* Posiciona abaixo da lista */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #8a80ff;
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  .diferencial__arrow--left {
    left: 38%;
  }

  .diferencial__arrow--right {
    right: 38%;
  }
}

.duvida1 {
  padding: 30px 20px 40px 20px;
  background: #ffffff;
}

.duvida1__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.duvida1__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.duvida1__content {
  max-width: 620px;
}

.duvida1__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  font-family: "Gelica", "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -1px;
}

.duvida1__title-highlight {
  font-size: 60px;
  color: #7a73ff;
}

.duvida1__title-dark {
  font-size: 60px;
  color: #111111;
  font-weight: 100;
}

.duvida1__description {
  max-width: 480px;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #0A121A;
}

.duvida1__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  max-width: 580px;
}

.duvida1__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 16px;
  border: 1px solid #8a80ff;
  border-radius: 999px;
  background: #f2f1ff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #374151;
  white-space: nowrap;
}

.duvida1__card {
  border: 1px solid #b7b0ff;
  border-radius: 8px;
  background: #f8f8fc;
  padding: 26px 24px;
}

.duvida1__card-title {
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 500;
  color: #1f2a44;
  font-weight: 600;
}

.duvida1__card-title span {
  color: #8a80ff;
}

.duvida1__card-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #334155;
}

/* TABLET */
@media (max-width: 900px) {
  .duvida1 {
    padding: 24px 10px 16px;
  }

  .duvida1__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .duvida1__content {
    max-width: 100%;
  }

  .duvida1__description {
    max-width: 100%;
  }

  .duvida1__tags {
    max-width: 100%;
  }

  .duvida1__card {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .duvida1 {
    padding: 22px 10px 22px 10px;
  }

  .duvida1__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .duvida1__content {
    max-width: 100%;
  }

  .duvida1__title {
    display: block;
    margin-bottom: 14px;
    line-height: 0.95;
    letter-spacing: -0.6px;
    max-width: 80%;
  }

  .duvida1__title-highlight,
  .duvida1__title-dark {
    display: inline;
    font-size: 27px;
  }

  .duvida1__description {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 90%;
  }

  .duvida1__tags {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-width: 100%;
  }

  .duvida1__tag {
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: left;
    width: auto;
    max-width: 100%;
  }

  .duvida1__card {
    width: 100%;
    padding: 26px 18px 18px;
    border-radius: 8px;
    margin: 0 auto;
  }

  .duvida1__card-title {
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .duvida1__card-title span {
    display: block;
  }

  .duvida1__card-text {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
  }
}

.duvida2 {
  padding: 20px 10px 40px 10px;
  background: #ffffff;
}

.duvida2__container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}

.duvida2__arrow {
  display: none;
}

.duvida2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.duvida2__card {
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 8px;
  padding: 18px 16px 16px;
  min-height: 185px;
  display: flex;
  flex-direction: column;
}

.duvida2__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.duvida2__time {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #8a80ff;
}

.duvida2__title {
  margin-bottom: 16px;
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 23px;
  line-height: 0.98;
  font-weight: 500;
  color: #1f2a44;
}

.duvida2__text {
  max-width: 180px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.32;
  color: #0A121A;
}

/* TABLET */
@media (max-width: 900px) {
  .duvida2 {
    padding: 24px 10px 16px;
  }

  .duvida2__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .duvida2__card {
    min-height: auto;
  }

  .duvida2__text {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .duvida2 {
    padding: 22px 10px 50px 10px;
  }

  .duvida2__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 16px;
  }

  .duvida2__grid::-webkit-scrollbar {
    display: none;
  }

  .duvida2__container {
    position: relative;
  }

  .duvida2__arrow {
    display: flex;
    position: absolute;
    bottom: 0%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #8a80ff;
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.9;
  }

  .duvida2__arrow--left {
    left: 42%;
    bottom: -50px;
  }

  .duvida2__arrow--right {
    right: 42%;
    bottom: -50px;
  }

  .duvida2__container {
    position: relative;
  }

  .duvida2__card {
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .duvida2__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .duvida2__time {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .duvida2__title {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .duvida2__text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
  }
}



.duvida3 {
  padding: 28px 10px 80px 10px;
  background: #ffffff;
}

.duvida3__container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}

.duvida3__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

/* BOX PADRÃO */
.duvida3__box {
  border-radius: 8px;
  padding: 22px 20px;
}

/* ESQUERDA */
.duvida3__box--left {
  background: #f8f8fc;
  border: 1px solid #ececf4;
}

.duvida3__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 500;
  color: #1f2a44;
  margin-bottom: 14px;
}

.duvida3__title span {
  display: block;
  color: #8a80ff;
}

.duvida3__text {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #0A121A;
  max-width: 560px;
}

/* DIREITA */
.duvida3__box--right {
  background: #f4f3ff;
  border: 1px solid #8a80ff;
}

.duvida3__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.duvida3__list li {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #374151;
  position: relative;
  padding-left: 14px;
}

/* bolinha */
.duvida3__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #8a80ff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.duvida3__list strong {
  color: #8a80ff;
  font-weight: 700;
}

/* TABLET */
@media (max-width: 900px) {
  .duvida3__grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .duvida3 {
    padding: 22px 10px 12px 10px;
  }

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

  .duvida3__box {
    padding: 20px 16px;
  }

  .duvida3__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .duvida3__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .duvida3__list li {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* --- SEÇÃO COMO FUNCIONA --- */
.como-funciona {
  padding: 80px 20px; /* Aumentei um pouco o respiro */
  background: #ffffff;
}

.como-funciona__container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.como-funciona__header {
  text-align: center;
  margin-bottom: 48px;
}

.como-funciona__title {
  font-family: "Gelica", serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
  color: #1f2a44;
}

.como-funciona__title span {
  display: block;
  color: #8a80ff;
  font-weight: 700;
}

/* Grid Desktop */
.como-funciona__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Estilo do Card */
.como-funciona__card {
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.como-funciona__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.como-funciona__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.como-funciona__card-title {
  font-family: "Gelica", serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  color: #1f2a44;
  margin-bottom: 16px;
}

.como-funciona__card-title strong {
  font-weight: 700;
}

.como-funciona__card-text, 
.como-funciona__card-note {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #4a5568;
}

/* Listas e Elementos Internos */
.como-funciona__highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  color: #15253f;
    font-size: 10px;
}

.como-funciona__highlight-item {
  display: flex;
  gap: 12px;
  background: #F3F4FF;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #f0efff;
}

.como-funciona__simple-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.como-funciona__simple-list li {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e8f0;
  color: #1f2a44;
}

.como-funciona__chat-box {
  background: #ece9ff;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin: 15px 0;
  color: #1f2a44;
}

.como-funciona__footer-chip {
  margin-top: auto; /* Empurra para o final do card */
  background: #dcd6ff;
  padding: 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #483d8b;
}

/* --- CONTROLES DO CARROSSEL (Setas) --- */
.como-funciona__controls {
  display: none; /* Escondido no Desktop */
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.como-funciona__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #8a80ff;
  background: transparent;
  color: #8a80ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.como-funciona__arrow:active {
  background: #8a80ff;
  color: white;
  transform: scale(0.95);
}

/* --- RESPONSIVO / CARROSSEL MOBILE --- */
@media (max-width: 1024px) {
  .como-funciona__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .como-funciona {
    padding: 60px 0; /* Remove padding lateral para o card encostar na borda se quiser */
  }

  .como-funciona__header {
    padding: 0 20px;
  }

  .como-funciona__title {
    font-size: 28px;
  }

  /* Transformação em Carrossel */
  .como-funciona__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 0 20px 20px; /* Padding lateral para o primeiro card não colar na borda */
    -webkit-overflow-scrolling: touch;
  }

  /* Esconde a barra de rolagem */
  .como-funciona__grid::-webkit-scrollbar {
    display: none;
  }

  .como-funciona__card {
    min-width: 85vw; /* Largura do card no mobile */
    scroll-snap-align: center;
  }

  .como-funciona__controls {
    display: flex; /* Mostra setas no mobile */
  }
}

.aviso {
  padding: 40px 20px;
  background: #ffffff;
}

.aviso__container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.aviso__box {
  background: #fbecde;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
}

.aviso__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 14px;
}

.aviso__title span {
  color: #e36a3c;
}

.aviso__text {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2f3747;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .aviso {
    padding: 24px 20px;
  }

  .aviso__box {
    padding: 24px 16px;
    border-radius: 10px;
  }

  .aviso__title {
    font-size: 36px;
    line-height: 1.2;
  }

  .aviso__text {
    font-size: 15px;
    line-height: 1.55;
  }
}

.fundadora {
  padding: 42px 28px 42px 28px;
  background: #ffffff;
}

.fundadora__container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

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

.fundadora__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid #8a80ff;
  border-radius: 999px;
  background: #f4f3ff;
  color: #1f2a44;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.fundadora__pill-icon {
  font-size: 15px;
  line-height: 1;
}

.fundadora__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 32px;
  line-height: 0.98;
  font-weight: 400;
  color: #1f2a44;
  margin-bottom: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.fundadora__title span {
  color: #8a80ff;
  font-weight: 500;
}

.fundadora__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #0A121A;
  margin-top: 10px;
}

.fundadora__content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.fundadora__media {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 340 / 420;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.fundadora__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #ddd;
}

.fundadora__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 42, 68, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.fundadora__play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #8a80ff;
  margin-left: 4px;
}

.fundadora__card {
  width: 100%;
  max-width: 360px;
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(31, 42, 68, 0.06);
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
}

.fundadora__card-title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 27px;
  line-height: 0.98;
  font-weight: 400;
  color: #1f2a44;
  margin-bottom: 18px;
}

.fundadora__card-title strong {
  display: block;
  font-weight: 700;
}

.fundadora__card-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #3f4a5a;
  margin-bottom: auto;
}

.fundadora__button {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 40px;
  padding: 0 16px;
  background: #8a80ff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.24);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.fundadora__button-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    position: relative;
  top: -8px; /* sobe o ícone */
}

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

@media (max-width: 900px) {
  .fundadora__content {
    max-width: 100%;
    align-items: center;
  }

  .fundadora__media {
    max-width: 360px;
    min-width: 360px;
  }

  .fundadora__video {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .fundadora {
    padding: 28px 4px 18px;
  }

  .fundadora__header {
    max-width: 100%;
    margin-bottom: 16px;
  }

    .fundadora__pill {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .fundadora__title {
    font-size: 27px;
    line-height: 1;
    max-width: 320px;
    margin: 0 auto 10px;
  }

  .fundadora__subtitle {
    font-size: 14px;
  }

  .fundadora__content {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 100%;
    padding-top: 10px;
  }

  .fundadora__media {
    max-width: 40%;
    min-width: 80%;
  }

  .fundadora__video {
    min-height: auto;
    aspect-ratio: 9 / 16;
  }

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

  .fundadora__card {
    max-width: 100%;
    padding: 20px 30px 40px;
    border-radius: 14px;
  }

  .fundadora__card-title {
    font-size: 42px;
    line-height: 0.98;
    margin-bottom: 18px;
    max-width: 340px;
    text-align: center;
  }

  .fundadora__card-text {
    font-size: 14px;
    line-height: 1.6;
        text-align: center;
  }

  .fundadora__button {
    display: block;          /* Transforma o botão em bloco */
  margin-left: auto;       /* Empurra da esquerda para o centro */
  margin-right: auto;      /* Empurra da direita para o centro */
  width: fit-content;      /* Faz o botão ter apenas o tamanho do texto/padding */
  display: flex;          /* Transforma o container em Flex */
  align-items: center;    /* Centraliza os filhos VERTICALMENTE */
    margin-top: 22px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 11px;
  }
}

.equipe {
  padding: 60px 28px 60px 28px;
  background: #ffffff;
}

.equipe__container {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.equipe__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
}

.equipe__content {
  max-width: 720px;
}

.equipe__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 300;
  color: #1f2a44;
  margin-bottom: 22px;
}

.equipe__title span {
  display: block;
  color: #8a80ff;
  font-weight: 500;
}

.equipe__text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.6;
  color: #0A121A;
  max-width: 300px;
  margin-bottom: 22px;
}

.equipe__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  background: #8a80ff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.24);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.equipe__button-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    position: relative;
  top: -8px; /* sobe o ícone */
}

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

.equipe__mascots {
  position: relative;
  min-height: 390px;
  width: 100%;
  max-width: 520px;
  background: radial-gradient(
    circle, 
    rgba(151, 71, 255, 0.25) 0%, 
    rgba(255, 255, 255, 0) 70%
  );
  /* Ajuste o 70% para aumentar ou diminuir a espalhação do brilho */
}

.equipe__item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.equipe__item--pipo {
  top: 0px;
  left: -40px;
}

.equipe__item--koalino {
  top: 34px;
  right: 10px;
}

.equipe__item--gigi {
  bottom: 0;
  left: 70px;
}

.equipe__image img {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
}

.equipe__item--koalino .equipe__image img {
  width: 140px;
}

.equipe__item--gigi .equipe__image img {
  width: 100px;
}

.equipe__name {
  margin-top: 6px;
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  color: #1f2a44;
}

/* TABLET */
@media (max-width: 900px) {
  .equipe__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 520px;
  }

  .equipe__content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .equipe__text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .equipe__button {
    justify-content: center;
  }

  .equipe__mascots {
    order: -1;
    margin: 0 auto;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .equipe {
    padding: 28px 10px 28px 10px;
  }

  .equipe__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .equipe__mascots {
    order: -1;
    min-height: auto;
    max-width: 260px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 18px;
    justify-items: center;
    margin: 0 auto;
  }
  

  .equipe__item {
    position: static;
  }

.equipe__item--gigi {
  grid-column: 1 / -1; /* ocupa as 2 colunas */
  justify-self: center; /* centraliza dentro do grid */
}

  .equipe__content {
    max-width: 100%;
    text-align: center;
  }

  .equipe__title {
    font-size: 28px;
 line-height: 1.2;
    max-width: 260px;
    margin: 0 auto 18px;
  }

  .equipe__text {
    font-size: 12px;
    line-height: 1.55;
    max-width: 280px;
    margin: 0 auto 20px;
  }

  .equipe__button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 11px;
  }

  .equipe__image img {
    width: 78px;
  }

  .equipe__item--koalino .equipe__image img {
    width: 92px;
  }

  .equipe__item--gigi .equipe__image img {
    width: 72px;
  }

  .equipe__name {
    font-size: 16px;
    margin-top: 4px;
  }
}

.especialidades {
  padding: 28px 10px 60px 28px;
  background: #ffffff;
}

.especialidades__container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.especialidades__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 1120px;
  margin: 0 auto;
}

.especialidades__card {
  background: #f8f8fc;
  border: 1px solid #e8e8f1;
  border-radius: 4px;
  padding: 14px 12px 14px;
  box-shadow: 0 3px 6px rgba(31, 42, 68, 0.10);
  min-height: 160px;
  display: flex;
  flex-direction: column;
}

.especialidades__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.especialidades__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  top: -40px; /* sobe o ícone */
}

.especialidades__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 500;
  color: #1f2a44;
  margin-bottom: 10px;
  max-width: 150px;
    position: relative;
  top: -20px; /* sobe o ícone */
}

.especialidades__text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.3;
  color: #0A121A;
  max-width: 160px;
    position: relative;
  top: -10px; /* sobe o ícone */
}

.especialidades__arrows {
  display: none;
}

/* TABLET */
@media (max-width: 1100px) {
  .especialidades__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .especialidades {
    padding: 22px 10px 54px 10px;
  }

  .especialidades__container {
    position: relative;
  }

  .especialidades__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 10px;
    max-width: 100%;
  }

  .especialidades__grid::-webkit-scrollbar {
    display: none;
  }

  .especialidades__card {
    min-width: 170px;
    max-width: 172px;
    min-height: 170px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 12px 10px 12px;
  }

  .especialidades__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 8px;
  }

.especialidades__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  top: -0px; /* sobe o ícone */
}

  .especialidades__title {
    font-size: 16px;
    line-height: 1.22;
    margin-bottom: 8px;
    max-width: 100%;
      position: relative;
  top: -0px; /* sobe o ícone */
  }

  .especialidades__text {
    font-size: 11px;
    line-height: 1.25;
    max-width: 100%;
      position: relative;
  top: -0px; /* sobe o ícone */
  }

  .especialidades__arrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }

  .especialidades__arrow {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #8a80ff;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
  }
}

.imprensa {
  padding: 42px 28px 80px 28px;
  background: #ffffff;
}

.imprensa__container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.imprensa__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.imprensa__card {
  position: relative;
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(31, 42, 68, 0.05);
  min-height: 390px;
  padding: 28px 22px 70px;
}

.imprensa__card-content {
  max-width: 420px;
}

.imprensa__card-title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 30px;
  line-height: 0.95;
  font-weight: 400;
  color: #1f2a44;
  margin-bottom: 22px;
}

.imprensa__card-title strong {
  display: block;
  font-weight: 700;
}

.imprensa__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.imprensa__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #d9dded;
}

.imprensa__item-icon {
  color: #8a80ff;
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.imprensa__item-content strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: #1f2a44;
  margin-bottom: 3px;
}

.imprensa__item-content p {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: #15253F;
}

.imprensa__mascot {
  position: absolute;
  left: 12px;
  bottom: -14px;
  width: 70px;
  height: auto;
}

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

.imprensa__content {
  max-width: 460px;
}

.imprensa__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  color: #1f2a44;
  margin-bottom: 16px;
  max-width: 280px;
}

.imprensa__title span {
  color: #8a80ff;
  font-weight: 700;
}

.imprensa__text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #0A121A;
  max-width: 420px;
  margin-bottom: 18px;
}

.imprensa__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 420px;
}

.imprensa__logo-card {
  height: 65px;
  background: #ffffff;
  border: 1px solid #ececf4;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(31, 42, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.imprensa__logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 42, 68, 0.12);
}

.imprensa__logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.imprensa__arrows {
  display: none;
}

.imprensa__content {
  max-width: 460px;
  min-width: 0;
}

/* TABLET */
@media (max-width: 900px) {
  .imprensa__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 520px;
  }

  .imprensa__content {
    max-width: 100%;
  }

  .imprensa__text,
  .imprensa__logos {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 640px) {

  .imprensa {
    padding: 28px 15px;
    overflow: hidden;
  }

  .imprensa__container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .imprensa__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 100%;
  }

  .imprensa__content {
    max-width: 100%;
    min-width: 0; /* importante */
  }

  .imprensa__card {
    min-height: auto;
    padding: 24px 18px 68px;
    border-radius: 14px;
  }

  .imprensa__card-content {
    max-width: 100%;
  }

  .imprensa__card-title {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .imprensa__item-content strong {
    font-size: 12px;
  }

  .imprensa__item-content p {
    font-size: 11px;
  }

  .imprensa__mascot {
    width: 80px;
    left: 10px;
    bottom: 0;
  }

  .imprensa__title {
    font-size: 36px;
    max-width: 260px;
    margin-bottom: 14px;
  }

  .imprensa__text {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .imprensa__logos {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 4px 2px;
    scrollbar-width: none;
  }

  .imprensa__logos::-webkit-scrollbar {
    display: none;
  }

  .imprensa__logo-card {
      min-width: 132px;
      max-width: 132px;
      width: 132px;
      height: 58px;
      flex-shrink: 0; /* Isso impede que o flex esmague a logo */
      scroll-snap-align: start;
      display: flex; /* Garante que a logo fique centralizada no card */
      align-items: center;
      justify-content: center;
  }

  .imprensa__logo-card img {
      max-width: 90% !important; /* Dá um respiro para a logo não colar na borda */
      max-height: 80% !important;
      width: auto !important;
      height: auto !important;
      display: block;
      object-fit: contain;
  }

  .imprensa__arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
  }

  .imprensa__arrow {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #8a80ff;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
  }
}

.historias {
  padding: 42px 28px 82px 28px;
  background: #ffffff;
}

.historias__container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.historias__header {
  text-align: center;
  margin-bottom: 70px;
}

.historias__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 34px;
  line-height: 0.98;
  font-weight: 400;
  color: #1f2a44;
}

.historias__title span {
  display: block;
  color: #8a80ff;
  font-weight: 600;
}

.historias__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.historias__card {
  position: relative;
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 6px;
  padding: 38px 16px 14px;
  min-height: 172px;
  display: flex;
  flex-direction: column;
}

.historias__icon {
  position: absolute;
  top: -28px;
  left: 16px;
  width: 58px;
  height: 58px;
}

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

.historias__text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #3f4a5a;
  margin-bottom: 18px;
}

.historias__author {
  margin-top: auto;
}

.historias__author strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  color: #1f2a44;
}

.historias__author span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: #0A121A;
}

/* TABLET */
@media (max-width: 900px) {
  .historias__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .historias {
    padding: 28px 10px;
  }

  .historias__header {
    margin-bottom: 50px;
  }

  .historias__title {
    font-size: 28px;
    line-height: 1;
  }

  .historias__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }

  .historias__card {
    min-height: auto;
    padding: 42px 16px 16px;
  }

  .historias__icon {
    top: -24px;
    left: 14px;
    width: 54px;
    height: 54px;
  }

  .historias__text {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .historias__author strong,
  .historias__author span {
    font-size: 13px;
    line-height: 1.4;
  }
}

.planos {
  padding: 42px 28px 42px 28px;
  background: #ffffff;
}

.planos__container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

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

.planos__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 60px;
  line-height: 0.98;
  font-weight: 400;
  color: #1f2a44;
  margin-bottom: 14px;
}

.planos__title span {
  color: #8a80ff;
  font-weight: 600;
}

.planos__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #0A121A;
  max-width: 650px;
  margin: 0 auto;
}

.planos__infos {
  max-width: 920px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.planos__info {
  border-radius: 8px;
  padding: 16px 16px 14px;
}

.planos__info strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #1f2a44;
  margin-bottom: 6px;
}

.planos__info p,
.planos__info li {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #3f4a5a;
}

.planos__info ul {
  margin-top: 8px;
  padding-left: 18px;
}

.planos__info--purple {
  background: #f3f1ff;
  border: 1px solid #d7d0ff;
}

.planos__info--green {
  background: #f1f4b5;
  border: 1px solid #d7dbb5;
}

.planos__cards {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.planos__card {
  position: relative;
  border-radius: 8px;
  padding: 50px 50px 50px 50px;
  display: flex;
  flex-direction: column;
  min-height: 540px;
}

.planos__card--free {
  background: #fcfcff;
  border: 1px solid #ececf4;
}

.planos__card--premium {
  background: #eeebff;
  border: 1px solid #a99cff;
}

.planos__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
}

.planos__badge--free {
  background: #eeefd8;
  color: #1f2a44;
  border: 1px solid #d8dbb4;
}

.planos__badge--premium {
  background: #dcd6ff;
  color: #1f2a44;
  border: 1px solid #b6acff;
}

.planos__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 18px;
  color: #1f2a44;
}

.planos__currency {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}

.planos__value {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 54px;
  line-height: 0.9;
  font-weight: 400;
}

.planos__period {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}

.planos__description {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #3f4a5a;
  max-width: 310px;
  margin-bottom: 18px;
}

.planos__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 18px;
}

.planos__features li {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #1f2a44;
  padding: 10px 0;
  border-bottom: 1px dashed #d9dded;
  font-weight: 600;
}

.planos__features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%; /* Garante que ocupe a largura do card */
}

.planos__feature-item {
  display: flex;
  align-items: flex-start; /* Alinha o ícone no topo caso o texto tenha 2 linhas */
  gap: 12px;               /* Espaço entre ícone e texto */
  padding: 12px 0;         /* Espaço interno para a linha não colar no texto */
  border-bottom: 1px dashed #BDC4FF; /* A linha tracejada da imagem */
}

/* Remove a linha do último item para ficar mais elegante (opcional) */
.planos__feature-item:last-child {
  border-bottom: none;
}

.planos__feature-item img {
  width: 15px;       /* Ajuste conforme o tamanho do seu ícone */
  height: 15px;
  flex-shrink: 0;    /* Impede o ícone de amassar se o texto for longo */
  margin-top: 2px;   /* Ajuste fino para alinhar o ícone com a primeira linha de texto */
}

.planos__feature-item span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;  /* Texto mais "gordinho" como na imagem */
  color: #1F2A44;    /* Cor azul escura da imagem */
  line-height: 1.4;  /* Espaçamento entre linhas do texto */
}

.planos__ideal {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #0A121A;
  max-width: 315px;
  margin-bottom: 18px;
}

.planos__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1f2a44;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.planos__link strong {
  font-weight: 700;
}

.planos__phones {
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 180px;
  height: 150px;
  pointer-events: none;
  transform: scale(1.2);
  transform-origin: bottom right;

}

.planos__phone {
  position: absolute;
  display: block;
  object-fit: contain;
  height: auto;
  background: radial-gradient(
    circle, 
    rgba(151, 71, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0) 70%
  );
  /* Ajuste o 70% para aumentar ou diminuir a espalhação do brilho */
}

.planos__phone--back {
  width: 150px;
  right: 30px;
  bottom: 0px;
  transform: rotate(-8deg);
    transform: scale(1.8);
  transform-origin: bottom right;
}

.planos__phone--front {
  width: 104px;
  right: 0;
  bottom: 0;
  transform: rotate(-8deg);
    transform: scale(1.4);
  transform-origin: bottom right;
}

.planos__highlight {
  margin-top: auto;
  background: #d7d0ff;
  border: 1px solid #beb2ff;
  border-radius: 6px;
  padding: 14px 14px 12px;
  margin-bottom: 16px;
  margin-top: 16px;
}

.planos__highlight strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: #1f2a44;
  margin-bottom: 4px;
}

.planos__highlight p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #3f4a5a;
}

.planos__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 44px;
  padding: 0 16px;
  background: #8a80ff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.24);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.planos__button-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    position: relative;
  top: -8px; /* sobe o ícone */
}

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

/* TABLET */
@media (max-width: 900px) {
  .planos__cards {
    grid-template-columns: 1fr;
  }

  .planos__card {
    min-height: auto;
  }

  .planos__description,
  .planos__ideal {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .planos {
    padding: 28px 10px;
  }

  .planos__header {
    margin-bottom: 22px;
  }

  .planos__title {
    font-size: 34px;
    line-height: 1;
    
  }

  .planos__subtitle {
    font-size: 13px;
    line-height: 1.55;
  }

  .planos__infos {
    margin-bottom: 20px;
  }

  .planos__info {
    padding: 14px;
  }

  .planos__cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .planos__card {
    min-height: auto;
    padding: 18px 14px 18px;
  }

  .planos__badge {
    min-height: 30px;
    font-size: 10px;
    margin-bottom: 14px;
  }

  .planos__currency {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .planos__value {
    font-size: 38px;
  }

  .planos__period {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .planos__description {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .planos__features li {
    font-size: 12px;
    padding: 9px 0;
  }

  .planos__ideal {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .planos__link {
    font-size: 12px;
    margin: 0px 0px 60px;
  }

.planos__phones {
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 180px;
  height: 150px;
  pointer-events: none;
  transform: scale(1.5);
  transform-origin: bottom right;

}

.planos__phone {
  position: absolute;
  display: block;
  object-fit: contain;
  height: auto;
  background: radial-gradient(
    circle, 
    rgba(151, 71, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0) 70%
  );
  /* Ajuste o 70% para aumentar ou diminuir a espalhação do brilho */
}

.planos__phone--back {
  width: 150px;
  right: 10px;
  bottom: 10px;
  transform: rotate(-8deg);
    transform: scale(0.5);
  transform-origin: bottom right;
}

.planos__phone--front {
  width: 104px;
  right: 0;
  bottom: 0;
  transform: rotate(-8deg);
    transform: scale(0.4);
  transform-origin: bottom right;
}

  .planos__highlight {
    padding: 12px;
    margin-bottom: 14px;
  }

  .planos__button {
    min-height: 42px;
    font-size: 11px;
    width: 100%;
  }
}

.faq {
  padding: 42px 28px 42px 28px;
  background: #ffffff;
}

.faq__container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.faq__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 34px;
  line-height: 0.98;
  font-weight: 400;
  color: #1f2a44;
}

.faq__title span {
  display: block;
  color: #8a80ff;
  font-weight: 700;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: #f8f8fc;
  border: 1px solid #ececf4;
  border-radius: 4px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq__question-left {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.faq__question-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.35;
  color: #1f2a44;
  font-weight: 700;
}

.faq__arrow {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1;
  color: #1f2a44;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq__answer p {
  padding: 0 30px 14px 42px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #0A121A;
}

.faq__item.is-open .faq__arrow {
  transform: rotate(90deg);
}

.faq__item.is-open .faq__answer {
  max-height: 220px;
}

/* MOBILE */
@media (max-width: 640px) {
  .faq {
    padding: 28px 10px;
  }

  .faq__header {
    margin-bottom: 22px;
  }

  .faq__title {
    font-size: 34px;
    line-height: 1;
    max-width: 320px;
    margin: 0 auto;
  }

  .faq__list {
    max-width: 100%;
    gap: 10px;
  }

  .faq__question {
    padding: 12px 12px;
    gap: 12px;
  }

  .faq__question-left {
    gap: 8px;
  }

  .faq__icon {
    width: 18px;
    height: 18px;
  }

  .faq__question-text {
    font-size: 13px;
    line-height: 1.35;
  }

  .faq__arrow {
    font-size: 14px;
  }

  .faq__answer p {
    padding: 0 12px 14px 38px;
    font-size: 13px;
    line-height: 1.55;
  }
}

.cta-final {
  padding: 42px 28px;
  background: #ffffff;
}

.cta-final__container {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  background: #eeedf8;
  border-radius: 14px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 36px;
  overflow: hidden; /* 🔒 mantém círculos dentro */
  position: relative;
}

.cta-final__content {
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-left: 130px;
}

.cta-final__title {
  font-family: "Gelica", "Times New Roman", serif;
  font-size: 28px;
  line-height: 0.96;
  font-weight: 400;
  color: #7a73ff;
  margin-bottom: 22px;
  max-width: 380px;
}

.cta-final__title span {
  font-weight: 700;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.cta-final__btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
}

.cta-final__btn--primary {
  background: #8a80ff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.22);
}

.cta-final__btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    position: relative;
  top: -8px; /* sobe o ícone */
}

.cta-final__btn-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.cta-final__btn--secondary {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d8d7ec;
  min-width: 124px;
}

.cta-final__btn-circle {
  width: 10px;
  height: 10px;
  border: 1.5px solid #9ca3af;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.cta-final__note {
  font-size: 11px;
  color: #666d7a;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.cta-final__stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-final__stores-label {
  font-size: 12px;
  font-weight: 700;
  color: #303544;
  font-family: "Inter", sans-serif;
  margin-bottom: 6px;
}

.cta-final__stores-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-final__store-link {
  display: inline-flex;
  line-height: 0;
}

.cta-final__store-link img {
  width: auto;
  height: 26px;
  display: block;
  object-fit: contain;
}

.cta-final__image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 270px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.cta-final__image {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transform: rotate(-0deg);
  margin-bottom: -34px;
  position: relative;
  transform: scale(1.2);
}

.cta-final__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(221, 218, 248, 0.9);
  z-index: -1;
}

.cta-final__circle--top {
  width: 170px;
  height: 170px;
  top: -56px;
  left: 20px;
}

.cta-final__circle--bottom {
  width: 180px;
  height: 180px;
  right: -10px;
  bottom: -80px;
}

/* TABLET */
@media (max-width: 900px) {
  .cta-final__container {
    padding: 30px 24px;
    gap: 20px;
  }

  .cta-final__content {
    margin-left: 0;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .cta-final {
    padding: auto 100px;
  }

  .cta-final__container {
    min-height: auto;
    padding: 24px 14px 0;
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cta-final__content {
    max-width: 100%;
    margin-left: 0;
  }

  .cta-final__title {
    font-size: 38px;
    line-height: 0.95;
    max-width: 280px;
    margin-bottom: 18px;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-final__btn {
    width: 100%;
    min-height: 42px;
    font-size: 11px;
    justify-content: center;
  }

  .cta-final__note {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .cta-final__stores-label {
    font-size: 12px;
  }

  .cta-final__store-link img {
    height: 26px;
  }

  .cta-final__image-wrap {
    max-width: 100%;
    min-height: auto;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .cta-final__image {
    max-width: 170px;
    margin-top: 0;
    margin-bottom: -0px;
    transform: rotate(0deg);
  }

  .cta-final__circle--top {
    width: 120px;
    height: 120px;
    top: -20px;
    left: auto;
    right: 40px;
  }

  .cta-final__circle--bottom {
    width: 120px;
    height: 120px;
    left: 40px;
    bottom: -10px;
  }
}

.footer-kz {
  padding: 42px 28px 28px;
  background: #ffffff;
}

.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-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8a80ff;
  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-family: "Inter", sans-serif;
  font-size: 12px;
  color: #0A121A;
  transition: color 0.2s ease;
}

.footer-kz__column a:hover {
  color: #1f2a44;
}

.footer-kz__divider {
  margin: 28px 0;
  height: 1px;
  background: #ececf4;
}

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

.footer-kz__address {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #0A121A;
  margin-bottom: 16px;
}

.footer-kz__address a {
  color: #0A121A;
  text-decoration: none;
}

.footer-kz__copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #6b7280;
}

/* MOBILE */
@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__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

  .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__address {
    font-size: 12px;
    line-height: 1.5;
  }

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