:root {
	--clr-background: #dadbd9;
	--clr-000: #1e1e1e;
	--clr-111: #ffffff;

	--clr-100: #beb3bb;
	--clr-200: #92858e;
	--clr-300: #3e3e51;
	--clr-400: #4b2735;
	--clr-500: #0d161b;

	--figtree-light: "Figtree Light", system-ui, -apple-system, "Tahoma", sans-serif;
	--figtree-regular: "Figtree Regular", system-ui, -apple-system, "Tahoma", sans-serif;
	--figtree-medium: "Figtree Semi-bold", system-ui, -apple-system, "Tahoma", sans-serif;
	--figtree-bold: "Figtree Bold", system-ui, -apple-system, "Tahoma", sans-serif;
	--rochester: "Rochester", system-ui, -apple-system, "Times New Roman", serif;
}

/* || FONTES */
@font-face {
	font-family: "Figtree Light";
	src: url("../fonts/Figtree-Light.ttf") format("TrueType");
	font-weight: lighter;
	font-style: lighter;
	font-display: swap;
}
@font-face {
	font-family: "Figtree Regular";
	src: url("../fonts/Figtree-Regular.ttf") format("TrueType");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Figtree Semi-bold";
	src: url("../fonts/Figtree-SemiBold.ttf") format("TrueType");
	font-weight: medium;
	font-style: medium;
	font-display: swap;
}
@font-face {
	font-family: "Figtree Bold";
	src: url("../fonts/Figtree-Black.ttf") format("TrueType");
	font-weight: bold;
	font-style: bold;
	font-display: swap;
}
@font-face {
	font-family: "Rochester";
	src: url("../fonts/Rochester-Regular.ttf") format("TrueType");
	font-weight: lighter;
	font-style: lighter;
	font-display: swap;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	word-wrap: normal;
}

body,
html {
	font-family: var(--figtree-regular);
	font-display: optional;
	size-adjust: 150%;
	color: var(--clr-000);
	background-color: var(--clr-background);
}

