/* Rodapé institucional — compartilhado (ex.: página Sobre) */

.site-footer {
  position: relative;
  background: #0d1e0c;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-accent {
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  overflow: hidden;
}

.site-footer-accent::before,
.site-footer-accent::after {
  content: "";
  width: min(72px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
}

.site-footer-accent::after {
  background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.2));
}

.site-footer-accent iconify-icon {
  font-size: 1.45rem;
  color: rgba(143, 208, 132, 0.85);
}

@media (prefers-reduced-motion: no-preference) {
  .site-footer-accent iconify-icon {
    animation: site-footer-float 5s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-accent iconify-icon {
    animation: none;
  }
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.25rem 3rem 2.5rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 2.75rem;
}

.site-footer-logo {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.site-footer-logo:hover {
  color: rgba(190, 232, 184, 0.95);
}

.site-footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.42);
  max-width: 22rem;
  margin: 0;
}

.site-footer-heading {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin: 0 0 1.1rem;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer-links--contact {
  gap: 1rem;
}

.site-footer-links a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer-contact-line a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.site-footer-contact-line a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer-contact-line iconify-icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  font-size: 1rem;
  opacity: 0.75;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-copy {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer-legal a {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

@keyframes site-footer-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

@media (max-width: 900px) {
  .site-footer-inner {
    padding: 2.5rem 1.25rem 2rem;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
