@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;700;900&display=swap');
@import url('https://cloud.divulga.sebraeam.com.br/Home_Conecta_MEI');
@import url('https://cloud.divulga.sebraeam.com.br/Destaque_Conecta_MEI');
@import url('https://cloud.divulga.sebraeam.com.br/Faixa_Conecta_Mei');
@import url('https://cloud.divulga.sebraeam.com.br/Footer_Conecta_MEI');
@import url('https://cloud.divulga.sebraeam.com.br/Header_Nra');

@font-face {
  font-family: 'Campuni';
  src: local('Campuni'), url('https://assets-global.website-files.com/63f8b4c7aa0a8a0d10c1d2ed/63f8b4c7aa0a8ae7e4c1d37c_Campuni-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* NOVAS CORES SEBRAE */
:root {
  --sebrae-bg: #043088;
  --sebrae-bg-gradient: linear-gradient(123deg, #043088 0%, #1681e6 100%);
  --sebrae-blue-cta: #1681e6;
  --sebrae-blue-form: #bce1fa;
  --sebrae-btn: #0dcaf0;
  --sebrae-btn-hover: #1870b8;
  --sebrae-title: #ffffff;
  --sebrae-subtitle: #bce1fa;
  --sebrae-label: #053578;
  --sebrae-detail: #0dcaf0;
  --sebrae-tag: #1a83cb;
  --sebrae-error: #e3007b;
}

/* == RESET & BASE == */
*{
  font-family: 'Figtree', 'Campuni', Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {scroll-behavior: smooth;}
body {
  background: var(--sebrae-bg-gradient), #043088;
  color: var(--sebrae-title);
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* == TITULOS SECCAO == */
.section-title {
  font-family: 'Campuni', 'Figtree', Arial, sans-serif;
  font-size: 2.28rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--sebrae-title);
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px #04308821;
}
.section-subtitle {
  font-family: 'Figtree', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 700;
  color: var(--sebrae-subtitle);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

/* BOTÕES */
.btn-default {
  background: linear-gradient(90deg, var(--sebrae-btn) 60%, var(--sebrae-blue-cta) 100%);
  color: #fff;
  font-family: 'Figtree', Arial, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 9px;
  padding: 16px 28px 12px 28px;
  font-size: 1.09rem;
  box-shadow: 0 2px 14px 0 #04308820;
  transition: filter 0.17s, box-shadow 0.17s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-default:hover, .btn-default:focus {
  filter: brightness(1.09);
  background: linear-gradient(90deg, var(--sebrae-btn-hover) 60%, var(--sebrae-btn) 100%);
  box-shadow: 0 5px 24px 0 #1681e626;
  outline: none;
}

/* TAG/DESTAQUE */
.tag-blue {
  background: var(--sebrae-tag);
  color: #fff;
  border-radius: 6px;
  font-size: 0.97rem;
  font-weight: 800;
  padding: 4px 12px;
  margin: 0 2px;
  letter-spacing: 0.08em;
  display: inline-block;
}

@media (max-width: 700px) {
  .section-title {
    font-size: 1.30rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .btn-default {
    padding: 11px 14px 8px 14px;
    font-size: 0.97rem;
    border-radius: 7px;
  }
  .form-sebrae { padding: 16px 5vw 12px 5vw; max-width: 98vw;}
}