 /*------------ResetCSS ------------*/ 

 /*aplica só dentro do container com a classe .reset-container*/ 
.reset-container,
.reset-container *,
.reset-container *::before,
.reset-container *::after {
    box-sizing: border-box;
}

/*limpar espaçamentos, listas, decoração de texto e fontes herdadas*/ 
.reset-container * {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;  herda família/tamanho do container 
    line-height: 1.25;
    vertical-align: baseline;
    list-style: none;
    text-decoration: none;
    color: inherit;
}

/*ajustes comuns para elementos de bloco/inline-block*/ 
.reset-container p,
.reset-container h1, .reset-container h2, .reset-container h3,
.reset-container h4, .reset-container h5, .reset-container h6 {
    margin: 0;
    font-weight: inherit;
}

/*restaurar displays padrões mínimos (opcional)*/ 
.reset-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.reset-container table {
    border-collapse: collapse;
    border-spacing: 0;
}
