/* =========================================================
   Mizunara Studio Design System
   reset.css
   Versión: 1.0
   ========================================================= */

/* Box Model */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset de márgenes */

* {
    margin: 0;
    padding: 0;
}

/* Scroll suave */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Body */

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Imágenes */

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Formularios */

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

/* Botones */

button {
    cursor: pointer;
    background: none;
}

/* Links */

a {
    color: inherit;
    text-decoration: none;
}

/* Listas */

ul,
ol {
    list-style: none;
}

/* Tablas */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Títulos */

h1,
h2,
h3,
h4,
h5,
h6 {
    font: inherit;
    font-weight: inherit;
}

/* Párrafos */

p {
    overflow-wrap: break-word;
}

/* Textarea */

textarea {
    resize: vertical;
}

/* Elementos multimedia */

iframe {
    border: 0;
}

/* Evita problemas con elementos ocultos */

[hidden] {
    display: none !important;
}

/* Selección de texto */

::selection {
    background: rgba(200,164,107,.25);
}

/* Scrollbar (Chrome / Edge) */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(200,164,107,.45);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(200,164,107,.65);
}