/**
 * Reset mínimo.
 *
 * Não usamos um reset agressivo (tipo normalize.css) porque o tema
 * é pequeno e auto-contido — preferimos zerar só o que realmente
 * causa inconsistência entre navegadores.
 */

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background-color: var(--oju-white);
	color: var(--oju-text);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: none;
}