.sr-only {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

img {
	width: 100%;
	height: auto;
}

/* main {
	min-height: 95vh;
} */

svg {
	display: block;
}

ul {
	list-style: none;
}
li {
	padding: 0.3rem 0;
}

p {
	margin: 10px 0;
}

/* || TITULOS */
h1 {
	font-family: var(--figtree-light);

	strong {
		font-family: var(--figtree-bold);
	}
}

h2 {
	color: var(--clr-400);
	font-size: x-large;
}

.mobile_hide {
	display: none;
}
.desktop_hide {
	display: block;
}
@media screen and (min-width: 768px) {
	.mobile_hide {
		display: block;
	}
	.desktop_hide {
		display: none;
	}
}

/* || BOTÕES */
a.btn01 {
	color: var(--clr-111);
	text-decoration: none;
	border: 1px solid var(--clr-111);
	padding: 0.6rem;
	border-radius: 3px;
	margin: 3rem auto 0;
	display: block;
	width: fit-content;
}
a.btn01:hover {
	background-color: var(--clr-400);
	border-color: var(--clr-400);
	transition: all 0.3s;
}

/* || NAVBAR */
nav {
	background: transparent;
	width: 100%;
	height: auto;
	padding: 20px 50px;
	font-family: var(--figtree-light);
}
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
.navbar .menu {
	display: flex;
	height: 100%;
}
.navbar .menu li {
	position: relative;
	list-style: none;
	padding: 5px 20px;
	height: 100%;
	white-space: nowrap;
}
.navbar .menu li a {
	color: var(--clr-500);
	text-decoration: none;
	padding: 5px 10px;
	font-weight: 600;
	border-bottom: 3px solid transparent;
}
.navbar .menu li:hover a {
	color: var(--clr-400);
	border-bottom-color: var(--clr-400);
	transition: all 0.1s;
}
.navbar .menu li:hover {
	color: var(--clr-400);
	transition: background-color 0.3s;
}
.navbar .navOpen,
.navbar .navClose {
	display: none;
}
.brand img {
	width: auto;
	max-width: 100%;
	max-height: 30px;
	height: auto;
}
@media screen and (max-width: 991.98px) {
	nav {
		width: 100%;
		overflow: visible;
		text-align: right;
		padding: 1rem 3rem;
	}
	.navbar .menu {
		background-color: var(--clr-background);
		display: flex;
		flex-direction: column;
		position: fixed;
		height: 100vh;
		width: 100dvw;
		top: 0;
		right: -100%;
		line-height: normal;
		padding: 1rem 2rem;
		transition: right 1s ease;
		margin: 0;
		z-index: 4;
	}
	.navbar .menu li {
		display: block;
		height: auto;
		line-height: 45px;
		border-bottom: 1px solid var(--clr-300);
		border-radius: 0;
	}
	.navbar .menu li a,
	.navbar .menu li:hover a {
		border-bottom: none;
	}
	.navbar .navOpen {
		padding: 5px 10px 7px 30px;
		border-radius: 0 0 0 50px;
		display: flex;
		align-items: center;
		color: var(--clr-400);
	}
	.navbar .navOpen,
	.navbar .navClose {
		font-size: x-large;
		span {
			font-size: large;
		}
	}
	.navbar .navOpen span {
		margin-right: 10px;
	}
	.navbar .navClose {
		margin-bottom: 50px;
		padding: 10px 20px;
		display: block;
		text-align: right;
	}
}

/* submenu */
.menu li svg {
	display: inline-block;
	vertical-align: middle;
	transition: all 0.3s ease;
}
.navbar .menu li:hover svg {
	transform: rotate(-180deg);
}

.navbar .menu .sub-menu {
	background-color: var(--clr-background);
	position: absolute;
	top: 100%;
	right: 0;
	box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
	border-radius: 0 0 5px 5px;
	display: none;
}
.navbar .menu .sub-menu li {
	padding: 0.7rem 1rem;
	border-bottom: 1px solid #beb3bb;
}
.navbar .menu .sub-menu li a,
.navbar .menu .sub-menu li:hover a {
	color: var(--clr-500);
	border-bottom: none;
}
.navbar .menu .sub-menu li:hover a {
	color: var(--clr-400);
}
.navbar .menu li:hover .sub-menu {
	display: block;
}
@media screen and (max-width: 991.98px) {
	.navbar .menu .sub-menu {
		position: static;
		/* display: block; */
	}
}

/* || HEADER */
.header {
	background: #6d5460;
	background: url("../img/grafismo-header.webp") no-repeat center center,
		linear-gradient(45deg, rgba(109, 84, 96, 1) 0%, rgba(92, 58, 71, 1) 50%, rgba(75, 39, 53, 1) 100%);
	background-size: auto 100%;
	padding: 5rem;
	color: var(--clr-111);
	text-align: center;
	font-weight: lighter;
	span {
		display: block;
		margin-bottom: 3rem;
		text-transform: uppercase;
		font-size: medium;
		img {
			margin-left: 3px;
			max-height: 16px;
			width: auto;
			object-fit: contain;
		}
	}
}

@media screen and (min-width: 991.98px) {
	.header {
		background-size: cover;
		padding: 5rem 20%;
	}
}

/* || FOOTER */
footer {
	background-color: var(--clr-400);
	color: var(--clr-111);
	padding: 4rem 3rem;
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto;
	grid-template-areas: "imagem" "links" "infos";
	gap: 20px;
	text-align: center;

	imagem {
		grid-area: imagem;

		img {
			max-width: 300px;
		}
	}
	links {
		grid-area: links;
	}
	infos {
		grid-area: infos;
	}

	a {
		color: var(--clr-111);
		text-decoration: none;
	}
	a:hover {
		text-decoration: underline;
	}
}

@media screen and (min-width: 768px) {
	footer {
		padding: 5rem 5rem;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-areas: "links imagem infos";
		text-align: left;
		align-items: center;
		justify-items: center;
	}
}

.space {
	margin: 3rem 0;
}

.section_citacao {
	padding: 3rem 10%;
	text-align: center;

	h2 {
		font-weight: lighter;

		strong {
			font-weight: bold;
		}
	}
}

/* || MAIN SECTION */
.main_section {
	padding: 3rem 5rem;
	color: var(--clr-400);
	h2 {
		text-align: center;
		margin-bottom: 2rem;
	}
}

.main_solucoes {
	background-color: var(--clr-200);
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;

	h2 {
		color: var(--clr-111);
		text-align: center;
		font-size: xx-large;
	}

	div {
		background-color: #cac6c9;
		width: 100%;
		display: flex;
		flex-direction: column;
		margin-top: 60px;
		border-radius: 5px;
		position: relative;
		justify-content: space-between;
	}

	clamp {
		margin: 170px 0 30px;
		padding: 0 6%;
	}

	img {
		max-width: 90%;
		max-height: 200px;
		height: auto;
		object-fit: cover;

		margin: auto;
		border-radius: 5px;
		position: absolute;
		top: -50px;
		left: 50%;
		transform: translate(-50%);
		box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	}
	a {
		background-color: var(--clr-400);
		color: var(--clr-111);
		text-decoration: none;
		display: block;
		width: fit-content;
		padding: 0.5rem 1.3rem;
		align-self: end;
		border-radius: 5px 0 5px 0;
	}
	a:hover {
		background-color: var(--clr-300);
		transition: background-color ease 0.3s;
	}
}

@media screen and (min-width: 768px) {
	.main_section {
		padding: 5rem 10rem;
	}
	.main_solucoes {
		flex-direction: row;
		gap: 2rem;
		justify-content: space-around;

		h2 {
			width: 100%;
		}
		div {
			width: 30%;
		}
	}
}

/* || SOBRE */
.bg_grafismo {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	z-index: 0;
	pointer-events: none;
}
.sobre_section {
	padding: 3rem;

	h1 {
		color: var(--clr-400);
	}
}
.sobre_mvv {
	background-color: var(--clr-200);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 5rem;
	justify-content: center;
	align-items: stretch;
	color: var(--clr-111);
	padding-top: 6rem;
	z-index: 1;
	position: relative;

	div {
		border-radius: 10px;
		position: relative;
		width: 80%;

		font-family: var(--figtree-light);
		line-height: 18pt;

		border-top: 1px solid var(--clr-111);

		strong,
		span {
			font-weight: bold;
		}

		span {
			display: block;
			text-align: center;
			font-size: large;
			border-width: 1px;
			border-style: none solid;
			border-color: var(--clr-111);
			padding: 70px 1rem 1rem;
			border-radius: 10px 10px 0 0;
			z-index: 1;
		}

		img {
			position: absolute;
			top: -45px;
			left: 50%;
			transform: translate(-50%);
			max-height: 90px;
			width: auto;
			z-index: 1;
			background: var(--clr-200);
		}
		p {
			padding: 1rem;
			padding-top: 0;
		}
	}
}

.sobre_equipe {
	background-color: var(--clr-300);
	color: var(--clr-111);

	.sobre_equipe_texto {
		padding: 3rem 5rem;
		line-height: 18pt;
	}

	h3 {
		font-weight: lighter;
		font-size: x-large;
		margin-bottom: 30px;
		small {
			font-size: medium;
		}
	}
}

@media screen and (min-width: 768px) {
	.sobre_section {
		padding: 3rem 5rem;
	}

	.sobre_mvv {
		flex-direction: row;
		padding-top: 6rem;

		div {
			width: 25%;
		}
	}
	.sobre_citacao {
		padding: 5rem 10%;
	}
	.sobre_equipe {
		display: flex;
	}
	.sobre_equipe_texto {
		width: 70%;
	}
	.sobre_equipe_img {
		width: 30%;

		img {
			height: 100%;
			width: 100%;
			object-fit: cover;
		}
	}
}

/* || SOLUÇÕES */
.solucoes_section {
	padding: 3rem;
}
.solucoes_hero {
	color: var(--clr-111);
	padding: 5rem;
	text-align: center;
	h1 {
		font-size: xx-large;
	}
}
.solucoes_headhunting {
	background-color: var(--clr-400);
}
.solucoes_assessment-comportamental {
	background-color: var(--clr-300);
}
.solucoes_mentoria-executiva {
	background-color: var(--clr-200);
}
.section_citacao-solucoes {
	background-color: var(--clr-100);
	h2 {
		color: var(--clr-300);
	}
}

.solucoes_section hr {
	background-color: var(--clr-300);
	border: none;
	width: 100%;
	height: 2px;
}
@media screen and (min-width: 768px) {
	.solucoes_section hr {
		height: 1px;
		width: 40%;
	}
	.solucoes_entrega_titulo_mbti hr {
		width: 60%;
	}
	.solucoes_entrega_titulo_mentoria hr {
		width: 50%;
	}
}
.solucoes_entrega,
.solucoes_aplicacao {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 3rem;
	justify-content: space-around;
}
.solucoes_entrega_titulo,
.solucoes_aplicacao_titulo {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 1rem;
	width: 100%;

	h2 {
		width: 100%;
		text-align: center;
	}
}
.solucoes_aplicacao_titulo-mentoria {
	h2 {
		text-align: left;
	}
}
.solucoes_assessment_intro h2 {
	font-weight: lighter;
}
@media screen and (min-width: 768px) {
	.solucoes_entrega_titulo,
	.solucoes_aplicacao_titulo {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-around;
	}
	.solucoes_entrega_titulo,
	.solucoes_aplicacao_titulo {
		h2 {
			width: 60%;
		}
	}
	.solucoes_aplicacao_titulo-mentoria {
		h2 {
			width: 100%;
		}
	}
	.solucoes_entrega_titulo_mbti h2 {
		width: 40%;
		text-align: left;
	}
}
.solucoes_entrega_box {
	border: 1px solid var(--clr-400);
	border-radius: 20px;
	padding: 2rem;
	color: var(--clr-300);

	div {
		display: flex;
		gap: 0.6rem;
		align-items: self-end;
	}

	numero {
		color: var(--clr-200);
		font-size: 40pt;
		line-height: 38pt;
		font-family: var(--rochester);
	}

	titulo {
		font-size: x-large;
	}
	p {
		padding: 10px 5px 0;
	}
}
.solucoes_aplicacao_box {
	background-color: var(--clr-100);
	padding: 1rem 2rem;
	border-radius: 15px;
	align-content: center;
}
.aplicacao_box-40,
.aplicacao_box-50,
.aplicacao_box-60 {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.solucoes_entrega_box {
		width: 45%;
	}

	.aplicacao_box-40 {
		width: calc(40% - 3rem);
	}
	.aplicacao_box-50 {
		width: calc(50% - 3rem);
	}
	.aplicacao_box-60 {
		width: calc(60% - 3rem);
	}
}

.publico_box {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1rem 0;
}

/* || CONTATO */

.contato_section {
	padding: 3rem;

	h1 {
		color: var(--clr-300);
		margin-bottom: 1.5rem;
	}

	p {
		font-family: var(--figtree-medium);
		font-size: large;
	}
}
.contato_section-formulario {
	background-color: var(--clr-200);
	color: var(--clr-111);

	div {
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
		margin: 0.8rem 0;
	}
	input,
	textarea {
		padding: 0.5rem 0.3rem;
		border-radius: 5px;
		background-color: #fafafa;
		color: var(--clr-000);
		border-width: 1px;
		border-style: solid;
		border-color: #888888;
	}
	input:focus,
	textarea:focus {
		outline: none;
		border-width: 0 1px 2px 1px;
		border-color: var(--clr-300);
	}

	button {
		background-color: var(--clr-400);
		border: none;
		color: var(--clr-111);
		padding: 0.5rem 1.5rem;
		border-radius: 3px;
		cursor: pointer;
	}
	button:hover {
		background-color: var(--clr-300);
	}
}

@media screen and (min-width: 768px) {
	.main_contato {
		display: flex;
		align-items: center;
	}
	.contato_section {
		width: 50%;
		min-height: 70dvh;
		align-content: center;
	}
}

.notificacao {
	width: 100%;
	text-align: center;
	margin: 30px auto;
	padding: 10px;
	font-size: small;
}
.notificacao .sucesso {
	background-color: #8ab72d;
	color: var(--clr-000);
	padding: 0.3rem;
	display: none;
}
.notificacao .falha {
	background-color: #b20000;
	padding: 0.3rem;
	color: var(--clr-111);
	display: none;
}
