/* Footer & Mascote Lion (WhatsApp) */
footer {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--space-12);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
  padding: var(--space-10) 0;
}

.footer-column h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.footer-column p {
  font-size: var(--text-sm);
  line-height: 1.7;
  opacity: 0.85;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 3px;
  width: 16px;
}

.social-icons {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(var(--primary-rgb), 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: white;
}

.security-seals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.security-seals svg {
  height: 72px;
  width: auto;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--space-4) 0;
  text-align: center;
  font-size: var(--text-xs);
  opacity: 0.7;
}

.footer-bottom p {
  margin: var(--space-1) 0;
}

.footer-credit {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  opacity: 0.85;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.lion-mascot-btn {
  position: fixed;
  bottom: 0;
  right: 24px;
  z-index: var(--z-whatsapp);
  display: block;
  line-height: 0;
  text-decoration: none;
  background: none;
  box-shadow: none;
}

.lion-mascot-btn:hover,
.lion-mascot-btn:hover img {
  filter: none;
  opacity: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lion-mascot-btn img {
  display: block;
  width: 210px;
  max-width: min(210px, 40vw);
  height: auto;
  aspect-ratio: 1384 / 1480;
  transition: transform var(--transition);
  transform-origin: bottom right;
}

.lion-mascot-btn:hover img {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .lion-mascot-btn img {
    width: 155px;
  }

  .footer-content {
    padding: var(--space-8) 0;
    gap: var(--space-6);
  }

  .security-seals {
    justify-content: center;
  }

  .security-seals svg {
    height: 56px;
  }
}
