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

body, html {
  overflow-x: hidden;
  width: 100%;
}

:root {
  /* CORES TEMA LIGHT (Padrão) */
  --bg-site: #ffffff;
  --bg-header-container: #eeedf8;
  --bg-fundo-card: rgba(235, 237, 255, 0.15);
  --bg-fundo-card-claro: rgba(30, 64, 175, 0.05);
  --bg-fundo-card-claro-escuro: rgba(30, 64, 175, 0.2);
  --bg-fundo-card2: rgba(140, 130, 252, 0.15);
  --bg-fundo-processo__step: rgba(140, 130, 252, 0.15);
  --bg--fundo--verde: rgba(16, 185, 129, 0.07);
  --text-fundo-processo__step: rgba(140, 130, 252, 1);
  --bg-fundo-card-escuro: rgba(140, 130, 252, 0.15);
  --bg-fundo-section-rodape: rgba(30, 64, 175, 0.1);
  --bg-fundo-section-rodape--card: rgba(30, 64, 175, 0.05);
  --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);
}

/* CORES TEMA DARK (Ativado pelo seu JS) */
[data-theme="dark"] {
  --bg-site: #15253F;
  --bg-header-container: #113663;
  --bg-fundo-card: rgba(235, 237, 255, 0.05);
  --bg-fundo-card-claro: rgba(0, 128, 255, 0.1);
  --bg-fundo-card-claro-escuro: rgba(0, 128, 255, 0.5);
  --bg-fundo-card2: rgba(0, 128, 255, 0.05);
  --bg-fundo-processo__step: rgba(140, 130, 252, 0.15);
  --bg--fundo--verde: rgba(16, 185, 129, 0.07);
  --text-fundo-processo__step: rgba(140, 130, 252, 1);
  --bg-fundo-card-escuro: #EBEAFF;
  --bg-fundo-section-rodape: rgba(30, 64, 175, 0.1);
  --bg-fundo-section-rodape--card: rgba(30, 64, 175, 0.2);
  --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: #303546;
  --border--roxa-azul: rgba(0, 128, 255, 0.5);
  --border--transparente--cinza: rgba(76, 76, 76, 1);
  --purple: rgba(158, 163, 230, 1);
}

/* --- 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: var(--bg-site);
  padding: 18px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.navbar__brand {
  flex-shrink: 0;
}

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

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

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

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

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

.navbar__cta {
  min-height: 48px;
  padding: 0 38px;
  background: var(--header-title);
  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);
  border-radius: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.navbar-mobile__close {
  width: 36px;
  height: 36px;
  border: 1px solid #d8d7ec;
  border-radius: 8px;
  background: var(--bg-fundo-card);
  color: var(--navbar--normal);
  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: var(--navbar--normal);
  padding: 14px 12px;
  border-radius: 10px;
}

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

.navbar-mobile__cta {
  margin-top: 18px;
  min-height: 48px;
  background: var(--header-title);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  font-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: 70px 0px 10px 0px;
background: var(--bg-site);
}

.header__container {
  max-width: 1380px; /* Equivalente ao max-w-7xl */
  margin: 40px auto;    /* Centraliza o bloco na tela */
  background: var(--bg-header-container);
  border-radius: 12px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  overflow: visible; /* Mantém a cabeça saindo por cima */
}

.header__content {
  width: 100%;
  max-width: 600px; /* Limita o texto para não bater na modelo */
  z-index: 2;
  position: relative;
  padding: 3rem;
}

.header__eyebrow {
  display: inline-block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-note);
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
}

.header__title {
  font-size: 44px;
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -1.8px;
  color: var(--header-title);
  margin-bottom: 18px;
  font-family: "Gelica", "Times New Roman", serif;
}

.header__title strong {
  font-weight: 500;
}

.header__description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navbar--normal);
  max-width: 540px;
  margin-bottom: 35px;
  font-family: "Inter", sans-serif;
}

.header__description strong {
  color: var(--header-title);
  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: var(--header-title);
  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: var(--navbar--normal);
  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__note2 {
  font-size: 11px;
  color: var(--navbar--normal);
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    margin-top: 20px;
}

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

  .header__content {
    width: 100%;
    max-width: 600px; /* Limita o texto para não bater na modelo */
    z-index: 2;
    position: relative;
    padding: 2rem;
  }
}

