* {
  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-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: #BCD6FF;
  --bg-fundo-card: rgba(235, 237, 255, 0.05);
  --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: #1E40AF;
  --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: 28px;
  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: 0 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: 2rem;
}

.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: 53px;
  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: #15253F;
  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: #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: 13px;
  color: #666d7a;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
    margin-bottom: -10px;

}

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

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

@media (max-width: 640px) {
  .header__note2 {
    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 {
  position: absolute; /* Ela sai do meio do texto e flutua */
  right: -150px;       /* Faz ela vazar para a direita do container azul */
  bottom: 0;          /* Gruda no fundo */
  width: 50%;         /* Ocupa metade da largura do container */
  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 BADGES --- */
.badges {
  padding: 20px 10px;
  background: var(--bg-site);
  overflow: hidden;
}

.badges__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.badges__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: all 0.3s ease;
}

.badges__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.badges__dot {
  width: 6px;
  height: 6px;
  background-color: var(--header-title);
  border-radius: 50%;
}

.badges__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--navbar--normal);
  white-space: nowrap;
}

.badges__arrow {
  display: none; /* Escondido no Desktop */
}

/* --- MOBILE --- */
@media (max-width: 640px) {
  .badges {
    padding: 30px 10px 70px; /* Espaço para as setas embaixo */
  }

  .badges__grid {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding: 0 0px;
    gap: 20px;
  }

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

  .badges__item {
    scroll-snap-align: center;
    padding: 12px 20px;
    border-radius: 999px;
  }

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

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

/* --- CSS BASE / DESKTOP --- */
.diferencial {
  padding: 40px 10px;
  background: var(--bg-site);
}

.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: var(--bg-fundo-card2);
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative; /* Importante para o posicionamento do ícone */
  overflow: visible !important; /* Força a visualização do que sai do card */
  margin-top: 40px; /* Dá espaço para o ícone que vai subir */
}

.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: var(--navbar--normal);
  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: var(--navbar--normal);
  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: var(--header-title);
    color: var(--navbar--normal);
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

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

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

.orientacao {
  padding: 10px 20px;
  background: var(--bg-site);
}

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

.orientacao__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Divide em duas colunas no desktop */
  gap: 15px;
}

/* Bloco da Esquerda */
.orientacao__main-card {
  background: var(--bg-fundo-card); /* Usa o cinza claro ou azul escuro do seu root */
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.orientacao__title {
  font-size: 20px;
  line-height: 1.2;
  color: var(--navbar--normal); /* Cor escura padrão */
  margin-bottom: 24px;
}

.orientacao__title span {
  color: var(--header-title); /* Roxo/Azul do seu tema */
  display: block;
}

.orientacao__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--navbar--normal);
  margin-bottom: 16px;
}

/* Sidebar da Direita */
.orientacao__sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.orientacao__item {
  background: var(--bg-fundo-card2);
  border: 1px solid var(--purple);
  border-radius: 8px;
  padding: 16px;
}

.orientacao__item p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--navbar--normal);
}

/* Card Inferior (Ocupa as duas colunas) */
.orientacao__footer-card {
  grid-column: 1 / -1; /* Faz ocupar a largura toda no desktop */
  background: var(--bg-fundo-card2);
  border: 1px solid var(--purple);
  border-radius: 8px;
  padding: 20px 20px;
}

.orientacao__footer-card p {
  font-size: 13px;
  color: var(--navbar--normal);
  margin-bottom: 4px;
}

.orientacao__footer-card strong {
  display: block;
  font-size: 12px;
  color: var(--header-title);
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 900px) {
  .orientacao__grid {
    grid-template-columns: 1fr; /* Vira uma única coluna */
  }

  .orientacao__main-card {
    padding: 30px 20px;
  }

  .orientacao__title {
    font-size: 24px;
  }

  .orientacao__footer-card {
    padding: 20px;
  }

  .orientacao__footer-card p {
  font-size: 13px;
  color: var(--navbar--normal);
  margin-bottom: 12px;
  }
}

/* --- SEÇÃO PROCESSO --- */
.processo {
    padding: 80px 20px;
    background: var(--bg-site);
}

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

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

