
/* =========================================================
   STICKERBIKE — FOOTER SIMPLE LOGO + REDES
   ========================================================= */

.public-footer-simple{
  min-height:112px !important;
  display:flex !important;
  align-items:center !important;
  padding:24px clamp(36px,4vw,76px) !important;
  background:#071526 !important;
  border-top:1px solid rgba(255,255,255,.05);
}

.footer-brand-social{
  display:flex;
  align-items:center;
  gap:22px;
}

.footer-stickerbike-logo{
  display:flex;
  align-items:center;
  min-height:55px;
}

.footer-stickerbike-logo img{
  display:block;
  width:auto;
  max-width:190px;
  max-height:62px;
  object-fit:contain;
}

.footer-stickerbike-logo strong{
  color:#fff;
  font-size:19px;
  font-weight:950;
  letter-spacing:.02em;
}

.footer-social-links{
  display:flex;
  align-items:center;
  gap:9px;
  padding-left:20px;
  border-left:1px solid rgba(255,255,255,.14);
}

.footer-social-links a{
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.20);
  border-radius:50%;
  background:rgba(255,255,255,.035);
  color:#fff;
  transition:
    background .16s ease,
    border-color .16s ease,
    color .16s ease,
    transform .16s ease;
}

.footer-social-links svg{
  width:20px;
  height:20px;
}

@media (hover:hover) and (pointer:fine){
  .footer-social-links a:hover{
    transform:translateY(-2px);
    border-color:var(--brand-primary,#ff6413);
    background:var(--brand-primary,#ff6413);
    color:#fff;
  }
}

@media(max-width:620px){
  .public-footer-simple{
    min-height:100px !important;
    padding:22px 20px !important;
  }

  .footer-brand-social{
    width:100%;
    justify-content:center;
    gap:16px;
  }

  .footer-stickerbike-logo img{
    max-width:145px;
    max-height:50px;
  }

  .footer-social-links{
    padding-left:15px;
  }

  .footer-social-links a{
    width:37px;
    height:37px;
  }
}


/* =========================================================
   FOOTER v2 — CONTENIDO ALINEADO A LA IZQUIERDA
   ========================================================= */
.public-footer-simple{
  justify-content:flex-start !important;
  text-align:left !important;
}

.footer-brand-social{
  width:auto !important;
  margin:0 !important;
  justify-content:flex-start !important;
  text-align:left !important;
}

@media(max-width:620px){
  .footer-brand-social{
    width:auto !important;
    margin:0 !important;
    justify-content:flex-start !important;
  }
}
