/* /assets/css/footer.css */

/* Sticky footer: el footer queda pegado abajo */
html, body { height: 100%; }

.sf-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sf-main{
  flex: 1;
}

/* Footer estilo como tu imagen */
.sf-footer{
  margin-top: auto;
  background: linear-gradient(135deg, #001234, #002256);
  color: #fff;
  padding: 18px 18px;
}

.sf-footer__inner{
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sf-footer__left{
  display: flex;
  align-items: center;
  gap: 14px;
}

.sf-footer__logo{
  width: 36px;
  height: 36px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #0ea5ff, #22c55e);
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}

.sf-footer__brand{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}

.sf-footer__sub{
  opacity: .9;
  font-size: 13px;
  margin-top: 3px;
}

.sf-footer__right{
  opacity: .95;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}
