
body {
/*  padding-top: 60px;  */ /*adicionado quando usado o fixed-top no navbar principal do topo*/
}

/* ============================================================
   HOME — index.php
   ============================================================ */

/* BANNER
-------------------------------------------------- */
.banner-home {
  padding-bottom:8rem!important;
  padding-top:8rem!important;
  position: relative;
}

.banner-home::before {
   content: "";
   position: absolute;
   top: 0; left: 0;
   width: 100%; height: 100%;
   background-color: rgba(0, 0, 0, .20);
   pointer-events: none;
   z-index: 1 !important;
 }

.banner-content {
  position: relative;
  z-index: 2;
}

/* ── CAMPO DE BUSCA NO BANNER ───────────────────────────────── */
.home-search-form {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.home-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 1rem;
  color: #1a1a2e;
  background: transparent;
}

.home-search-input::placeholder { color: #9aa5b4; }

.home-search-input::-webkit-search-cancel-button,
.home-search-input::-webkit-search-decoration { display: none; }

.home-search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  background: #0F71B5;
  color: #fff;
  border: none;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.home-search-btn:hover { background: #0a5a94; }

.home-search-hint {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.home-search-hint a {
  color: rgba(255,255,255,.90);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.40);
}

.home-search-hint a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

@media (max-width: 575px) {
  .home-search-input { padding: 14px; font-size: .92rem; }
  .home-search-btn   { padding: 14px 18px; }
}

/* ── FEATURES BAR ───────────────────────────────────────────── */
.home-features { border-bottom: 1px solid #e9ecef; }

.home-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
}

.home-feature-icon { font-size: 1.4rem; color: #0F71B5; margin-bottom: 2px; }
.home-feature-num  { font-size: .9rem; font-weight: 700; color: #1a1a2e; line-height: 1.2; }
.home-feature-lbl  { font-size: .75rem; color: #6c757d; line-height: 1.3; }

/* ── SEÇÃO SEO ──────────────────────────────────────────────── */
.home-seo-section {
  border-top: 1px solid #e9ecef;
  padding-top: 2.5rem;
}

.home-seo-card {
  background: #fff;
  border: 1px solid rgba(15,113,181,.12);
  border-radius: 14px;
  padding: 28px 28px 24px;
  height: 100%;
}

.home-seo-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e8f4fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0F71B5;
  margin-bottom: 16px;
}

.home-seo-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.home-seo-card-text {
  font-size: .9rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 10px;
}

.home-seo-card-text:last-of-type { margin-bottom: 0; }

/* ── CARDS DE RECURSOS ──────────────────────────────────────── */
.home-recurso-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(15,113,181,.12);
  border-left: 3px solid #0F71B5;
  border-radius: 0 10px 10px 0;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .15s;
}

.home-recurso-card:hover {
  box-shadow: 0 6px 20px rgba(15,113,181,.10);
  transform: translateX(2px);
  color: inherit;
  text-decoration: none;
}

.home-recurso-icon    { font-size: 1.3rem; color: #0F71B5; flex-shrink: 0; margin-top: 2px; }
.home-recurso-titulo  { display: block; font-size: .9rem; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.home-recurso-desc    { display: block; font-size: .8rem; color: #6c757d; line-height: 1.5; }