/* 1. Box-sizing sólido y predecible */
*, *::before, *::after {
    box-sizing: border-box;
    min-width: 0;   /* evita overflow horizontal accidental */
}

/* 2. Elimina márgenes por defecto */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote {
    margin: 0;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* 3. Tipografía y suavizado */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: system-ui, sans-serif;
}

/* 4. Altura estable para layouts tipo app */
html, body {
    height: 100%;
}

/* 5. Imágenes y medios nunca se desbordan */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 6. Inputs, botones y selects heredan fuente */
input, button, textarea, select {
    font: inherit;
}

/* 7. Botones sin estilos raros y con pointer */
button {
    cursor: pointer;
    border: none;
    background: none;
}

/* 8. Enlaces sin estilos molestos */
a {
    color: inherit;
    text-decoration: none;
}

q::before {
  content: '"';
}

q::after {
  content: '"';
}