/*CSS reset*/
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	overflow-x: hidden;
	margin: 0;
	display: flex;
	justify-content: center;
}
body {
	font-family: 'Poppins', sans-serif;
	line-height: 100%;
	-webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
	overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

#root,
#__next {
	isolation: isolate;
}

ul {
	padding-inline-start: 0;
}

/*Regras adicionais*/
* {
	outline: 0;
	box-shadow: none;
}

.gutter {
	padding: 0px 16px;
	margin: 0;
	position: relative;
}

.reset-btn {
	background: transparent;
	padding: 0;
	margin: 0;
	border: none;
	box-shadow: none;
	outline: 0;
	width: fit-content;
}

.full-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
	background-color: #4d4d4d3d;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
}

button {
	cursor: pointer;
	width: fit-content;
}

ol,
ul {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}
/* textos */

.med {
	font-weight: 500;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}
