/* ============================================================
   LITUS — Pulido global (se carga en todas las páginas)
   ============================================================ */

/* Tipografía más nítida */
html{ -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; text-rendering:optimizeLegibility; }

/* Selección de texto con color de marca */
::selection{ background:#E6C7A8; color:#20211C; }

/* Scrollbar fino y discreto */
*{ scrollbar-width:thin; scrollbar-color:rgba(44,64,52,.35) transparent; }
::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{
  background:rgba(44,64,52,.3); border-radius:999px;
  border:3px solid transparent; background-clip:content-box;
}
::-webkit-scrollbar-thumb:hover{ background:rgba(44,64,52,.55); border:3px solid transparent; background-clip:content-box; }

/* Links: subrayado con aire */
a{ text-underline-offset:3px; }

/* Imágenes: sin arrastre accidental ni selección azul */
img{ -webkit-user-drag:none; user-select:none; }

/* Párrafos y títulos: cortes de línea más elegantes */
h1,h2,h3,h4{ text-wrap:balance; }
p,li{ text-wrap:pretty; }
