/* ============================================================
   PALO ROSA — reset.css
   Reset moderno basado en Josh W. Comeau
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #0A0A0A;
  color: #E5E2E1;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* ── Scrollbar personalizada ── */
::-webkit-scrollbar         { width: 8px; }
::-webkit-scrollbar-track   { background: #0A0A0A; }
::-webkit-scrollbar-thumb   { background: #353534; border-radius: 0px; }
::-webkit-scrollbar-thumb:hover { background: var(--rosa-principal); }
