.card-banner-custom {
  width: 100%;
  height: 361px;
  flex-shrink: 0;
  position: relative;
  border-radius: 19px;
}

.card-img-custom {
  width: 100%;
  height: 361px;
  object-fit: cover;
  position: absolute;
}

.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
  background: rgba(255, 255, 255, 0.36);
  overflow: hidden;
}

/* faixa de brilho animada */
.gradient-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
          90deg,
          transparent,
          rgba(77, 77, 77, 0.6),
          transparent
  );
  transform: skewX(-20deg);
  transition: all 0.3s ease;
}

/* efeito contínuo ao hover */
.card-banner-custom:hover .gradient-overlay::before {
  animation: shine 1s linear forwards;
}

@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}

.gradient-overlay span{
  color: #FFF;
  font-size: 14.4px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px; /* 133.333% */
  text-transform: uppercase;
}

.floating-btn {
  width: 28px;
  height: 28px;
  background-color: #FFD600; /* cor amarela */
  border-radius: 50%;
  bottom: 22px;
  right: 12px;
}

#banner{
  min-height: 1150px;
}
#banner .container{
  margin-top: 178px!important;
}

@media (max-width: 800px) {
  #banner{
    min-height: 300px;
  }
  #banner .container{
    margin-top: 30px!important;
  }
}