.processo__main-title {
    font-size: 42px;
    line-height: 1.1;
    color: var(--purple);
    margin-bottom: 20px;
}

.processo__main-title span {
    font-weight: 300;
    opacity: 0.8;
}

.processo__intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--navbar--normal);
}

.processo__intro strong{
    font-size: 15px;
    line-height: 1.6;
    color: var(--purple);
}

/* TOP GRID */
.processo__top-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.processo__vacuo-card {
    background: var(--bg-fundo-card);
    border: 1px solid var(--border--transparente--cinza);
    border-radius: 16px;
    padding: 20px;
      display: flex;
    flex-direction: column;
    justify-content: center;
}

.processo__sidebar {
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.processo__sub-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--navbar--normal);
    font-weight: 500;
}

.processo__text {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--navbar--normal);
}

/* FÓRMULA */
.processo__formula {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.processo__formula-box {
    flex: 1;
    background: var(--bg-fundo-card2);
    border: 1px solid var(--primary);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.processo__formula-box strong { display: block; font-size: 13px; color: var(--navbar--normal); }
.processo__formula-box span { font-size: 10px; color: var(--navbar--normal); }
.processo__operator { font-weight: bold; color: var(--purple); }

/* LISTA */
.processo__feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.processo__feature-list li {
    background: var(--bg-fundo-card2);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--purple);
    font-size: 11px;
    color: var(--navbar--normal);
}

/* STEPS GRID */
.processo__steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

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

.processo__step-num {
    color: var(--purple);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

.processo__step-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navbar--normal);
}

.processo__step-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--navbar--normal);
}

.processo__step-tag {
    margin-top: 10px;
    background: var(--bg-fundo-processo__step);
    padding: 8px;
    font-size: 10px;
    border-radius: 4px;
    color: var(--text-fundo-processo__step);
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .processo__steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .processo__header{
        margin-bottom: 0;
    }

    .processo__main-title {
    font-size: 37px;
    }

    .processo__intro {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-note);
    }

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

    .processo__vacuo-card {
        gap: 0px;
    }

    .processo__text {
      font-size: 14px;
    }

    .processo__steps-grid {
        display: flex !important;
        flex-wrap: nowrap !important; /* ISSO É O QUE GARANTE OS CARDS À DIREITA */
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .processo__step-card {
        max-width: 280px; /* Largura do card no celular */
        flex-shrink: 0;
        scroll-snap-align: center;
        
    }

    .processo__arrow {
        display: flex !important; /* Garante que a seta apareça */
        position: absolute;
        bottom: 0;
        /* ... resto do seu estilo de seta ... */
    }

    .processo__top-grid {
    background: var(--bg-fundo-card);
    border: 1px solid var(--border--transparente--cinza);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .processo__formula {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    }
    
}

.processo__steps-wrapper {
  position: relative;
}

.processo__arrow {
  display: none; /* Escondido no Desktop */
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .processo__steps-wrapper {
    padding-bottom: 60px; /* Espaço para as setas embaixo */
  }

  .processo__steps-grid {
    display: flex; /* Muda de grid para flex no mobile */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px;
    scrollbar-width: none;
  }

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

  .processo__step-card {
    min-width: 280px; /* Largura fixa do card no mobile */
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .processo__arrow {
    display: flex;
    position: absolute;
    bottom: 0;
    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;
  }

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

/* --- SEÇÃO SOLUTIONS COMPLETA --- */
.solutions {
    padding: 60px 20px;
    background: var(--bg-site);
    text-align: center;
}

/* Esconde as setas por padrão em telas grandes */
.solutions__arrow {
    display: none !important;
}

.solutions__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solutions__top-text {
    font-size: 14px;
    color: var(--text-note);
    margin-bottom: 10px;
}

.solutions__title span {
  font-weight: 400;
  color: var(--header-title);

}

.solutions__title {
  font-family: "Gelica", serif;
  font-size: 48px;
  color: var(--header-title);
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 700px;
}

.solutions__precision-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--header-title);
    max-width: 900px;
}

.solutions__precision-title span {
  font-weight: 400;
  color: var(--header-title);
  display: inline;
}

/* GRID PRINCIPAL (Desktop) */
.solutions__main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.solutions__main-card {
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    text-align: left;
    min-height: 220px;
    position: relative;
}

.solutions__main-card--family {
    background: var(--bg-fundo-card2);
    border: 1px solid #1E40AF;
}

.solutions__main-card--operator {
    background: var(--bg-fundo-card);
}

.solutions__main-content {
    flex: 1;
    z-index: 2;
}

.solutions__main-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navbar--normal);
}

