/* ===============================
   ESTRUCTURA Y LAYOUT GENERAL
   =============================== */

/* Barra superior de logos */
.top-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
  background: var(--color-cielo);
}
.top-logos img {
  height: 32px;
  object-fit: contain;
}
.top-logos .logos-left,
.top-logos .logos-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 24px var(--space);
  background: var(--color-secundario);
  color: #eafff6;
}
.site-footer img {
  height: 40px;
  margin: 0 auto 10px;
}
.site-footer .claim {
  font-weight: 800;
  color: #7ef0b8;
}

/* Diseño responsive general */
@media (max-width: 720px) {
  .top-logos img {
    height: 26px;
  }
}
/* --- Footer móvil tipo app --- */
.menu-footer-movil {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primario);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 999;
  border-top: 2px solid rgba(255,255,255,0.2);
}

.menu-footer-movil a {
  color: #fff;
  font-family: var(--font-principal);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
}

.menu-footer-movil a.activo {
  color: #ffeb3b; /* amarillo destacado */
}

/* En pantallas grandes, no mostrarlo */
@media (min-width: 960px) {
  .menu-footer-movil { display: none; }
}

