/* Shared responsive footer styles */
.fixed-footer{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(180,180,180,.55);
  color: #2b2b2b;
  z-index: 1000;
  padding: 6px 12px;
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 -1px 2px rgba(0,0,0,0.08);
  text-align: center;
}
.fixed-footer .footer-inner{
  display:flex; align-items:center; justify-content:center; gap:10px; max-width:1200px; margin:0 auto; flex-wrap:wrap; padding:6px 8px;
}
.fixed-footer img{ height:20px; width:auto; display:block; opacity:.9; }
.fixed-footer .footer-text{ font-size:12px; line-height:1.4; white-space:normal; text-align:center; overflow:visible; text-overflow:clip; opacity:.85; }

/* Reserve space so content doesn't sit under the fixed footer */
body{ padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }

/* Responsivo para telas menores */
@media (max-width: 640px){
  .fixed-footer .footer-inner{ flex-direction:column; gap:6px; }
  .fixed-footer img{ height:18px; }
  .fixed-footer .footer-text{ font-size:11px; padding: 0 8px; }
}
@media (max-width: 400px){
  .fixed-footer img{ height:16px; }
  .fixed-footer .footer-text{ font-size:10px; }
}