.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 {
  position: absolute; /* Ela sai do meio do texto e flutua */
  right: 0px;       /* Faz ela vazar para a direita do container azul */
  bottom: 0;          /* Gruda no fundo */
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  pointer-events: none; /* Evita que a imagem bloqueie cliques em botões */

}

.header__image {
  height: 130%;       /* Faz ela ser 30% maior que o container para vazar no topo */
  width: auto;        /* Mantém a proporção */
  max-width: none;
  transform: scale(1); /* Não precisamos mais de scale agressivo */
  object-fit: contain;
  object-position: bottom right;
}

@media (max-width: 1100px) {
  .header__image {
    height: 100%;
    right: -2%;
    transform: scale(1);
  }
}

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

}

@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: 100%;
    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;
  }

}

/* --- SEÇÃO CALCULADORA --- */
.calculadora {
  padding: 40px 20px;
  background: var(--bg-site);
}

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

.calculadora__mobile-header { display: none; }

.calculadora__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.calculadora__card {
  background: var(--bg-fundo-card);
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.calculadora__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calculadora__label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--navbar--normal);
  font-weight: 500;
}

.calculadora__tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: var(--text-note);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.calculadora__value {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--navbar--normal);
  margin-bottom: 35px;
  line-height: 1;
}

.calculadora__value small {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-note);
  margin: 0 4px;
}

/* --- ESTILIZAÇÃO DO INPUT RANGE --- */
.calculadora__range-wrapper {
  position: relative;
  width: 100%;
}

.calculadora__range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px; /* Aumentei um pouquinho pra linha ficar mais visível */
  border-radius: 2px;
  outline: none;
  background: var(--border--transparente--cinza); /* Cor padrão caso o JS falhe */
  margin: 15px 0;
}

/* Bolinha no Chrome, Safari, Edge */
.calculadora__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--header-title);
  border: 3px solid var(--bg-site);
  box-shadow: 0 0 0 2px var(--header-title);
  cursor: pointer;
  transition: transform 0.1s;
}

.calculadora__range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Bolinha no Firefox */
.calculadora__range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--header-title);
  border: 3px solid var(--bg-site);
  box-shadow: 0 0 0 2px var(--header-title);
  cursor: pointer;
}

.calculadora__range-labels {
  display: flex;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  color: var(--text-note);
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- FOOTER --- */
.calculadora__footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.calculadora__note {
  order: 1;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-note);
  line-height: 1.6;
  max-width: 900px;
}

.calculadora__btn {
  order: 2;
  background: #1e40af; 
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 18px 40px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(30, 64, 175, 0.2);
  transition: transform 0.2s, background 0.2s;
}

.calculadora__btn:hover { background: #17328a; transform: translateY(-2px); }
.calculadora__btn .mobile-text { display: none; }

/* --- MOBILE --- */
@media (max-width: 768px) {
  .calculadora { padding: 60px 20px; }
  .calculadora__mobile-header {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-note);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
  }
  .calculadora__grid { grid-template-columns: 1fr; gap: 0; }
  .calculadora__card {
    background: transparent;
    border: none;
    padding: 24px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border--transparente--cinza);
  }
  .calculadora__card:first-child { padding-top: 0; }
  .calculadora__card:last-child { border-bottom: none; }
  .calculadora__value { font-size: 36px; margin-bottom: 25px; }
  .calculadora__footer { gap: 24px; margin-top: 40px; }
  .calculadora__note { order: 2; font-size: 12px; text-align: left; }
  .calculadora__btn { order: 1; width: 100%; padding: 16px; }
  .calculadora__btn .desktop-text { display: none; }
  .calculadora__btn .mobile-text { display: inline; }
}

/* --- SEÇÃO O PROBLEMA (Relatório) --- */
.relatorio {
  padding: 80px 20px 40px;
  background: var(--bg-site);
}

.relatorio__container {
  max-width: 1040px;
  margin: 0 auto;
}

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

