/* AWD Sounds — Footer v1 */

/* Esconde somente o rodapé padrão do Astra. */
#colophon {
  display: none !important;
}

.awd-site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(227,252,2,.065),
      transparent 28%
    ),
    #050607;
  color: #f7f8fa;
}

.awd-site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.awd-footer-brand {
  max-width: 420px;
}

.awd-footer-logo {
  display: inline-block;
}

.awd-footer-logo img {
  width: auto;
  height: 44px;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.awd-footer-brand p {
  max-width: 390px;
  margin: 1.5rem 0 1rem;
  color: #929ba7;
  font-size: .95rem;
  line-height: 1.75;
}

.awd-footer-location {
  color: #e3fc02;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.awd-footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .8rem;
}

.awd-footer-column h2 {
  margin: 0 0 .75rem;
  color: #f7f8fa;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.awd-footer-column a {
  position: relative;
  color: #929ba7;
  font-size: .88rem;
  text-decoration: none;
  transition:
    color .18s ease,
    transform .18s ease;
}

.awd-footer-column a:hover {
  color: #e3fc02;
  transform: translateX(3px);
}

.awd-site-footer__bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #68717c;
  font-size: .72rem;
  letter-spacing: .04em;
}

.awd-footer-top {
  border: 0;
  background: transparent;
  color: #c3c8d0;
  font-size: .72rem;
  font-weight: 750;
  cursor: pointer;
  transition: color .18s ease;
}

.awd-footer-top:hover {
  color: #e3fc02;
}

@media (max-width: 900px) {
  .awd-site-footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .awd-footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .awd-site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
    padding-block: 4rem;
  }

  .awd-footer-brand {
    grid-column: 1 / -1;
  }

  .awd-footer-column:last-child {
    grid-column: 1 / -1;
  }

  .awd-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.5rem;
  }
}
