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

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

a {
  text-decoration: none;
}


.navbar__nav {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ══════════════════════════════════════════════════════
   HERO — TERMOS DE USO
══════════════════════════════════════════════════════ */
.hero-termos {
  --ht-purple: #A99EF7;
  background: var(--bg-site);
  padding: 56px 24px 40px;
}

.hero-termos__container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.hero-termos__mascote {
  width: 96px;
}

.hero-termos__mascote img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-termos__title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ht-purple);
  letter-spacing: -0.01em;
}

.hero-termos__sub {
  font-size: 14.5px;
  line-height: 22px;
  color: var(--dark);
  opacity: .9;
}

.hero-termos__pill {
  display: inline-block;
  border: 1px solid var(--ht-purple);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 13.5px;
  color: var(--dark);
  margin-top: 6px;
}

.hero-termos__timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 78px;
  padding-top: 32px;
  width: 100%;
}

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

.hero-termos__dot--1 { background: #8C82FC; }
.hero-termos__dot--2 { background: #4AA3E5; }
.hero-termos__dot--3 { background: #16E092; }
.hero-termos__dot--4 { background: #F2C94C; }
.hero-termos__dot--5 { background: #F5A24B; }
.hero-termos__dot--6 { background: #F4736E; }
.hero-termos__dot--7 { background: #EF5B5B; }
.hero-termos__dot--8 { background: #FBD5DF; }

/* ══════════════════════════════════════════════════════
   CORPO DOS TERMOS
══════════════════════════════════════════════════════ */
.termos {
  --tr-coral: #F4736E;
  background: var(--bg-site);
  padding: 24px 24px 80px;
}

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

.termos__section {
  margin-bottom: 52px;
}

.termos__section:last-child {
  margin-bottom: 0;
}

.termos__heading {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.termos__heading em {
  font-style: normal;
  color: var(--tr-coral);
}

.termos__text {
  font-size: 14.5px;
  line-height: 22px;
  color: var(--dark);
  opacity: .9;
  margin-bottom: 14px;
}

.termos__text:last-child {
  margin-bottom: 0;
}

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

/* alíneas (a), (b), (c) — sem bullet, coladas na cláusula acima */
.termos__alineas {
  list-style: none;
  margin: -8px 0 14px;
  padding: 0;
  font-size: 14.5px;
  line-height: 22px;
  color: var(--dark);
  opacity: .9;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.termos__link {
  color: var(--dark);
  text-decoration: underline;
}

/* card de contato */
.termos__contato {
  background: var(--blue-bg2);
  border-radius: 16px;
  padding: 36px 40px 40px;
  margin-top: 56px;
}

.termos__contato-title {
  font-family: "Gelica", "DM Serif Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.termos__contato-label {
  font-size: 14.5px;
  line-height: 22px;
  color: var(--dark);
  margin-bottom: 16px;
}

.termos__contato-label strong {
  font-weight: 700;
}

.termos__contato-info {
  font-size: 13.5px;
  line-height: 21px;
  color: var(--grey);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-termos {
    padding: 40px 20px 32px;
  }

  .hero-termos__mascote {
    width: 72px;
  }

  .hero-termos__title {
    font-size: 32px;
  }

  .hero-termos__timeline {
    gap: 22px;
    padding-top: 24px;
  }

  .hero-termos__dot {
    width: 7px;
    height: 7px;
  }

  .termos {
    padding: 16px 20px 56px;
  }

  .termos__section {
    margin-bottom: 40px;
  }

  .termos__heading {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .termos__text,
  .termos__alineas {
    font-size: 13.5px;
    line-height: 20px;
  }

  .termos__contato {
    padding: 28px 24px 32px;
    margin-top: 44px;
  }

  .termos__contato-title {
    font-size: 24px;
  }
}