:root {
  --green: #00c896;
  --green-text: #6cf3d1;
  --green-dark: #00a07a;
  --green-light: #e6fff8;
  /* --navy: #0d1b2a; */
  /* --navy: #050709; */
  --navy: #1a1bad;
  /* --navy-mid: #1a2e42; */
  --navy-blk: #050709;
  --navy-mid: rgba(0, 0, 0, 0.55);
  --glass: linear-gradient(
    180deg,
    rgba(15, 20, 28, 0.9),
    rgba(8, 11, 16, 0.92)
  );
  --slate: #2c4a64;
  --muted: #6b8faf;
  --light: #f0f7ff;
  --white: #ffffff;
  --danger: #ff4d6d;
  --warn: #ffb703;
  --border: rgba(0, 200, 150, 0.2);
  --border-blue: #007bff;
  --shadow: 0 24px 80px rgba(13, 27, 42, 0.18);
  --color-van: #1a1bad;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /* font-family: 'Montserrat', sans-serif; */
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  position: relative;
  overflow: hidden;
  height: auto;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(0, 200, 150, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 80%,
      rgba(0, 160, 122, 0.08) 0%,
      transparent 60%
    );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: rgba(0,200,150,0.12); */
  /* background: var(--color-van); */
  background: var(--glass);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* color: var(--green); */
  color: var(--white);
  margin: 25px 0;
  position: relative;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}
/* LOGO */
.topHeader {
  display: flex;
}

.topHeader:hover {
  transform: translateY(-5px);
}

.topHeader img {
  max-width: 8.5rem;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 AUTO;
}
/* FIM - LOGO */

.hero h1 {
  /* font-family: 'Montserrat', sans-serif; */
  font-size: clamp(2rem, 5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 820px;
  margin-bottom: 24px;
  position: relative;
}

.hero h1 em {
  font-style: normal;
  /* color: var(--green); */
  color: #2627ef;
}

.hero p {
  font-size: 1.1rem;
  /* color: rgba(255,255,255,0.65); */
  color: #d3d0d0;
  max-width: 560px;
  line-height: 1.45;
  margin-bottom: 30px;
  position: relative;
}

/* h1 span {
        /* background-color: rgba(
          255, 255, 255, 0.8
        ); Fundo principal com leve transparência */
padding: 2px 10px; /* O 2px controla a altura extra (os "milímetros" que você quer) */
/* border-radius: 4px; */

/* A mágica: uma borda interna/externa que suaviza o topo e a base */
/* box-shadow: 0 -3px 5px rgba(255, 255, 255, 0.4),
          0 3px 5px rgba(255, 255, 255, 0.4); *

        display: inline-block;
        line-height: 1; /* Garante que o fundo não fique gigante *
      } */
/* @layer components { *
      .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        /* background: var(--green);*
        background: var(--color-van);
        /*color: var(--navy); *
        color: var(--white);
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        padding: 18px 40px;
        border-radius: 100px;
        /* border: none; *
        border: 1px solid #007bff;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        letter-spacing: 0.02em;
        box-shadow: 0 0 40px rgba(0, 200, 150, 0.35);
      }
  /* } */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-van);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 40px;
  border-radius: 100px;
  border: 1px solid #007bff;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  letter-spacing: 0.02em;
  box-shadow: 0 0 40px rgba(0, 200, 150, 0.35);
  width: fit-content;
}

.cta-btn:hover {
  /* background: var(--green-dark); */
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(0, 200, 150, 0.5);
  color: var(--color-van);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 38px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}
.stat-num {
  /* font-family: 'Montserrat', sans-serif; */
  font-size: 2rem;
  font-weight: 800;
  /* color: var(--green); */
  color: var(--white);
}
/* .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 4px; } */
.stat-label {
  font-size: 0.8rem;
  color: #d3d0d0;
  margin-top: 4px;
}

.divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── OVERLAY ─── */
.overlay {
  display: none;
  /* position: fixed;
        inset: 0; */
  /* background: rgba(13, 27, 42, 0.85); */
  /* background: var(--glass); */
  background: var(--navy-mid);
  backdrop-filter: blur(8px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  animation: fadeIn 0.3s ease;
}

.overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── MODAL ─── */
.modal {
  /* background: var(--navy-mid); */
  background: var(--glass);
  /* border: 1px solid rgba(0, 200, 150, 0.15);
        border-radius: 24px; */
  width: 100%;
  /* max-width: 720px; */
  max-width: 960px;
  /* max-height: 90vh;
  overflow-y: auto; */
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  /* scrollbar-color: var(--green) transparent; */
  scrollbar-color: var(--color-van) transparent;
  margin-top: 40px;
}

.modal::-webkit-scrollbar {
  width: 4px;
}
.modal::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 4px;
}

.modal-header {
  padding: 36px 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  /* position: sticky; */
  top: 0;
  background: var(--navy-mid);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-radius: 24px 24px 0 0;
}

.modal-title {
  /* font-family: 'Montserrat', sans-serif; */
  text-align: center;
  margin: 0 auto;
}
.modal-title span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* color: var(--green); */
  color: #d3d0d0;
  margin-bottom: 6px;
}
.modal-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.close-btn {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.close-btn:hover {
  background: rgba(255, 75, 109, 0.3);
}

/* ─── STEPS ─── */
.steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.3s;
}

