#contenedor-flores {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.flor-cayendo {
  position: absolute;
  top: -60px;
  opacity: 0;
  animation: caerFlor linear infinite;
}

@keyframes caerFlor {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  50% {
    transform: translate(40px, 250px) rotate(180deg);
  }
  100% {
    transform: translate(-40px, 600px) rotate(360deg);
    opacity: 0;
  }
}

#footerModalMama{
    font-size: 0.9em;
    color: #242B57 !important;
}