/* 100 Problemas - Tema visual */
:root {
  --azul-escuro: #0b2545;
  --azul-medio: #13315c;
  --dourado: #f5a623;
  --cinza-claro: #f4f6f9;
  --texto-suave: #5c6b7a;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background-color: var(--cinza-claro);
  color: #1c2b3a;
}

a { text-decoration: none; }

.app-navbar {
  background-color: var(--azul-escuro);
}
.navbar-brand-logo {
  background: #fff;
  padding: .35rem .75rem;
  border-radius: .6rem;
  line-height: 0;
}
.footer-logo {
  background: #fff;
  padding: .4rem .8rem;
  border-radius: .6rem;
  display: inline-block;
}
.banner-promocional img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(11,37,69,.15);
}
.app-navbar .nav-link {
  font-weight: 500;
  color: rgba(255,255,255,.85) !important;
}
.app-navbar .nav-link:hover { color: #fff !important; }

.app-footer {
  background-color: var(--azul-escuro);
}
.app-footer a { color: rgba(255,255,255,.75); }
.app-footer a:hover { color: var(--dourado); }

.btn-primary {
  background-color: var(--azul-escuro);
  border-color: var(--azul-escuro);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--azul-medio);
  border-color: var(--azul-medio);
}

.btn-warning {
  background-color: var(--dourado);
  border-color: var(--dourado);
  color: #1c2b3a;
}
.btn-warning:hover { color: #1c2b3a; filter: brightness(0.95); }

.text-dourado { color: var(--dourado); }
.bg-azul { background-color: var(--azul-escuro); }

.hero-section {
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
  color: #fff;
  padding: 4.5rem 0 6rem;
}
.hero-section h1 { font-weight: 800; }
.hero-busca-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(11,37,69,.25);
  color: #1c2b3a;
}

.card-categoria {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(11,37,69,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.card-categoria:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11,37,69,.15);
}
.card-categoria .icone {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(11,37,69,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--azul-escuro);
}

.secao-titulo { font-weight: 700; color: var(--azul-escuro); }

.card-beneficio {
  border: none;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(11,37,69,.06);
}

.step-numero {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dourado);
  color: #1c2b3a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

.badge-status { font-size: .8rem; padding: .45em .75em; }

.card-dashboard {
  border: none;
  border-radius: .9rem;
  box-shadow: 0 6px 18px rgba(11,37,69,.08);
}

.sidebar-painel {
  background: #fff;
  border-radius: .9rem;
  box-shadow: 0 6px 18px rgba(11,37,69,.06);
}
.sidebar-painel .nav-link {
  color: #1c2b3a;
  border-radius: .6rem;
  padding: .6rem .9rem;
  font-weight: 500;
}
.sidebar-painel .nav-link.active,
.sidebar-painel .nav-link:hover {
  background: var(--azul-escuro);
  color: #fff;
}

.form-label { font-weight: 500; }

footer.app-footer h5, footer.app-footer h6 { color: #fff; }