.solutions__main-content p {
    font-size: 15px;
    color: var(--navbar--normal);
    line-height: 1.5;
    max-width: 240px;
}

.solutions__main-mascot {
    width: 140px;
    display: flex;
    justify-content: flex-end;
}

.solutions__main-mascot img {
    max-width: 100%;
    height: auto;
}

.solutions__main-mascot_bibi {
    width: 180px;
    display: flex;
    justify-content: flex-end;
}

.solutions__main-mascot_bibi img {
    max-width: 100%;
    height: auto;
}

/* BARRA DE INFORMAÇÃO */
.solutions__info-bar {
    background: var(--bg-fundo-card);
    border: 1px solid var(--border--transparente--cinza);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-note);
    margin-bottom: 30px;
}

/* MINI CARDS (PRECISÃO) */
.solutions__precision-title {
    font-size: 28px;
    display: inline;
}

.solutions__precision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.solutions__mini-card {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.solutions__mini-card strong {
    font-size: 15px;
    color: #1E40AF;
}

.solutions__mini-card span {
    font-size: 13px;
    color: var(--navbar--normal);
}

.solutions__mini-card--blue {
    background: var(--bg-fundo-card2);
    border: 1px solid #1E40AF;
}

.solutions__mini-card--green {
    background: var(--bg--fundo--verde);
    border: 1px solid #34D399;
}

.solutions__mini-card--green strong {
    color: #059669;
}

.solutions__footer-text {
    font-size: 15px;
    color: var(--navbar--normal);
}

/* RESPONSIVO MOBILE */
@media (max-width: 850px) {
    .solutions__title, .solutions__precision-title {
        font-size: 32px;
    }

    /* Scroll Horizontal dos cards principais */
    .solutions__main-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 60px 10px 20px; /* Padding top para o mascote "vazar" */
        scrollbar-width: none;
    }

    .solutions__main-card {
        max-width: 240px;
        flex-shrink: 0;
        scroll-snap-align: center;
        overflow: visible; /* Importante para o mascote sair do card */
        padding-top: 50px;
    }

    .solutions__main-content h3, p {
      text-align: start;
    }

    .solutions__main-mascot {
        position: absolute;
        top: -50px; /* Faz o mascote subir para fora do card */
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
    }

    .solutions__main-content {
        text-align: center;
    }

    .solutions__main-content p {
        max-width: 100%;
    }

    /* Grid de Mini cards no mobile */
    .solutions__precision-grid {
        grid-template-columns: 1fr;
    }

    .solutions__main-wrapper {
        position: relative;
    }

    .solutions__arrow {
        display: flex;
        position: absolute;
        bottom: -40px;
        background: var(--header-title);
        color: white;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

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

/* --- SEÇÃO MODELOS DE ENTRADA --- */
.entry-modes {
    padding: 80px 20px;
    background: var(--bg-site);
}

.entry-modes__container {
    max-width: 1150px;
    margin: 0 auto;
}

.entry-modes__header {
    text-align: center;
    margin-bottom: 60px;
}

.entry-modes__mascot {
    width: 120px;
    margin: 0 auto 20px;
}

.entry-modes__mascot img {
    width: 100%;
    height: auto;
}

.entry-modes__title {
    font-size: 42px;
    line-height: 1.1;
    color: var(--header-title);
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.entry-modes__title strong {
    font-weight: 700;
}

.entry-modes__subtitle {
    font-size: 16px;
    color: var(--navbar--normal);
    line-height: 1.5;
    margin-top: 20px;
}

.entry-modes__wrapper {
    position: relative;
}

.entry-modes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.entry-modes__tag { 
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-fundo-card2);
    border: 1px solid var(--bg-fundo-card2);
    color: var(--header-title);
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 24px;
} 

.entry-modes__card-title {
    font-size: 22px;
    color: var(--navbar--normal);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

.entry-modes__card-description {
    font-size: 14px;
    color: var(--navbar--normal);
    line-height: 1.6;
    margin-bottom: 30px;
}

.entry-modes__list {
    list-style: none;
    margin-top: auto;
}

.entry-modes__list li {
    font-size: 14px;
    color: var(--navbar--normal);
    padding: 12px 0;
    border-bottom: 1px dotted #d1d5db;
    display: flex;
    align-items: center;
    gap: 12px;
}

.entry-modes__list li:last-child {
    border-bottom: none;
}

.entry-modes__list li span {
    color: var(--header-title);
    font-weight: 700;
    font-size: 18px;
}

.entry-modes__arrow {
    display: none; /* Escondido no desktop */
}

/* --- RESPONSIVO MOBILE --- */
@media (max-width: 900px) {
    .entry-modes__title {
        font-size: 34px;
    }

    .entry-modes__subtitle {
      text-align: center;
    }

    .entry-modes__subtitle br {
        display: none;
    }

    .entry-modes__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }

    .entry-modes__grid::-webkit-scrollbar {
        display: none;
    }

    .entry-modes__card {
        min-width: 85vw;
        scroll-snap-align: center;
        padding: 30px 20px;
    }

    .entry-modes__arrow {
        display: flex;
        position: absolute;
        bottom: -50px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--header-title);
        color: #fff;
        border: none;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .entry-modes__arrow--left { left: 35%; }
    .entry-modes__arrow--right { right: 35%; }
}

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

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

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

.jornada__title {
  font-size: 42px;
  line-height: 1.1;
  color: var(--header-title);
  margin-bottom: 20px;
}

.jornada__title span {
  font-weight: 300;
  opacity: 0.9;
}

.jornada__subtitle {
  font-size: 15px;
  color: var(--navbar--normal);
  line-height: 1.6;
}

.jornada__wrapper {
  position: relative;
}

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

.jornada__card {
  background: var(--bg-fundo-card);
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.jornada__number {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--header-title);
  margin-bottom: 20px;
  display: block;
}

.jornada__card-title {
  font-family: "Gelica", serif;
  font-size: 20px;
  color: var(--navbar--normal);
  line-height: 1.3;
  margin-bottom: 15px;
  min-height: 52px;
}

.jornada__divider {
  border-top: 1px dotted #d1d5db;
  margin-bottom: 20px;
}

.jornada__card-text {
  font-size: 14px;
  color: var(--navbar--normal);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.jornada__value-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--header-title);
  display: block;
  margin-bottom: 12px;
}

.jornada__value-box {
  background: var(--bg-fundo-card2);
  padding: 16px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--header-title);
  line-height: 1.5;
}