.relatorio__eyebrow {
  display: none; /* Escondido no Desktop */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-note);
  margin-bottom: 12px;
}

.relatorio__title {
  font-family: "Gelica", serif;
  font-size: 46px;
  font-weight: 400;
  color: var(--header-title);
  line-height: 1.1;
  margin-bottom: 24px;
}

.relatorio__title strong {
  font-weight: 700;
}

.relatorio__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--navbar--normal);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

.relatorio__wrapper {
  position: relative;
}

/* Grid (Desktop) */
.relatorio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.relatorio__card {
  background: var(--bg-fundo-card);
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.03); /* Sombra super leve */
  display: flex;
  flex-direction: column;
}

.relatorio__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.relatorio__card-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.relatorio__card-num {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--header-title);
}

.relatorio__card-title {
  font-family: "Gelica", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navbar--normal);
}

.relatorio__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lista Pontilhada */
.relatorio__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.relatorio__list li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navbar--normal);
  padding: 16px 0 16px 20px;
  /* Linha pontilhada azul clarinha */
  border-bottom: 1.5px dotted rgba(30, 64, 175, 0.3);
  line-height: 1.5;
}

/* Bolinha da lista */
.relatorio__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px; /* Ajuste fino para alinhar ao centro da primeira linha */
  width: 5px;
  height: 5px;
  background-color: var(--header-title);
  border-radius: 50%;
}

/* Oculta as setas no Desktop */
.relatorio__arrow {
  display: none;
}

/* Linha inferior de fechamento */
.relatorio__bottom-line {
  height: 1.5px;
  width: 100%;
  background-color: var(--header-title);
  opacity: 0.5;
  margin-top: 20px;
}

/* --- RESPONSIVO MOBILE --- */
@media (max-width: 900px) {
  .relatorio {
    padding: 60px 20px 80px; /* Mais padding inferior para as setas */
  }

  .relatorio__eyebrow {
    display: block;
  }

  .relatorio__title {
    font-size: 32px;
  }

  .relatorio__subtitle {
    font-size: 14px;
  }

  /* Transforma em carrossel arrastável */
  .relatorio__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
  }

  .relatorio__grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .relatorio__card {
    min-width: 85vw; /* Ocupa quase a tela toda */
    scroll-snap-align: center;
    padding: 30px 20px;
  }

  .relatorio__card-title {
    font-size: 20px;
  }

  /* Exibe as setas de navegação */
  .relatorio__arrow {
    display: flex;
    position: absolute;
    bottom: -30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--header-title);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
  }

  .relatorio__arrow--left { left: 35%; }
  .relatorio__arrow--right { right: 35%; }
}

/* --- SEÇÃO ESTATÍSTICAS --- */
.estatisticas {
  padding: 20px 20px;
  background: var(--bg-site);
}

.estatisticas__container {
  max-width: 1040px;
  margin: 0 auto;
}

/* Grid (Desktop) - 3 colunas */
.estatisticas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

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

.estatisticas__icon {
  margin-bottom: 24px;
  color: var(--navbar--normal);
}

.estatisticas__value {
  font-family: "Gelica", serif;
  font-size: 62px;
  font-weight: 700;
  color: var(--navbar--normal);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px; /* Deixa os números levemente mais juntos */
  display: flex;
  align-items: baseline;
}

.estatisticas__value span {
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--text-note); /* Deixa a unidade mais clarinha (cinza) */
  margin-left: 4px;
  letter-spacing: normal;
}

.estatisticas__text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--navbar--normal);
  margin-bottom: 24px;
  flex-grow: 1; /* Empurra a fonte (source) para baixo se o texto for curto */
}

.estatisticas__source {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-note);
}

/* Linha inferior azul */
.estatisticas__divider {
  width: 100%;
  height: 2px;
  background-color: var(--header-title);
  opacity: 0.6;
}

