/* 1. Configuración básica de box-sizing para todos los elementos */
*, 
*::before, 
*::after { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
} 

/* 2. 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;
}

/* 3. Estilos para HTML5 - Asegurarse de que los nuevos elementos se muestran correctamente */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 4. Definir el tamaño base del documento */
html {
    line-height: 1.5;
    font-size: 100%; /* 16px base */
    -webkit-text-size-adjust: 100%; /* Prevenir zoom inesperado en dispositivos móviles */
}

/* 5. Configuración básica para el body */
body {
    line-height: 1.5;
    font-family: sans-serif;
    background-color: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased; /* Suavizado de fuentes para webkit */
    -moz-osx-font-smoothing: grayscale;  /* Suavizado de fuentes para Firefox */
}

/* 6. Quitar decoraciones de enlaces */
a {
    text-decoration: none;
    color: inherit;
}

/* 7. Resetear listas */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 8. Tablas: eliminar padding y ajustar bordes */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9. Botones y formularios */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    margin: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

/* 10. Eliminar estilos por defecto de botones y formularios en dispositivos móviles */
button, input {
    appearance: none;
    border-radius: 0;
}

/* 11. Desactivar el resaltado de selección en algunos elementos */
input:focus, button:focus, textarea:focus, select:focus {
    outline: none;
}

/* 12. Desactivar el resaltado por defecto de enlaces en dispositivos móviles */
a {
    -webkit-tap-highlight-color: transparent;
}

/* Otros */
main {
    display: flex;
    position: relative;
}

input {
    border: none;
}

.splide,
.splide__track,
.splide__list,
.splide__slide {
    width: 100%;
    height: 100%;
}