/* Este código lo pegarías al principio de tu archivo CSS principal */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit; /* Asegura que la herencia de fuente sea consistente */
    vertical-align: baseline;
    box-sizing: border-box; /* MUY IMPORTANTE: facilita el cálculo de anchos y altos */
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* Restaura el line-height y elimina el estilo de las listas */
body {
    line-height: 1;
}
ol, ul {
	list-style: none;
}

/* Quita las comillas predeterminadas de los quotes */
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* Corrige el tamaño de las tablas */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    overflow-y: hidden;
}

#ESTRUCTURA-BASE {
    display: flex;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

#ZONA-PRINCIPAL {
    display: block;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

#CONTENIDO-PRINCIPAL {
    display: block;
    background-color: var(--color-blanco);
    width: 100%;
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    padding: 10px;
    padding-top: 6px;
}

.centrar-404 {
    width: 100%;
    height: 40%;
    text-align: center;
    align-content: center;
}

.centrar-404 i {
    font-size: 60px;
}