/*
 * MAC Locações - Footer Styles
 */

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: linear-gradient(135deg, var(--color-dark) 0%, #111827 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

/* ===========================
   FOOTER CONTENT
   =========================== */
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===========================
   FOOTER COLUMNS
   =========================== */
.footer-col {
  padding: 0 0.5rem;
}

.footer-title {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.footer-text {
  color: #d1d5db;
  line-height: 1.6;
  font-size: var(--font-size-sm);
}

/* ===========================
   FOOTER LINKS
   =========================== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  font-size: var(--font-size-sm);
  transition: all var(--transition-base) ease;
  display: inline-block;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

/* ===========================
   FOOTER CONTACT
   =========================== */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.mac-footer-contact li {
  color: #d1d5db;
  margin-bottom: 0.75rem;
  font-size: var(--font-size-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.footer-contact li a,
.mac-footer-contact li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

.footer-contact li svg,
.mac-footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===========================
   FOOTER SOCIAL
   =========================== */
.footer-social,
.mac-social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link,
.mac-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  border-radius: 12px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mac-social-links a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-link:hover,
.mac-social-links a:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

/* ===========================
   FOOTER BOTTOM
   =========================== */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9ca3af;
  font-size: var(--font-size-sm);
  margin: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 639px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}