.jornada__arrow {
  display: none; /* Escondido no Desktop */
}

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

@media (max-width: 640px) {
  .jornada {
    padding-bottom: 100px;
  }

  .jornada__title {
    font-size: 32px;
  }

  .jornada__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

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

  .jornada__card {
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .jornada__arrow {
    display: flex;
    position: absolute;
    bottom: -60px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--header-title);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

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

/* --- SEÇÃO PILOTO (BEM) --- */
.piloto {
  padding: 40px 0;
  background: var(--bg-site);
}

.piloto__container {
  max-width: 1160px; /* Alinhado com a navbar */
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho da Seção */
.piloto__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.piloto__mascot-top {
  width: 120px;
  margin: 0 auto 20px;
}

.piloto__mascot-top img {
  width: 100%;
  height: auto;
}

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

.piloto__title span {
  font-weight: 600;
}

.piloto__subtitle {
  font-size: 16px;
  color: var(--navbar--normal);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Conteúdo da Seção */
.piloto__content {
  position: relative; /* Base para o posicionamento da tartaruga de baixo */
}

/* Grid de Cards (Desktop: Lado a Lado) */
.piloto__card {
  display: flex;
  flex-direction: column;
}

/* Tartaruga de Baixo (Escondida no Desktop) */
.piloto__mascot-bottom {
  display: none;
}

/* Estilo Base do Card */
.piloto__card {
  background: var(--bg-fundo-card);
  border: 1px solid var(--border--transparente--cinza);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  height: 100%;
}

.piloto__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 64, 175, 0.05); /* Efeito de cor interna suave */
  border-radius: 12px;
}

.piloto__number {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--header-title);
  margin-bottom: 20px;
  display: block;
}

.piloto__card-title {
  font-family: "Gelica", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navbar--normal);
  margin-bottom: 15px;
  line-height: 1.3;
}

