/* Rodapé compartilhado — páginas internas */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer {
  background: #2d3436;
  padding: 48px 0 0;
  margin-top: auto;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-brand .logo-icon,
.site-footer-brand .logo-text {
  color: #ffffff;
}

.site-footer-brand .logo-icon {
  font-size: 1.8rem;
}

.site-footer-brand .logo-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.site-footer-brand .logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
}

.site-footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

.site-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-links a:hover {
  color: #ffffff;
}

.site-footer-bottom {
  text-align: center;
  padding: 24px 0;
}

.site-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.site-footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 600;
}

.site-footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .site-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .site-footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer-links {
    justify-content: center;
  }
}
