:root{
  --footer-bg: #ffffff;           /* fondo del bloque footer */
  --footer-text: #2a2f3a;         /* texto principal */
  --footer-muted: #667085;        /* texto secundario */
  --footer-link: #0a2540;         /* links */
  --footer-link-hover: #0b3d75;   /* hover */
  --footer-divider: #e9edf3;      /* líneas suaves */
}

/* contenedor principal */
.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  /*border-top: 1px solid var(--footer-divider);*/
}

/* parte superior (columnas) */
.footer-top{ padding: 44px 0 22px; }
.footer-top .wrap{ max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }

.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* info más ancha */
  gap: 42px 48px;
  align-items: start;
  /*justify-items: center;*/
}

.footer-col{}
.footer-title{
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--footer-text);
  margin: 0 0 14px;
}

.footer-org{ font-weight: 600; margin-bottom: 6px; }
.footer-address{ margin: 0 0 8px; line-height: 1.6; color: var(--footer-muted); }
.footer-mail{ color: var(--footer-link); text-decoration: none; }
.footer-mail:hover{ color: var(--footer-link-hover); text-decoration: underline; }

/* menús */
.footer-menu,
.footer-menu ul{ list-style: none; margin: 0; padding: 0; }
.footer-menu li + li{ margin-top: 10px; }
.footer-menu a{
  color: var(--footer-link);
  text-decoration: none;
  line-height: 1.6;
}
.footer-menu a:hover{ color: var(--footer-link-hover); text-decoration: underline; }

/* fila inferior (logo + ©  |  redes) */
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--footer-divider);
  margin-top: 24px;
  padding-top: 18px;
}

.footer-brand{ display: inline-flex; align-items: center; gap: 16px; }
.footer-brand img,
.footer-brand .custom-logo{ height: 36px; width: auto; display: block; }
.footer-copy{ color: var(--footer-muted); font-size: .95rem; }

/* Redes: chips circulares como en producción */
.footer-social{ display: flex; align-items: center; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-social a{
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--footer-divider);
  display: inline-flex; align-items: center; justify-content: center;
  color: #082a4a; text-decoration: none;
  font-size: 14px; line-height: 1;
  transition: .18s ease;
}
.footer-social a:hover{
  background: #082a4a;
  color: #fff;
  border-color: #082a4a;
}

/* Responsivo */
@media (max-width: 1024px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 640px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: center; gap: 12px; }
  .copyright {display: flex; justify-content: center;}
  .site-footer{
    background: var(--footer-bg);
    color: var(--footer-text);
    /*border-top: 1px solid var(--footer-divider);*/
	display: flex;
	justify-content: center;
  }
}



