/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 24px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--trans);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--dark);
  color: var(--white);
  padding: 16px 0;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--teal-soft);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-accept,
.cookie-reject {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.cookie-reject {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ===== STICKY WHATSAPP ===== */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(172, 151, 114, .35);
  transition: bottom var(--trans), background var(--trans), transform var(--trans);
  text-decoration: none;
}

.whatsapp-sticky:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .whatsapp-sticky-text {
    display: none;
  }

  .whatsapp-sticky {
    padding: 14px;
    border-radius: 50%;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
