/*** Banner Inferior ***/
.bottom-banner {
  --alto: 25px;
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: 250px;
  height: var(--alto);
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  line-height: var(--alto);
  border-top-left-radius: 25px 50px;
  border-top-right-radius: 25px 50px;
  transition: bottom 0.5s ease-in-out;
  z-index: 99;
}