.step-dot.active .step-circle {
  border-color: var(--green);
  /* border-color: var(--color-van); */
  background: var(--green);
  /* background: #d3d0d0; */
  color: var(--navy);
}

.step-dot.done .step-circle {
  /* border-color: var(--green); */
  border-color: var(--muted);
  background: transparent;
  /* color: var(--green); */
  color: var(--muted);
}

.step-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
  display: none;
}

/* #################### */
/* Fundo do Modal (Overlay) */
.modal-cnae-overlay {
  position: fixed;
  z-index: 9999; /* Garante que fique acima de tudo */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.7);  Fundo escuro semi-transparente */
  background-color: var(--glass); /* Fundo escuro semi-transparente */
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: #000;
}

/* Caixa de Conteúdo do Modal */
.modal-cnae-content {
  /* background-color: #fff; */
  background-color: var(--navy-blk);
  padding: 25px;
  border: 1px solid #ffffffd8;
  border-radius: 12px;
  width: 90%;
  max-width: 650px; /* Largura para caber o cartão de CNPJ confortavelmente */
  max-height: 90vh;
  overflow-y: auto; /* Scroll caso a tela seja pequena */
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.modal-cnae-content h3 {
  color: #f5f5f5;
}

/* Botão Fechar (X) */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #f5f5f5;
}

.close-modal:hover {
  color: #9e9ef8;
}

/* Estilização do iframe */
.iframe-container {
  width: 100%;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  overflow: hidden;
}

.iframe-cnpj {
  width: 100%;
  height: 450px; /* Ajuste conforme a altura do seu modelo */
  border: none;
}

/* Botão de Ação */
.btn-entendi {
  background-color: #1a1bad;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  display: block;
  margin: 20px auto 0;
}
/* #################### */

@media (min-width: 480px) {
  .step-label {
    display: block;
  }
}

/* .step-dot.active .step-label, .step-dot.done .step-label { color: var(--green); } */
.step-dot.active .step-label {
  /* color: var(--white); */
  color: var(--green-text);
}
/* .step-dot.done .step-label { color: var(--green); } */
.step-dot.done .step-label {
  color: var(--muted);
}
/* .step-dot.active .step-label, .step-dot.done .step-label { color: #1a1bad; } */

.step-line {
  flex: 1;
  height: 2px;
  /* background: rgba(255, 255, 255, 0.1); */
  background: linear-gradient(
    90deg,
    #4fe0a0 var(--p, 0%),
    rgba(148, 163, 184, 0.18) var(--p, 0%)
  );
  margin-bottom: 20px;
  transition: background 0.3s;
  max-width: 60px;
}

/* .step-line.done { background: var(--green); } */
.step-line.done {
  background: var(--muted);
}

/* ─── FORM ─── */
.modal-body {
  padding: 10px 40px;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: slideUp 0.3s ease;
}

.step-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.form-group {
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid #fff;
  /* color: var(--green); */
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: help;
  position: relative;
}

.tooltip-icon .tooltip-text {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  width: 260px;
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  z-index: 100;
  pointer-events: none;
}

.tooltip-icon:hover .tooltip-text {
  display: block;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  /* font-family: 'Montserrat', sans-serif; */
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}

input:focus,
select:focus {
  /* border-color: var(--green); */
  border-color: var(--color-van);
  background: rgba(0, 200, 150, 0.06);
}

