/* reset.css · normalización base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* (Fase 19) Red de seguridad anti-scroll lateral en móvil. 'clip' no rompe position:sticky
   ni crea un contenedor de scroll como 'hidden'. El único elemento ancho (.glo-table) ya
   vive dentro de .table-responsive con overflow-x:auto. */
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, picture, video, canvas, svg, iframe { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, p { overflow-wrap: break-word; }
:focus-visible { outline: none; }
[hidden] { display: none !important; }
