@charset "utf-8";
/* ============================================================
   BAYMEET · RESET BASE
   ruta: public_html/assets/css/base/reset.css
============================================================ */

/* ------------------------------------------------------------
   1. BOX MODEL UNIVERSAL
------------------------------------------------------------ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

/* ------------------------------------------------------------
   2. HTML / BODY
------------------------------------------------------------ */

html {
    width: 100%;
    min-width: 320px;

    font-size: 16px;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

    scroll-behavior: auto;
}

body {
    width: 100%;
    min-width: 320px;
    min-height: 100vh;

    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}

/* ------------------------------------------------------------
   3. ESTRUCTURA HTML5
------------------------------------------------------------ */

main,
header,
footer,
nav,
section,
article,
aside {
    display: block;
}

/* ------------------------------------------------------------
   4. MEDIA
------------------------------------------------------------ */

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
}

img,
video,
canvas {
    height: auto;
}

svg {
    display: inline-block;
    flex-shrink: 0;
}

/* ------------------------------------------------------------
   5. FORMULARIOS
------------------------------------------------------------ */

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button,
input,
textarea,
select {
    border: 0;
    background: transparent;
}

button {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

input,
textarea,
select {
    min-width: 0;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: none;
}

:focus-visible {
    outline: 3px solid rgba(248, 17, 66, .28);
    outline-offset: 3px;
}

/* Evita zoom automático en iPhone */
@supports (-webkit-touch-callout: none) {
    input,
    select,
    textarea {
        font-size: 16px;
    }
}

/* ------------------------------------------------------------
   6. ENLACES
------------------------------------------------------------ */

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

/* ------------------------------------------------------------
   7. LISTAS / TABLAS
------------------------------------------------------------ */

ul,
ol {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------------------------------------------------------
   8. TOUCH MOBILE
------------------------------------------------------------ */

a,
button,
label,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button,
label,
select,
input[type="checkbox"],
input[type="radio"] {
    touch-action: manipulation;
}

/* ------------------------------------------------------------
   9. SCROLLBAR
------------------------------------------------------------ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #eeeeee;
}

::-webkit-scrollbar-thumb {
    background: #b8b8b8;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999999;
}