/* A composição WebP tem transparência: não precisa de card nem de máscara. */
.home-hero {
  background: radial-gradient(circle at 72% 38%, rgb(123 76 190 / 7%), transparent 43%), #fbf9fd;
}

.home-hero::before {
  display: none;
}

.home-hero__stage {
  width: 108%;
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-2%);
}

.home-hero__floripa-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgb(25 12 45 / 8%));
}

@media (max-width: 1100px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero__visual {
    width: min(100%, 730px);
    margin-inline: auto;
  }

  .home-hero__stage {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 520px) {
  .home-hero__stage {
    width: 108%;
    transform: translateX(-4%);
  }
}
