/* ═══ FOOTER ═══ */
footer {
  background: #030303;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 64px 60px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  max-width: 320px;
}

.footer-brand-logo {
  height: 56px;
  width: auto;
  margin-bottom: 0;
  margin-top: -6px;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.25));
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

.social-btn.instagram::before {
  content: '📷';
}

.social-btn.facebook::before {
  content: 'f';
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.social-btn.whatsapp::before {
  content: '☎';
}

.social-btn.tiktok::before {
  content: '♫';
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.info-icon {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.info-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.info-text a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(158, 148, 136, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: rgba(158, 148, 136, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: '💬';
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(37, 211, 102, 0.28);
}
