/* Footer global — mantiene UI naranja .acmp-footer, contenido canónico desde rules/footer.json */

.acmp-footer--global .acmp-footer-inner--global {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.acmp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.acmp-footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.acmp-footer-guide {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
}

.acmp-footer-guide.tagline {
  opacity: 1;
  color: #fff;
}

.acmp-footer-guide strong {
  font-weight: 700;
  color: #fff;
}

.acmp-footer-email {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.acmp-footer-email a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.acmp-footer-email a:hover {
  opacity: 0.9;
}

.acmp-footer-newsletter {
  max-width: 480px;
  width: 100%;
}

.acmp-footer-newsletter-heading {
  font-family: var(--font-section, 'Poppins', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  text-align: left;
}

.acmp-footer-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  width: 100%;
}

.acmp-footer-col h4 {
  font-family: var(--font-section, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}

.acmp-footer-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.acmp-footer-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.acmp-footer-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.acmp-footer-secondary-btn.is-catalogo {
  background: #fff;
  color: var(--acmp-orange, #f74604);
}

.acmp-footer-secondary-btn.is-catalogo:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--acmp-orange-700, #c93803);
}

.acmp-footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 8px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.acmp-footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.acmp-footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.acmp-footer-legal-sep {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .acmp-footer--global .acmp-footer-inner--global {
    padding: 48px 20px 24px;
    gap: 32px;
  }

  .acmp-footer-links-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .acmp-footer-secondary {
    flex-direction: column;
  }

  .acmp-footer-secondary-btn {
    width: 100%;
  }

  .acmp-footer-legal {
    padding: 0 20px 8px;
    font-size: 12px;
  }

  .acmp-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