/* --- RESPONSIVO MOBILE E TABLET --- */
@media (max-width: 900px) {
  .estatisticas__grid {
    gap: 30px;
  }
  
  .estatisticas__value {
    font-size: 56px;
  }

  .estatisticas__value span {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .estatisticas {
    padding: 00px 40px;
    background: var(--bg-site);
  }

  /* Altera para 1 coluna empilhada */
  .estatisticas__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .estatisticas__item {
    align-items: center;
    text-align: center;
  }

  .estatisticas__text {
    max-width: 270px;
    align-items: center;
    text-align: center;
  }
  
  .estatisticas__divider {
    margin-top: 10px;
  }
}

/* --- SEÇÃO COMO FUNCIONA (Camadas) --- */
.camadas {
  padding: 80px 20px;
  background: var(--bg-site);
}

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

.camadas__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.camadas__eyebrow {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--navbar--normal);
  margin-bottom: 16px;
}

.camadas__title {
  font-family: "Gelica", serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--header-title);
  line-height: 1.15;
  margin-bottom: 20px;
}

.camadas__title-highlight {
  font-weight: 400; /* Deixa a segunda parte do título mais fina */
  display: block; /* Força a quebra de linha natural */
}

.camadas__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--navbar--normal);
  line-height: 1.6;
}

.camadas__wrapper {
  position: relative;
}

/* Grid (Desktop) */
.camadas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.camadas__card {
  background: var(--bg-fundo-card);
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 12px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.camadas__card:hover {
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.05);
  transform: translateY(-2px);
}

.camadas__icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.camadas__card-title {
  font-family: "Gelica", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navbar--normal);
  margin-bottom: 16px;
}

.camadas__card-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--navbar--normal);
  margin-bottom: 30px;
}

/* Tag no rodapé do card - usa margin-top: auto para grudar embaixo */
.camadas__card-tag {
  margin-top: auto;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af; /* Cinza claro */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Oculta as setas no Desktop */
.camadas__arrow {
  display: none;
}

/* --- RESPONSIVO MOBILE --- */
@media (max-width: 900px) {
  .camadas {
    padding: 60px 20px 00px; /* Mais espaço embaixo para as setas */
  }

  .camadas__header {
    max-width: 80%;
  }

  .camadas__title {
    font-size: 32px;
  }

  .camadas__title-highlight {
    display: inline; /* Volta para a mesma linha no mobile, se couber */
  }

  .camadas__subtitle {
    font-size: 14px;
    text-align: center;
  }

  /* Transforma o grid em carrossel horizontal */
  .camadas__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Esconde scroll no Firefox */
    -webkit-overflow-scrolling: touch; /* Rolagem suave no iOS */
  }

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

  /* Define o tamanho fixo dos cards no mobile */
  .camadas__card {
    min-width: 85vw; /* Ocupa quase toda a largura da tela */
    scroll-snap-align: center;
    padding: 30px 24px;
  }

  /* Setas de navegação mobile */
  .camadas__arrow {
    display: flex;
    position: absolute;
    bottom: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--header-title);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
  }

  .camadas__arrow--left { left: 35%; }
  .camadas__arrow--right { right: 35%; }
}

/* --- SEÇÃO METODOLOGIA E LASTRO --- */
.metodologia {
  padding: 0px 20px;
  background: var(--bg-site);
}

.metodologia__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Cabeçalho */
.metodologia__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.metodologia__title {
  font-family: "Gelica", serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--header-title);
  line-height: 1.15;
  margin-bottom: 20px;
}

.metodologia__title strong {
  font-weight: 700;
}

.metodologia__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--navbar--normal);
  line-height: 1.6;
  text-align: center;
}

/* Wrapper dos Steps */
.metodologia__steps-wrapper {
  position: relative;
}

/* Grid de 5 Colunas (Desktop) */
.metodologia__steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.metodologia__step-card {
  background: var(--bg-fundo-card);
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 12px;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
}

.metodologia__step-num {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--header-title);
  margin-bottom: 16px;
}

.metodologia__step-title {
  font-family: "Gelica", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navbar--normal);
  margin-bottom: 12px;
}

.metodologia__step-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--navbar--normal);
  line-height: 1.5;
}

.metodologia__arrow {
  display: none;
}

