/* ===== FOOTER STYLES ===== */
.footer {
  background-color: #584ccc; !important;
  color: #f5f5f5;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  letter-spacing: 1.2px;
  padding: 15px;
  margin-top: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer p {
  margin: 0;
  padding: 0;
}

.footer p:first-child {
  margin-bottom: 10px;
}

/* Enlaces en color dorado */
.footer a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover,
.footer a:focus {
  color: #ffd700; /* Golden yellow on hover */
  text-decoration: underline;
}

.footer a:visited {
  color: gold;
}

/* Responsive: full width on small screens */
@media (max-width: 991.98px) {
  .footer {
    margin-left: 0;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}