.piloto__card-description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navbar--normal);
  margin-bottom: 20px;
}

/* Lista Pontilhada */
.piloto__list {
  list-style: none;
  margin-top: auto;
}

.piloto__list li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--navbar--normal);
  padding: 12px 0 12px 18px; /* Espaço para o ponto */
  border-bottom: 1px dotted #d1d5db;
  position: relative;
}

.piloto__list li:last-child {
  border-bottom: none;
}

.piloto__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--header-title);
  font-size: 18px;
  font-weight: 700;
}

/* Layout Desktop: Três Colunas */
@media (min-width: 901px) {
  .piloto__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch; /* Cards com a mesma altura */
  }

  /* Tartaruga de Baixo: Mostra e posiciona à esquerda dos cards */
  .piloto__mascot-bottom {
    display: block;
    position: absolute;
    left: -50px; /* Fora do container dos cards */
    bottom: -60px;
    width: 120px;
    z-index: 2;
  }

  .piloto__mascot-bottom img {
    width: 100%;
    height: auto;
  }
}

/* Layout Mobile: Carrossel Arrastável */
@media (max-width: 900px) {
  .piloto {
    padding: 60px 0 100px; /* Espaço inferior para as setas */
  }

  .piloto__container {
    padding: 0; /* Remove padding lateral no container mobile */
  }

  .piloto__header {
    margin-bottom: 40px;
    padding: 0 20px; /* Adiciona padding interno só no cabeçalho */
  }

  .piloto__title {
    font-size: 32px;
  }

  .piloto__subtitle {
    text-align: center;
  }

  .piloto__card-description {
    font-size: 13px;
    margin-bottom: 0px;
  }

  .piloto__list li {
    font-size: 12px;
  }

  /* Transforma Grid em Carrossel Horizontal Arrastável */
  .piloto__content {
    display: flex;
    overflow-x: auto; /* Habilita scroll horizontal */
    scroll-snap-type: x mandatory; /* Efeito magnético nos cards */
    gap: 16px;
    padding: 0 20px; /* Padding interno para o scroll e sombra */
    scrollbar-width: none; /* Esconde scroll no Firefox */
    -webkit-overflow-scrolling: touch; /* Scroll suave iOS */
  }

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

  /* Ajuste do Card no Carrossel Mobile */
  .piloto__card {
    flex: 0 0 90%; /* Largura fixa do card no carrossel (90% da tela) */
    scroll-snap-align: center; /* Centraliza o card ao arrastar */
    min-height: 480px; /* Altura mínima para mobile */
  }

  /* Tartaruga de Baixo: Ativa e fixa no canto inferior esquerdo */
  .piloto__mascot-bottom {
    display: block;
    position: absolute;
    left: 20px; /* Fixa na borda esquerda do container */
    bottom: 0px; /* Fixa na borda inferior do container, parada */
    width: 90px;
    z-index: 10; /* Garante que fique sobre as setas */
  }

  .piloto__mascot-bottom img {
    width: 60%;
    height: auto;
  }
}

/* --- SEÇÃO TRANSFORMAÇÃO --- */
.transformation {
  padding: 80px 20px;
  background: var(--bg-site);
}

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

.transformation__header {
  text-align: center;
  margin-bottom: 60px;
}

.transformation__eyebrow {
  font-size: 14px;
  color: var(--navbar--normal);
  margin-bottom: 10px;
}

