/* base.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-cuerpo);
  font-size: var(--text-base);
  color: var(--negro);
  background: var(--gris-100);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-titulo); font-weight: 600; line-height: 1.3; color: var(--gris-700); }
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-base); }
a { color: var(--cfe-verde); text-decoration: none; transition: var(--trans-base); }
a:hover { color: var(--cfe-verde-oscuro); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: var(--font-cuerpo); font-size: var(--text-base); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gris-200); }
::-webkit-scrollbar-thumb { background: var(--gris-400); border-radius: var(--radio-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--cfe-verde); }
::selection { background: var(--cfe-verde); color: var(--blanco); }
