.banner-galeria {
  height: 15vh;
  background: var(--bg-default);
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;
}

.solar {
  margin-bottom: 3rem;
}

.solar .solar .customers-items {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 1rem !important;
  margin-top: 2rem;
}

.solar .customers-items .banner-customer {
  height: 45vh;
  background-position: center;
  background-size: cover;
  border-radius: 0.5rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.solar .customers-items .banner-customer .legend {
  opacity: 0;
  transform: translateY(20px); /* Começa deslocado para baixo */
  visibility: hidden;
  padding: 1.5rem;
  background: #00000091;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  text-align: center;
  font-size: 0.85rem;

  margin-bottom: 0.03rem;
  height: 60% !important;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
}

.solar .customers-items .banner-customer .customer-footer {
  background: #00000091;
  padding: 1.5rem;

  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;

  color: #fff;
}

.solar .customers-items .banner-customer:hover .legend {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
