/* ─── Párrafo P1 ─── */
.p1 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #000000;
}

/* ─── Párrafo P2 ─── */
.p2 {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: 0em;
  text-transform: none;
  color: #000000;
}

/* ─── Footer ─── */
.site-footer {
  background: #F9F7F2;
  padding: 4vw 4vw 4vw 4vw;
}

/* ─── Grid 3 columnas ─── */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: flex-start;
  gap: 4vw;
  margin-bottom: 3vw;
}

/* ─── Títulos CONECTA / EXPLORA / SIGUE — P1 ─── */
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1rem;
}

/* ─── Links y texto — P2 ─── */
.footer-col p,
.footer-col a {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2em;
  letter-spacing: 0em;
  text-transform: none;
  color: #000000;
  display: block;
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}

.footer-col a {
  position: relative;
  width: fit-content;
}

.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0006CF;
  transition: width var(--transition);
}

.footer-col a:hover {
  color: #0006CF;
}

.footer-col a:hover::after {
  width: 100%;
}

/* Espacio entre grupos dentro de CONECTA */
.footer-col .group-gap {
  margin-top: 1rem;
}

/* ─── Copyright — P2 ─── */
.footer-bottom {
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0em;
  text-transform: none;
  color: #000000;
}

/* ─── Footer al fondo de la página ─── */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > main {
  flex: 1;
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .site-footer {
    padding: 8vw var(--site-gutter) 6vw;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
