.hero {
  position: relative;
  border-radius: var(--pico-border-radius);
  overflow: hidden;
}
.hero img {
  display: block;
  width: 100%;
  height: auto;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.7) 100%);
}
.hero .brand {
  position: absolute;
  z-index: 1;
  inset: 1.5rem auto auto 0;
  margin: 0;
  padding: 0 1.5rem;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero .brand .verde {
  color: #8fce00;
}
.hero h1 {
  position: absolute;
  z-index: 1;
  inset: auto 0 1.5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-inline-size: 26ch;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
}
