/* =========================
   FOOTER
   ========================= */

.site-footer {
  background-color: rgba(0, 28, 4, 0.95);
  border-top: 1px solid rgba(170, 117, 12, 0.35);
  padding: 5.5rem 5%;
  color: var(--color-text);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  text-align: center;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.85rem;
}

.footer-logo {
  width: clamp(180px, 30vw, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.7));
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 247, 238, 0.8);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-contact {
  color: rgba(255, 247, 238, 0.78);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--color-gold);
  margin-top: 0.15rem;
}

.btn-footer-primary {
  border: 1px solid var(--color-gold);
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 0.85rem 1.2rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-footer-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(170, 117, 12, 0.35);
}

.footer-bottom {
  margin-top: 3.2rem;
  padding-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}

.footer-bottom small {
  color: rgba(255, 247, 238, 0.65);
  font-size: 0.9rem;
}

.footer-bottom .footer-mini-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.footer-bottom .footer-mini-links a {
  color: rgba(255, 247, 238, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-bottom .footer-mini-links a:hover {
  color: var(--color-gold-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 4.5rem 8%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  /* Evita que el footer quede tapado por `menu-bar-bottom` (fijo). */
  .site-footer {
    padding-bottom: 8rem;
  }
}

