/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Imagem de fundo com zoom suave ── */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: bgZoom 8s ease forwards;
}

@keyframes bgZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.00);
  }
}

/* ── Gradiente escuro azul por cima ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(100deg,
      rgba(11, 31, 92, .82) 0%,
      rgba(11, 31, 92, .65) 40%,
      rgba(11, 31, 92, .12) 72%,
      transparent 100%); */


  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.15) 100%);
}


/* ── Conteúdo ── */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem 120px;
  width: 100%;
}


/* Título */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  max-width: 680px;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  opacity: 0;
  animation: fadeUp .65s .45s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-title span {
  background: linear-gradient(90deg, #6FACFF, #A8C4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Descrição */
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .65s .58s cubic-bezier(.22, 1, .36, 1) forwards;
}

/* Botão hero */
.hero-actions {
  opacity: 0;
  animation: fadeUp .65s .7s cubic-bezier(.22, 1, .36, 1) forwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1440A0 0%, #3B72F5 100%);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(30, 86, 208, .50);
  transition: transform .2s, box-shadow .2s, filter .2s;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(30, 86, 208, .60);
  filter: brightness(1.08);
}

.btn-hero:active {
  transform: translateY(0) scale(.98);
}

/* ── Keyframe compartilhado ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   MINI CARDS BAR
══════════════════════════════════════ */
.cards-bar {
  background: #0B1F5C;
}

.cards-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .3s;
  opacity: 0;
  transform: translateY(20px);
}

.mini-card:last-child {
  border-right: none;
}

/* Linha azul animada no hover */
.mini-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3B72F5, #6FACFF);
  transition: width .4s cubic-bezier(.22, 1, .36, 1);
}

.mini-card:hover::after {
  width: 100%;
}

.mini-card:hover {
  background: rgba(255, 255, 255, .04);
}

/* Ícone */
.mini-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(30, 86, 208, .30);
  border: 1px solid rgba(59, 114, 245, .35);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.mini-card:hover .mini-card-icon {
  background: rgba(30, 86, 208, .55);
  transform: scale(1.1) rotate(-4deg);
}

.mini-card-icon svg {
  width: 22px;
  height: 22px;
  color: #8BB8FF;
}

/* Texto */
.mini-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.mini-card-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.4;
}

/* Animação de entrada stagger (via JS) */
.mini-card.visible {
  animation: cardIn .55s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsivo ── */
@media (max-width: 960px) {
  .cards-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-card:nth-child(2) {
    border-right: none;
  }

  .mini-card:nth-child(3),
  .mini-card:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 60px 1.25rem 100px;
  }

  .cards-bar-inner {
    grid-template-columns: 1fr;
  }

  .mini-card {
    border-right: none !important;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .mini-card:first-child {
    border-top: none;
  }
}