@media (max-width: 600px) {
  .footer-cta h2 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .footer-cta p,
  .footer-contact a {
    font-size: 1.3rem !important;
  }
  .footer-contact span {
    font-size: 1.4rem !important;
  }
  .footer-bottom {
    font-size: 1.3rem !important;
  }
}
/* ===============================
   FOOTER — CONTACTO / CIERRE
=============================== */

.footer {
  background: #1A242C;
  color: #F4F1EC;
  padding: 7rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

/* CTA */

.footer-cta h2 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.footer-cta p {
  font-family: var(--font-body);
  font-size: 1rem;
  max-width: 420px;
  color: rgba(244,241,236,0.7);
}

/* Contact list */

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1.2rem;
}

.footer-contact span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
  margin-bottom: 0.2rem;
}

.footer-contact a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #F4F1EC;
  text-decoration: none;
}

.footer-contact a:hover {
  opacity: 0.7;
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(244,241,236,0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(244,241,236,0.5);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

