@charset "utf-8";
/* CSS Document */

.bienvenida-banner {
  background: linear-gradient(to right, #e0f7fa, #90caf9, #42a5f5);
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(66, 165, 245, 0.2);
  animation: deslizarAbajo 0.7s ease-out forwards;
  opacity: 0;
  position: absolute;
  z-index: 10;
  max-width: 300px;
  margin: 0 auto 10px;
	left: 40%;
}

@keyframes deslizarAbajo {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

