/* assistente.footer.css – Visuals only (layout in framework.css) */

.chat-footer {
  background-color: #06512f; 
  color: #eee;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid #333; /* Subtle separator from chat area */
}

.chat-footer p {
  margin: 0;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 868px) {
  .chat-footer {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

#footerr-rotator {
  text-align: center;
  padding: 0.9rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#rotating-message {
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 0.7s ease;
}

#rotating-message.active {
  opacity: 1;
}

#rotating-message a {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: underline;
}

#rotating-message a:hover {
  color: #f97316;
}

.msg-count {
  color: #10b981;
  font-weight: 600;
}