.modal-mensaje {
  position: fixed;
  top: -120px;
  right: 20px;
  min-width: 280px;
  max-width: 400px;
  padding: 16px 20px;
  background: #1FA3B1;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-size: 14.5px;
  text-align: center;   
  z-index: 10000;
  transition: all 0.35s ease;
  opacity: 0;
}

/* Mostrar mensaje */
.modal-mensaje.mostrar {
  top: 20px;
  opacity: 1;
}

/* Exito */
.modal-mensaje.exito {
  background: #1FA3B1;
}

/* Error */
.modal-mensaje.error {
  background: #d9363e;
}

/* Mobile centrado */
@media (max-width: 480px) {
  .modal-mensaje {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .modal-mensaje {
    right: 50%;
    transform: translateX(50%);
  }
}
