/* ==========================================================
   FOOTER
========================================================== */

.sitio-web-footer-preview {
  margin-top: 24px;
  background: #111827;
  border-top: 1px solid #374151;
  padding: 18px 24px;
}

.sitio-web-footer-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* ==========================================================
   IZQUIERDA
========================================================== */

.sitio-web-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.sitio-web-footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.sitio-web-footer-company {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ==========================================================
   CENTRO
========================================================== */

.sitio-web-footer-rights {
  color: #ffffff;
  font-size: 13px;
  text-align: center;
  overflow-wrap: break-word;
}

/* ==========================================================
   DERECHA
========================================================== */

.sitio-web-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.sitio-web-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.sitio-web-footer-link:hover {
  opacity: 0.85;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 900px) {
  .sitio-web-footer-container {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .sitio-web-footer-left {
    justify-content: center;
  }

  .sitio-web-footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
