/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding-top: var(--space-16);
}

/* Container */
.footer-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding: 0 var(--space-4) var(--space-12);
}

/* Brand */
.footer-logo {
  font-family: var(--font-title);
  font-size: var(--text-xl);
  color: var(--color-white);
  text-decoration: none;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-description {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
}

/* Titles */
.footer-title {
  font-size: var(--text-base);
  font-weight: 500;
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

/* Lists */
.footer-nav ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-services li {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-accent);
}

/* Contact */
.footer-contact p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-4);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-4);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* Desktop */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}



/* =========================
   FOOTER SOCIALS
========================= */

.footer-socials {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: var(--text-base);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}





.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-accent);
  color: var(--color-black);

  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-accent);

  font-size: 1.4rem;
  z-index: 999;

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    opacity var(--transition-fast);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}
