@charset "utf-8";
/* ============================================================
   BAYMEET · RESET PRO (limpio, moderno, sin duplicados)
   ruta: public/assets/css/core/reset.css
============================================================ */

/* ------------------------------------------------------------
   1. BOX MODEL UNIVERSAL
------------------------------------------------------------ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ------------------------------------------------------------
   2. HTML BASE
------------------------------------------------------------ */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    touch-action: manipulation;
}

/* ------------------------------------------------------------
   3. BODY BASE
------------------------------------------------------------ */
body {
    min-height: 100vh;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------------------------------
   4. MEDIA ELEMENTOS
------------------------------------------------------------ */
/* SVG PREMIUM — NO RESPONSIVE, NO RASTER */
svg {
    display: inline-block;
        vector-effect: non-scaling-stroke;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
    image-rendering: optimizeQuality;
}
/* ------------------------------------------------------------
   5. FORM ELEMENTS (moderno)
------------------------------------------------------------ */
input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
}

input,
textarea,
select {
    background-color: transparent;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Evitar zoom en iOS */
@supports (-webkit-touch-callout: none) {
    input, select, textarea {
        font-size: 16px;
    }
}

/* ------------------------------------------------------------
   6. ENLACES
------------------------------------------------------------ */
a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* ------------------------------------------------------------
   7. LISTAS Y TABLAS
------------------------------------------------------------ */
ul, ol {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------------------------------------------------------
   8. BOTONES
------------------------------------------------------------ */
button {
    cursor: pointer;
}

/* ------------------------------------------------------------
   9. SCROLLBAR (WebKit)
------------------------------------------------------------ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #e7e7e7;
}
::-webkit-scrollbar-thumb {
    background: #b4b4b4;
    border-radius: 4px;
}

/* ------------------------------------------------------------
   10. ELEMENTOS HTML5 (compatibilidad)
------------------------------------------------------------ */
main, header, footer, nav, section, article, aside {
    display: block;
}