/* Frase de Impacto */
.metodologia__impact {
  border-left: 4px solid var(--header-title);
  padding-left: 34px;
  margin: 60px 0;
  font-family: "Gelica", serif;
  font-size: 28px;
  color: var(--header-title);
  line-height: 1.3;
}

.metodologia__impact strong {
  font-weight: 700;
}

/* Bloco Inferior (Texto + Selos) */
.metodologia__tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Texto da Esquerda */
.metodologia__tech-left p {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  line-height: 1.4;
  color: var(--navbar--normal);
  font-weight: 400;
}

/* Selos da Direita */
.metodologia__tech-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metodologia__tech-card {
  background: var(--bg-fundo-card-claro);
  border: 1px solid var(--header-title); /* Borda azul aplicada */
  border-radius: 8px;
  display: flex;
  align-items: center; /* Centraliza tudo verticalmente no meio */
  padding: 16px 20px; /* Cria o respiro interno do card inteiro */
  gap: 20px; /* Espaço entre a pílula, o texto e a logo */
}

/* A pílula cinza/azul clarinha do lado esquerdo */
.metodologia__tech-label {
  background: var(--bg-fundo-card-claro-escuro); /* Usa a variável que deixa azul/roxo claro */
  border-radius: 6px; /* Deixa arredondado igual na imagem */
  width: 150px;
  padding: 10px 6px;
  display: flex;
  align-items: center;
  justify-content: center; /* Texto centralizado dentro da pílula */
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navbar--normal);
  flex-shrink: 0;
  text-align: center;
}

.metodologia__tech-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.metodologia__tech-content strong {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navbar--normal);
  margin-bottom: 4px;
}

.metodologia__tech-content p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--text-note);
  line-height: 1.4;
}

/* Espaço reservado para a Logo */
.metodologia__tech-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100px; /* Define uma largura fixa pra alinhar todos os textos verticalmente */
  flex-shrink: 0;
}

.metodologia__tech-logo img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* --- RESPONSIVO MOBILE E TABLET --- */
@media (max-width: 1024px) {
  .metodologia__tech-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .metodologia {
    padding: 60px 20px 80px;
  }

  .metodologia__title {
    font-size: 30px;
  }

  /* Carrossel dos 5 Cards */
  .metodologia__steps-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none;
  }

  .metodologia__steps-grid::-webkit-scrollbar {
    display: none;
  }

  .metodologia__step-card {
    min-width: 240px;
    scroll-snap-align: center;
  }

  /* Setas do Carrossel */
  .metodologia__arrow {
    display: flex;
    position: absolute;
    bottom: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--header-title);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
  }

  .metodologia__arrow--left { left: 35%; }
  .metodologia__arrow--right { right: 35%; }

  /* Frase de impacto no mobile */
  .metodologia__impact {
    font-size: 19px;
    margin: 50px 0;
  }

  .metodologia__tech-left p {
    font-size: 18px;
  }

  /* Ajuste dos Selos no Mobile */
  .metodologia__tech-card {
    display: grid;
    grid-template-columns: max-content 1fr; /* Coluna 1 ajusta à pílula, Coluna 2 ocupa o resto */
    grid-template-areas: 
      "label logo"
      "content content"; /* O texto ocupa a linha de baixo inteira */
    padding: 24px 20px;
    gap: 16px 12px; /* Espaço entre as linhas e as colunas */
    align-items: center; /* Alinha a logo e a pílula ao centro verticalmente */
  }

  .metodologia__tech-label {
    grid-area: label;
    width: auto;
    display: inline-flex;
    padding: 8px 14px;
    margin: 0;
  }

  .metodologia__tech-logo {
    grid-area: logo;
    width: 100%;
    justify-content: flex-end; /* Garante que a logo grude na direita */
    padding: 0; /* Zera qualquer padding que vinha do desktop */
  }

  .metodologia__tech-content {
    grid-area: content;
    padding: 0; /* Zera o padding do desktop para alinhar certinho na esquerda */
  }
}

/* --- SEÇÃO AGENDAMENTO --- */
.agendamento {
  padding: 80px 20px;
  background: var(--bg-site);
  text-align: center;
}

.agendamento__container {
  max-width: 900px;
  margin: 0 auto;
}

