/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #0d1b2a;
  color: #cbd5e1;
  padding: 3rem 0 0;
  margin-top: 3rem;
}
.site-footer a {
  color: #93c5fd;
}
.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 0.4rem;
}
.footer-grid a {
  font-size: 0.85rem;
  opacity: 0.8;
}
.footer-grid a:hover {
  opacity: 1;
}
.footer-description {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #141e33;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
}

/* From José Rodrigues section */
.footer-from {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.footer-from:hover {
  opacity: 1;
}
.footer-from-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.footer-from-logo {
  height: 2rem;
  object-fit: contain;
}
.footer-from a {
  display: flex;
  align-items: center;
}
.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
