/**
 * Reset CSS para Idea Creatividad
 * Normaliza los estilos base en todos los navegadores
 */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Eliminar márgenes y padding por defecto */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Configuración HTML5 para navegadores antiguos */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Configuración base del body */
body {
    line-height: 1.5;
    tab-size: 4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Listas */
ol, ul {
    list-style: none;
}

/* Citas */
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Tablas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Imágenes y multimedia */
img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Formularios */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/* Eliminar el outline por defecto en elementos interactivos */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline-offset: 2px;
}

/* Hacer que los elementos interactivos sean accesibles con teclado */
a, button, input, select, textarea {
    touch-action: manipulation;
}

/* Hacer que los elementos interactivos sean señalables */
button,
select,
summary {
    cursor: pointer;
}

/* Evitar ajustes de texto en iOS */
html {
    -webkit-text-size-adjust: 100%;
} 