/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--bg-green);
  color: #fff;
  position: relative;
  z-index: 6;
}

/* Main grid */
.footer-main {
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 6vw, 56px);
  border-bottom: 1px solid rgba(255 255 255 / 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Nossos sites */
.footer-sites__title {
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--bg-yellow);
}

.footer-sites__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-sites__list a {
  color: rgba(255 255 255 / 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-sites__list a:hover {
  color: var(--bg-yellow);
}

/* App + Contato */
.footer-app__title {
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--bg-yellow);
}

.footer-app__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.footer-app__badges img {
  height: 36px;
  width: auto;
  border-radius: 6px;
}

.footer-contact__title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--bg-yellow);
}

.footer-contact__info {
  font-size: 0.875rem;
  color: rgba(255 255 255 / 0.85);
  line-height: 1.8;
  margin: 0;
}

/* Redes sociais */
.footer-social__title {
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--bg-yellow);
}

.footer-social__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255 255 255 / 0.1);
  transition: background-color 0.2s, transform 0.2s;
}

.footer-social__icons a:hover {
  background-color: var(--bg-yellow);
  transform: translateY(-2px);
}

.footer-social__icons a:hover svg path {
  fill: var(--bg-green);
}

.footer-social__icons svg {
  height: 1em;
  font-size: 1rem;
}

/* Mínimo legal */
.minimo-legal {
  padding: 1.25rem 0 !important;
  border-bottom: 1px solid rgba(255 255 255 / 0.15);
}

.minimo-legal__text {
  display: block;
  font-size: 0.5rem;
  line-height: 1 !important;
  color: rgba(255 255 255 / 0.85);
  margin: 0;
}

/* Copyright */
.footer-copyright {
  padding: 1.25rem 0;
  text-align: center;
}

.footer-copyright span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255 255 255 / 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-universal {
  position: fixed;
  bottom: 0.5rem;
  right: 1rem;
  margin: 0;
  font-size: 0.6rem;
  color: #fff;
  text-align: right;
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 9999;
}

@media (min-width: 1920px) {
  .footer-universal {
    font-size: 0.85rem;
    bottom: 0.75rem;
    right: 1.5rem;
  }
}