.transformation__title {
  font-family: "Gelica", serif;
  font-size: 38px;
  color: var(--header-title);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.transformation__title strong {
  font-weight: 600;
}

/* GRID */
.transformation__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* ESQUERDA */
.transformation__sub {
  font-family: "Gelica", serif;
  font-size: 24px;
  color: var(--navbar--normal);
  margin-bottom: 25px;
}

.transformation__group {
  margin-bottom: 40px;
}

.transformation__bullets {
  list-style: none;
}

.transformation__bullets li {
  font-size: 15px;
  color: var(--navbar--normal);
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px dotted #d1d5db;
  position: relative;
  padding-left: 25px;
}

.transformation__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--header-title);
  font-size: 24px;
  top: 10px;
}

.transformation__arrow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.transformation__arrow-item {
  background: var(--bg-fundo-card2);
  border: 1px solid var(--border--roxa-azul);
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 14px;
  color: var(--navbar--normal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.transformation__arrow-item span {
  color: var(--text-note);
}

/* DIREITA (CARD) */
.transformation__right {
  position: relative; /* Para a girafa */
  background: var(--bg-fundo-card);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border--transparente--cinza);
}

.transformation__card {
  border-radius: 20px;
}

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

.transformation__card-title span {
  display: block;
  font-weight: 400;
  color: var(--navbar--normal);
}

.transformation__card-text {
  font-size: 14px;
  color: var(--navbar--normal);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* STEPS DENTRO DO CARD */
.transformation__step {
  display: flex;
  gap: 15px;
  background: var(--bg-fundo-card2);
  border: 1px solid var(--border--roxa-azul);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  align-items: center;
}

.transformation__step-num {
  background: var(--bg-fundo-card2);
  color: var(--navbar--normal);
  font-weight: 800;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transformation__step-info strong {
  font-size: 15px;
  color: var(--navbar--normal);
  display: block;
}

.transformation__step-info {
  display: flex;
  flex-direction: column;
  gap: 03px;
}

.transformation__step-info p {
  font-size: 12px;
  color: var(--navbar--normal);
}

/* GIRADA */
.transformation__mascot {
  position: absolute;
  left: -150px;
  bottom: -40px;
  width: 140px;
  z-index: 5;
}

.transformation__mascot img {
  width: 100%;
  height: auto;
}

/* RESPONSIVO MOBILE */
@media (max-width: 900px) {
  .transformation__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .transformation__title {
    font-size: 28px;
  }

  .transformation__mascot {
    position: relative; /* Sai de cima e vai pra baixo */
    left: -20px;
    bottom: 0;
    margin: 30px auto 0;
    width: 64px;
    display: block;
  }

  .transformation__card {
    padding: 25px;
  }

  .transformation__eyebrow {
    text-align: center;
  }
}

/* --- SEÇÃO SEGURANÇA E RESPONSABILIDADE --- */
.seguranca-saude {
  padding: 80px 20px;
  background: var(--bg-site);
}

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

.seguranca__header {
  text-align: center;
  margin-bottom: 60px;
}

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

.seguranca__title {
  font-family: "Gelica", serif;
  font-size: 42px;
  color: var(--header-title);
  font-weight: 600;
}

.seguranca__title span {
  font-weight: 400;
  color: var(--header-title);
}

.seguranca__wrapper {
  position: relative;
}

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

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

.seguranca__card-title {
  font-family: "Gelica", serif;
  font-size: 21px;
  color: var(--navbar--normal);
  margin-bottom: 20px;
  line-height: 1.2;
}

.seguranca__card-description {
  font-size: 13px;
  color: var(--navbar--normal);
  line-height: 1.6;
  margin-bottom: 25px;
}

.seguranca__list {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.seguranca__list li {
  font-size: 12px;
  color: var(--navbar--normal);
  padding: 10px 0;
  border-bottom: 1px dotted #d1d5db;
  position: relative;
  padding-left: 20px;
}

.seguranca__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: bold;
}

.seguranca__list li:last-child {
  border-bottom: none;
}

.seguranca__footer-box {
  background: var(--bg-fundo-card2);
  padding: 16px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--header-title);
  line-height: 1.5;
}

.seguranca__arrow {
  display: none; /* Escondido no Desktop */
}

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
  .seguranca-saude {
    padding-bottom: 100px;
  }

  .seguranca__title {
    font-size: 32px;
  }

  .seguranca__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

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

  .seguranca__card {
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .seguranca__arrow {
    display: flex;
    position: absolute;
    bottom: -60px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--header-title);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .seguranca__eyebrow {
    text-align: center;
  }

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

/* --- SEÇÃO PRÓXIMO PASSO (ESTRUTURA INVERTIDA) --- */
.next-step {
  padding: 80px 20px;
  background: var(--bg-site);
}

.next-step__container {
  background: var(--bg-fundo-section-rodape);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
}

.next-step__eyebrow {
  color: var(--text-note);
}

.next-step__header {
  text-align: center;
  margin-bottom: 60px;
}

.next-step__title {
  font-family: "Gelica", serif;
  font-size: 34px;
  color: var(--header-title);
  margin-bottom: 20px;
  font-weight: 500;
}

.next-step__subtitle {
  color: var(--text-note);
  max-width: 500px;
  margin: 0 auto;
}

.next-step__title strong { font-weight: 600; }

/* GRID */
.next-step__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* BLOCO ESQUERDO */
.next-step__card-full {
  background: var(--bg-fundo-card2);
  border: 1px solid var(--header-title);
  border-radius: 20px;
  padding: 40px;
}

.next-step__card-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navbar--normal);
  margin-bottom: 20px;
}

.next-step__list { list-style: none; }
.next-step__list li {
  font-size: 14px;
  color: var(--navbar--normal);
  padding: 15px 0;
  border-bottom: 1px dotted #d1d5db;
  position: relative;
  padding-left: 20px;
}
.next-step__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: bold;
}

