/* Barra animada separadora - Administración de condominio */
.barra-admin-animada {
    width: 100%;
    background: linear-gradient(90deg, #205081 0%, #2b6cb0 100%);
    padding: 0;
    margin: 0;
    align-items: center;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(26,54,93,0.08);
}
.barra-contenido {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.5em;
  position: relative;
  overflow: hidden;
}
.barra-icono {
  font-size: 1.5em;
  margin-right: 16px;
  animation: icon-bounce 1.6s infinite cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.barra-mensaje {
  color: #fff;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 #1a365d44;
  white-space: pre-line;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  margin-bottom: 1.5rem;
}
.barra-animada {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #e3eaf5 0%, #b5c9e8 100%);
  animation: barra-move 2.8s linear infinite;
  opacity: 0.7;
}
@keyframes barra-move {
  0% { left: -100%; right: 100%; }
  50% { left: 0; right: 0; }
  100% { left: 100%; right: -100%; }
}
@media (max-width: 700px) {
  .barra-contenido {
    padding: 0.7em 0.5em;
  }
  .barra-mensaje {
    padding: 1rem 0rem;
    font-size: 0.98rem;
    text-align: center;
  }
  .barra-icono {
    font-size: 1.1em;
    margin-right: 8px;
  }
}