input.error,
select.error {
  border-color: var(--danger);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300C896' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

select option {
  background: var(--navy-mid);
  color: var(--white);
}

.field-hint {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

.error-msg {
  font-size: 0.73rem;
  color: var(--danger);
  margin-top: 5px;
  display: none;
}

.error-msg.visible {
  display: block;
}

.cnpj-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  margin-top: 5px;
}

/* .cnpj-status.valid { color: var(--green); } */
.cnpj-status.valid {
  color: #d3d0d0;
}
.cnpj-status.invalid {
  color: var(--danger);
}
/* ############### */
footer,
.footer {
  position: relative; /* Ou absolute/sticky dependendo do seu layout */
  z-index: 1; /* Garante que fique acima dos fluxos comuns da section */

  width: 100%;
  display: block;

  clear: both; /* Previne colapsos de elementos flutuantes */
}
/* ############### */

/* ─── NAV BUTTONS ─── */
.modal-footer {
  padding: 24px 40px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* .btn-back {
  /* background: transparent; *
  background: var(--color-van);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* color: rgba(255, 255, 255, 0.6); *
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
} */

/* .btn-back:hover { border-color: rgba(255,255,255,0.35); color: var(--white); } */

.btn-back,
.btn-next {
  /* background: var(--green); */
  background: var(--color-van);
  /* color: var(--navy); */
  color: var(--white);
  /* border: none; */
  /* border: 1px solid var(--border-blue); */
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.btn-back:hover {
  background-color: var(--white);
  border-color: var(--border-blue);
  color: var(--navy);
}

/* .btn-next:hover { background: var(--green-dark); transform: translateY(-1px); } */
.btn-next:hover {
  background: var(--white);
  color: var(--color-van);
  transform: translateY(-1px);
}
.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ─── RESULTS ─── */
.result-section {
  display: none;
}
.result-section.active {
  display: block;
  animation: slideUp 0.4s ease;
}

.result-header {
  background: linear-gradient(
    135deg,
    rgba(0, 200, 150, 0.1) 0%,
    rgba(0, 160, 122, 0.05) 100%
  );
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
}

.result-header h3 {
  /* font-family: 'Montserrat', sans-serif; */
  font-size: 1rem;
  font-weight: 700;
  /* color: var(--green); */
  color: #d3d0d0;
  margin-bottom: 4px;
}

.result-company {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-tag {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.result-tag strong {
  color: var(--white);
}

.obligations-title {
  /* font-family: 'Montserrat', sans-serif; */
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* .obligation-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        margin-bottom: 10px;
        transition: background 0.2s;
      } */
.obligation-item {
  display: block;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.obligation-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.obligation-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  /* background: var(--green); */
  background: var(--color-van);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* margin-top: 1px; */
}

.obligation-check svg {
  width: 12px;
  height: 12px;
}

.obligation-item h4 {
  font-weight: 600;
  font-size: 0.95rem;
  /* margin-bottom: 3px; */
  margin: 0;
}

.obligation-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;

  margin: 0;
}

/* .obligation-badge {
        margin-left: auto;
        flex-shrink: 0;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 100px;
        background: rgba(255, 183, 3, 0.15);
        color: var(--warn);
        border: 1px solid rgba(255, 183, 3, 0.25);
      } */
/* Selo "Obrigatório" / "Recomendado" — agora fica sozinho em cima */
.obligation-badge {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 183, 3, 0.15);
  color: var(--warn);
  border: 1px solid rgba(255, 183, 3, 0.25);
}

.obligation-badge.required {
  /* background: rgba(0,200,150,0.12);
    /* color: var(--green); 
    border-color: rgba(0,200,150,0.25); */
  background: var(--white);
  color: var(--navy);
  border-color: var(--border-blue);
}

/* Linha com o círculo de check + título */
.obligation-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

/* .cipa-box {
    background: linear-gradient(135deg, rgba(255,183,3,0.08) 0%, transparent 100%);
    border: 1px solid rgba(255,183,3,0.2);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 10px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  } */
/* .cipa-box {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
        /* background: linear-gradient(135deg, rgba(255,183,3,0.08) 0%, transparent 100%);
    border: 1px solid rgba(255,183,3,0.2); *
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        margin-bottom: 10px;
        transition: background 0.2s;
      } */
/* CIPA — mesmo padrão do obligation-item, só com leve destaque a mais */
.cipa-box {
  display: block;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.cipa-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cipa-box h4 {
  font-weight: 600;
  font-size: 0.95rem;
  /* color: var(--warn); */
  margin-bottom: 4px;
}

.cipa-box p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.email-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 200, 150, 0.07);
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* .email-notice span { color: var(--green); font-weight: 600; } */
.email-notice span {
  color: #d3d0d0;
  font-weight: 600;
}

.email-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.risk-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.risk-1 {
  background: rgba(100, 200, 100, 0.15);
  color: #64c864;
}
.risk-2 {
  background: rgba(255, 183, 3, 0.15);
  color: var(--warn);
}
.risk-3 {
  background: rgba(255, 120, 50, 0.15);
  color: #ff7832;
}
.risk-4 {
  background: rgba(255, 75, 109, 0.15);
  color: var(--danger);
}

.loading-spinner {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--muted);
}

.loading-spinner.active {
  display: block;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0, 200, 150, 0.2);
  /* border-top-color: var(--green); */
  border-top-color: var(--color-van);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.olStyle {
  line-height: 1.6;
  margin-left: 74px;
  font-size: 0.85rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* scrollbar for modal */
.modal-body {
  scrollbar-width: thin;
}

@media (max-width: 600px) {
  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .steps-indicator {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ─── FOOTER HERO ─── */
.hero-footer {
  margin-top: 80px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  position: relative;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #topo {
    padding-top: 6rem !important;
  }

  .step-line {
    margin-bottom: 0px;
  }

  .inline-flex {
    font-size: 0.8rem;
  }

  .relative h1,
  .relative .h1 {
    font-size: 1.6rem;
  }

  .modal-title h2 {
    font-size: 1.2rem;
  }

  .relative p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .cta-btn {
    font-size: 0.8rem;
  }

  .font-display {
    font-size: 1.2rem;
  }

  footer p {
    font-size: 0.8rem !important;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select {
    font-size: 1rem;
  }

  footer {
    padding-top: 1rem !important;
  }
}

/* @media (max-width: 360px) {
        footer {
          padding-top: 1rem !important;
        }
      } */

@media (max-width: 320px) {
  .inline-flex {
    font-size: 0.5rem;
  }

  .modal-title h2,
  .relative h1,
  .relative .h1 {
    font-size: 1.3rem;
  }

  .modal-title h2 {
    font-size: 0.9rem;
  }
}
