/* ─── Hero (página inicial) ──────────────────────────────────────────────── */
.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--azul-escuro);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(13,71,161,.86), rgba(13,71,161,.58), rgba(13,71,161,.18)),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero .container { position: relative; z-index: 1; }
h1 { max-width: 720px; margin: 18px 0; font-size: clamp(34px, 6vw, 64px); line-height: 1.08; }
.hero p { max-width: 680px; font-size: 18px; color: rgba(255, 255, 255, 0.9); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

@media (max-width: 860px) {
  .hero { min-height: 680px; }
}
