/* ==========================================================================
   PB Design System
   CORE · Reset
   ========================================================================== */

/* --------------------------------------------------------------
   Box sizing
-------------------------------------------------------------- */

*,
*::before,
*::after{
    box-sizing:border-box;
}

/* --------------------------------------------------------------
   Documento
-------------------------------------------------------------- */

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
    font-size: 80%; /* Escala global: 1rem = 12.8px. Reduce todo (textos, paddings, header, hero) un 20% */
}

body{
    margin:0;
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* --------------------------------------------------------------
   Elementos estructurales
-------------------------------------------------------------- */

main,
section,
article,
aside,
header,
footer,
nav{
    display:block;
}

/* --------------------------------------------------------------
   Tipografía
-------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure{
    margin:0;
}

ul,
ol{
    margin:0;
    padding:0;
}

li{
    list-style:none;
}

/* --------------------------------------------------------------
   Enlaces
-------------------------------------------------------------- */

a{
    color:inherit;
    text-decoration:none;
}

a:hover{
    text-decoration:none;
}

/* --------------------------------------------------------------
   Imágenes
-------------------------------------------------------------- */

img,
picture{
    display:block;
    max-width:100%;
    height:auto;
}

/* --------------------------------------------------------------
   Multimedia
-------------------------------------------------------------- */

video,
canvas,
svg{
    display:block;
    max-width:100%;
}

/* --------------------------------------------------------------
   Formularios
-------------------------------------------------------------- */

button,
input,
select,
textarea{
    font:inherit;
    color:inherit;
    background:none;
    border:none;
    outline:none;
}

button{
    cursor:pointer;
}

/* --------------------------------------------------------------
   Tablas
-------------------------------------------------------------- */

table{
    width:100%;
    border-collapse:collapse;
    border-spacing:0;
}

/* --------------------------------------------------------------
   Citas
-------------------------------------------------------------- */

blockquote{
    quotes:none;
}

blockquote::before,
blockquote::after{
    content:"";
}

/* --------------------------------------------------------------
   Elementos ocultos
-------------------------------------------------------------- */

[hidden]{
    display:none !important;
}
