.hero-destaque {
  background-color: #464e60;
  padding: 70px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
  margin-top: -56px;
}

.hero-destaque .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.hero-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-card:hover img {
  transform: scale(1.05);
}

/* Overlay escuro com gradiente */
.hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 80%);
  color: #fff;
  z-index: 2;
}

.hero-info .categoria {
  font-size: 11px;
  font-weight: 600;
  background-color: #0077c2;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.hero-card--grande .hero-info h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.hero-card--mini .hero-info h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.hero-lateral .hero-card--mini:not(:last-child) {
  margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-destaque .container {
    grid-template-columns: 1fr;
  }

  .hero-lateral {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .hero-card--mini .hero-info h3 {
    font-size: 14px;
  }
}

.wave-divider {
  position: relative;
  width: 100%;
  /* height: 100px; */
  overflow: hidden;
  background: transparent;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}


