/* estilos base del constructor de footer */

.bf-shell {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  overflow: hidden;
}

.bf-row {
  display: grid;
  gap: 0;
  align-items: stretch;
}

.bf-cell {
  min-width: 0;
}

.bf-block {
  height: 100%;
  padding: 16px 18px;
}

.bf-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
}

.bf-logo--left {
  justify-content: flex-start;
  text-align: left;
}

.bf-logo--center {
  justify-content: center;
  text-align: center;
}

.bf-logo--right {
  justify-content: flex-end;
  text-align: right;
}

.bf-logo__media {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bf-logo__media img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.bf-logo__secondary {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #94a3b8;
}

.bf-menu {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.bf-menu--left {
  justify-content: flex-start;
}

.bf-menu--center {
  justify-content: center;
}

.bf-menu--right {
  justify-content: flex-end;
}

.bf-menu__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bf-menu__link {
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.bf-menu__link:hover {
  opacity: .92;
}

.bf-social {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.bf-social__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bf-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
}

.bf-social__link:hover {
  border-color: rgba(91, 83, 255, 0.5);
  color: #5b53ff;
}

.bf-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.bf-text--left {
  text-align: left;
}

.bf-text--center {
  text-align: center;
}

.bf-text--right {
  text-align: right;
}

.bf-empty {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  border-radius: 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .bf-row {
    grid-template-columns: 1fr !important;
  }

  .bf-menu,
  .bf-logo,
  .bf-social,
  .bf-logo--left,
  .bf-logo--right,
  .bf-menu--left,
  .bf-menu--right,
  .bf-text--left,
  .bf-text--right {
    justify-content: center;
    text-align: center;
  }

  .bf-menu__list {
    justify-content: center;
  }

  .bf-social__list {
    justify-content: center;
  }
}
