.hero-section {
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(22,55,84,0.98), rgba(47,121,173,0.94));
  color: var(--cor-branco);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  max-width: 920px;
  margin-bottom: 20px;
  color: var(--cor-branco);
}

.hero-content h1 span {
  display: block;
  color: #bfe4ff;
}

.hero-content p {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  font-weight: 600;
  color: var(--cor-branco);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}
