/* Rodapé compartilhado – AçouguePro */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 173, 191, 0.5), rgba(217, 43, 43, 0.5), transparent);
}
.footer-cta-top {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .footer-cta-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-cta-top a.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #D92B2B;
  background: #FFFFFF;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.footer-cta-top a.footer-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.footer-heading {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 1rem;
}
.footer-link {
  display: inline-block;
  font-size: 0.875rem;
  color: #94A3B8;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(2px);
}
.footer-more {
  margin-top: 0.75rem;
}
.footer-more summary {
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748B;
  list-style: none;
}
.footer-more summary::-webkit-details-marker {
  display: none;
}
.footer-more summary:hover {
  color: #CBD5E1;
}
.footer-more[open] summary {
  color: #04ADBF;
  margin-bottom: 0.5rem;
}
.footer-more ul {
  padding-top: 0.25rem;
}
.footer-logo-wrap {
  display: inline-block;
  max-width: 100%;
}
.footer-logo {
  display: block;
  width: auto;
  height: clamp(2rem, 6.5vw + 0.5rem, 2.75rem);
  max-width: min(11rem, 100%);
  object-fit: contain;
  object-position: left center;
}
