/**
 * _reset.css — Reset mínimo, moderno (não um reset agressivo estilo
 * Eric Meyer). Objetivo: eliminar inconsistências entre navegadores sem
 * remover semântica útil.
 */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	font-family: var( --fbb-font-family );
	font-weight: var( --fbb-font-weight-regular );
	color: var( --fbb-color-navy );
	background-color: var( --fbb-color-white );
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, figure {
	margin: 0;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}

button, input, textarea, select {
	font: inherit;
	color: inherit;
}

button {
	background: none;
	border: none;
}

a {
	color: inherit;
}

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

/* Respeita a preferência de usuários que reduzem movimento (acessibilidade). */
@media ( prefers-reduced-motion: reduce ) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Classe utilitária nativa do WordPress (usada em labels de formulário
 * acessíveis, ex. .screen-reader-text no formulário de newsletter). */
.screen-reader-text {
	border: 0;
	clip: rect( 1px, 1px, 1px, 1px );
	clip-path: inset( 50% );
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.fbb-container {
	width: 100%;
	max-width: var( --fbb-container-max-width );
	margin-inline: auto;
	padding-inline: var( --fbb-page-gutter );
}
