.footer {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 1.5rem;
  align-items: start;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__phone,
.footer__wa {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__phone:hover,
.footer__wa:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.5rem 1.25rem;
    text-align: center;
  }

  .footer__links { align-items: center; }
  .footer__contact { align-items: center; }
}
