/******* Do not edit this file *******
Code Snippets Manager
Saved: Nov 04 2025 | 10:52:26 */
@charset "UTF-8";
/* --- VARIABLES GLOBALES --- */
:root {
  /* Altura por defecto para tablet y PC */
  --footer-height: 60px;
}
/* --- ESTILOS DEL FOOTER FIJO (Para todas las pantallas) --- */
.gb-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--footer-height);
  /* Usa la variable para la altura */
  z-index: 9999;
  /* Tus estilos visuales */
  padding: 10px;
  background-color: #333;
  text-align: center;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
.gb-fixed-footer a {
  color: #fff;
  text-decoration: none;
}
/* Empuja el contenido principal para que el final no quede oculto detrás del footer */
body {
  padding-bottom: var(--footer-height) !important;
  /* Usa la variable para el padding */
}
/* --- AJUSTE DE ALTURA PARA MÓVIL (768px o menos) --- */
@media (max-width: 768px) {
  :root {
    /* Sobrescribimos la variable SÓLO para pantallas móviles */
    --footer-height: 120px;
    /* ¡El doble de altura! Ajusta si es necesario */
  }
}