.agendamento__title {
  font-family: "Gelica", serif;
  font-size: 48px;
  color: var(--header-title);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
}

.agendamento__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--navbar--normal);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.agendamento__btn {
  display: inline-block;
  background: #1e40af; /* Azul institucional */
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(30, 64, 175, 0.25);
  transition: transform 0.2s, background 0.2s;
}

.agendamento__btn:hover {
  transform: translateY(-2px);
  background: #17328a;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
  .agendamento {
    padding: 0px 20px 60px;
  }

  .agendamento__title {
    font-size: 30px;
  }

  .agendamento__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .agendamento__btn {
    width: 100%;
    padding: 16px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.footer-kz__column a:hover {
  color: var(--navbar--normal);
}

.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: var(--navbar--normal);
  margin-bottom: 16px;
}

.footer-kz__address a {
  color: var(--navbar--normal);
  text-decoration: none;
}

.footer-kz__copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--navbar--normal);
}

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

/* ==========================================
     1. ESTILOS E COMPORTAMENTO RESPONSIVO
     ========================================== */
  
  /* Overlay de fundo (cobre a tela inteira) */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Usa o tom do header container com opacidade para dar profundidade */
    background-color: rgba(10, 18, 26, 0.6); 
    display: none; /* Controlado pelo seu script JS original */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Card do Popup */
  .modal-card {
    /* Herda o fundo do site (Branco no light / Azul escuro no dark) */
    background-color: var(--bg-site); 
    width: 100%;
    max-width: 540px;
    border-radius: 12px;
    padding: 32px;
    /* Usa a cor de borda do seu tema */
    border: 1px solid var(--border--transparente--cinza);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  /* Cabeçalho (Tag e botão de fechar) */
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .step-tag {
    /* Usa o azul de destaque/hover do seu tema */
    color: var(--navbar--hover); 
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .close-btn {
    background: none;
    border: none;
    color: var(--navbar--hover);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
  }
  .close-btn:hover {
    opacity: 0.7;
  }

  /* Textos do Popup */
  .modal-title {
    /* No light usa o azul escuro, no dark usa o azul claro destacado */
    color: var(--navbar--normal); 
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 14px 0;
  }

  .modal-subtitle {
    /* Usa a cor de notas secundárias do seu tema */
    color: var(--text-note); 
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 24px 0;
  }

  /* Estrutura do Formulário */
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    width: 100%;
  }

  .form-group label {
    /* Texto das labels acompanhando a cor principal do navbar/títulos */
    color: var(--navbar--normal); 
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
  }

  .form-group input {
    /* Usa o fundo sutil de card limpo do seu tema */
    background-color: var(--bg-fundo-card-claro);
    border: 1px solid var(--btn-secondary-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--navbar--normal);
    outline: none;
    transition: border-color 0.2s, background-color 0.3s;
    box-sizing: border-box;
  }

  /* Efeito de clique/foco no input */
  .form-group input:focus {
    border-color: var(--navbar--hover);
  }

  /* Cor dos placeholders adaptável */
  .form-group input::placeholder {
    color: var(--text-note);
    opacity: 0.6;
  }

  /* Alinhamento Lado a Lado (E-mail e Telefone) */
  .form-row {
    display: flex;
    gap: 16px;
  }

  /* Botão de Envio (Inverte dinamicamente com base no tema) */
  .submit-btn {
    background-color: var(--navbar--hover);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: opacity 0.2s;
  }

  .submit-btn:hover {
    opacity: 0.9;
  }

  /* Rodapé da LGPD */
  .lgpd-text {
    color: var(--text-note);
    opacity: 0.7;
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
    margin: 20px 0 0 0;
  }

  /* ==========================================
     2. COMPORTAMENTO RESPONSIVO (CELULAR)
     ========================================== */
  @media (max-width: 480px) {
    .modal-card {
      padding: 24px 20px;
    }
    
    /* Quebra o E-mail e Telefone para ficarem um embaixo do outro no celular */
    .form-row {
      flex-direction: column;
      gap: 0; 
    }
    
    .modal-title {
      font-size: 19px;
    }
  }