/* BLOCO DIREITO (Box com texto + Ações fora) */
.next-step__info-box {
  background: var(--bg-fundo-card2);
  border: 1px solid var(--header-title);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  margin-top: 60px; /* Espaço para o urso */
  margin-bottom: 30px; /* Espaço para as ações fora */
}

.next-step__mascot {
  position: absolute;
  top: -85px;
  right: 20px;
  width: 150px;
  z-index: 5;
}

.next-step__mascot img { width: 100%; height: auto; }

.next-step__card-text {
  font-size: 15px;
  color: var(--navbar--normal);
  line-height: 1.6;
}

/* AÇÕES FORA DO QUADRADO */
.next-step__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.next-step__btn {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.next-step__btn--primary { background: #1e40af; color: #fff; }
.next-step__btn--secondary { background: #eef2ff; color: #15253f; border: 1px solid #d8d7ec; }

.next-step__note {
  font-size: 13px;
  color: var(--navbar--normal);
  line-height: 1.4;
  font-weight: 600;
}

/* RESPONSIVO MOBILE */
@media (max-width: 900px) {
  .next-step__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .next-step__card-full {
    order: 1;
  }

  .next-step__right-column {
    order: 2;
    margin-top: 40px;
  }

  .next-step__buttons {
    flex-direction: column;
    gap: 10px; /* Diminuí levemente o espaço entre eles */
    width: 100%;
  }

.next-step__btn {
    /* Resetamos a herança e ajustamos para o mobile */
    height: 48px;           /* Altura um pouco mais elegante para mobile */
    border-radius: 999px;   /* Formato pílula (importante!) */
    font-size: 15px;
    width: 100%;            /* Força a largura total */
    flex: none;             /* Remove o flex: 1 para respeitar a altura fixa */
  }

  /* Ajuste do Mascote que pode estar empurrando o layout lateralmente */
  .next-step__mascot {
    width: 110px;
    top: -65px;
    right: 20px; /* Trouxe para dentro, pois -80px quebra o mobile */
  }

  .next-step__eyebrow {
    text-align: center;
  }

  .next-step__title {
    margin-top: 6px;
    font-size: 28px;
  }

  .next-step__subtitle {
    text-align: center;
  }

  .next-step {
  padding: 80px 0px;
  background: var(--bg-site);
  }

  .next-step__container {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  }

  .next-step__card-full {
    padding: 20px;
  }
}

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