/* Geral */
:root {
	--branco: #ffffff;
	--verde-claro: #737c68;
	--verde-escuro: #4d5146;
}
.cor-branco {
	color: var(--branco);
}
.cor-verde-claro {
	color: var(--verde-claro);
}
.cor-verde-escuro {
	color: var(--verde-escuro);
}
.bg-branco {
	background-color: var(--branco);
}
.bg-verde-claro {
	background-color: var(--verde-claro);
}
.bg-verde-escuro {
	background-color: var(--verde-escuro);
}
html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-weight: 400;
}
.ff-inter {
	font-family: 'Inter', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: 'slnt' 0;
}
.ff-basic {
	font-family: 'Basic', sans-serif;
	font-weight: 400;
	font-style: normal;
}
h1,
h2,
h3,
p {
	margin: 0;
	padding: 0;
}
b {
	font-weight: 900;
}
a {
	text-decoration: none;
	cursor: pointer;
}
#whatsapp-flutuante {
	bottom: 30px;
	right: 30px;
	display: block;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1s;
	animation-iteration-count: 5;
	transform: scale(1.5);
	transition: all 0.3s;
}
@keyframes pulse {
	0% {
		transform: scale(1.5);
	}
	50% {
		transform: scale(1.8);
	}
	100% {
		transform: scale(1.5);
	}
}
/* Gambiarra para deixar o fundo do ícone do WhatsApp flutuante branco */
#whatsapp-flutuante:before {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: var(--branco);
	top: calc(50% - 15px);
	left: calc(50% - 15px);
	border-radius: 5px;
}
#whatsapp-flutuante:hover {
	transform: scale(2);
}
/* Cabeçalho */
header {
	top: 0;
	left: 0;
	z-index: 1;
}
.navbar-nav .nav-link,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
	color: var(--branco);
}
.navbar-nav .nav-link.active {
	font-weight: bold;
	color: var(--branco);
}
button,
button:focus,
button:hover,
button:active {
	outline: none;
}
/* Home */
#home p {
	width: 330px;
	max-width: 100%;
}
/* Sobre */
#sobre p {
	width: 766px;
	max-width: 100%;
	margin: 0 auto;
}
/* Serviços */
#servicos .item {
	border: 1px solid var(--verde-escuro);
	border-radius: 24px;
}
#servicos .item,
#servicos .item * {
	transition: all 0.3s;
}
/* Especializações */
#especializacoes a {
	border: 1px solid var(--verde-escuro);
	padding: 10px 20px;
	transition: all 0.3s;
}
#especializacoes a:hover {
	color: var(--branco);
	background-color: var(--verde-escuro);
}
#especializacoes .item {
	border: 1px solid var(--verde-escuro);
	border-radius: 24px;
}
#especializacoes .item,
#especializacoes .item * {
	transition: all 0.3s;
}
/* Faça seu diagnóstico */
::placeholder {
	color: var(--branco);
}
#faca-seu-diagnostico input:not([type='submit']) {
	padding: 0 0 5px 0;
}
#faca-seu-diagnostico input:not([type='submit']),
#faca-seu-diagnostico textarea {
	width: 400px;
	max-width: 100%;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--branco);
	color: var(--branco);
	outline: none;
}
#faca-seu-diagnostico input[type='submit'] {
	background-color: transparent;
	border: 1px solid var(--branco);
	color: var(--branco);
	transition: all 0.3s;
}
#faca-seu-diagnostico input[type='submit']:hover {
	background-color: var(--branco);
	color: var(--verde-escuro);
}
#faca-seu-diagnostico p {
	width: 782px;
	max-width: 100%;
	margin: 0 auto;
}
/* Erro 404 */
body.erro404 {
	background-color: var(--verde-claro);
	width: 100vw;
	height: 100vh;
	margin-top: 0;
	color: var(--branco);
}
body.erro404 h1 {
	font-size: 30px;
	line-height: 30px;
}
body.erro404 a {
	color: var(--branco);
	border: 1px solid var(--verde-escuro);
	padding: 10px 20px;
	transition: all 0.3s;
}
body.erro404 a:hover {
	color: var(--branco);
	background-color: var(--verde-escuro);
}
/* Responsivo */
@media screen and (max-width: 991px) {
	body {
		margin-top: 80px;
	}
	h1 {
		font-size: 45px;
		line-height: 45px;
	}
	h2 {
		font-size: 40px;
		line-height: 40px;
	}
	h3 {
		font-size: 20px;
		line-height: 20px;
	}
	p {
		font-size: 14px;
		line-height: 22px;
	}
	header {
		box-shadow: 0 0 10px rgb(0 0 0 / 30%);
	}
	#menu {
		height: 80px;
	}
	.navbar-collapse {
		position: absolute;
		top: 100%;
		background-color: var(--verde-claro);
		margin-left: -12px;
		width: 100vw;
	}
	.navbar-nav {
		padding: 15px;
	}
	#home .banner {
		max-width: 100%;
		height: auto;
	}
	#home .banner-layer {
		position: absolute;
		top: 70px;
		right: -150px;
		max-width: 100%;
		height: auto;
	}
	#home .altura {
		margin: 5vh 0;
	}
	#especializacoes .numero {
		width: 70px;
		min-width: 70px;
		height: 70px;
		border-radius: 15px;
		font-size: 30px;
		line-height: 30px;
	}
}
@media screen and (min-width: 992px) {
	body {
		margin-top: 126px;
	}
	h1 {
		font-size: 60px;
		line-height: 60px;
	}
	h2 {
		font-size: 67px;
		line-height: 88px;
	}
	h3 {
		font-size: 28px;
		line-height: 28px;
	}
	p {
		font-size: 16px;
		line-height: 25px;
	}
	#menu {
		height: 126px;
	}
	#menu .navbar-brand {
		margin-right: 150px;
	}
	#home .altura {
		margin: 18vh 0;
	}
	#home .banner {
		position: absolute;
		top: 0;
		left: 0;
	}
	#home .banner-layer {
		position: absolute;
		top: 70px;
		right: -250px;
	}
	#servicos .item:hover {
		background-color: var(--verde-escuro);
		cursor: default;
	}
	#servicos .item:hover h3,
	#servicos .item:hover p {
		color: var(--branco);
	}
	#servicos .item:hover svg path {
		fill: var(--branco);
	}
	#especializacoes .item:hover {
		background-color: var(--verde-escuro);
		cursor: default;
	}
	#especializacoes .item:hover .numero {
		background-color: var(--branco);
		color: var(--verde-escuro);
	}
	#especializacoes .item:hover h3,
	#especializacoes .item:hover p {
		color: var(--branco);
	}
	#especializacoes .numero {
		width: 100px;
		height: 100px;
		border-radius: 15px;
		font-size: 50px;
		line-height: 50px;
	}
	#especializacoes .texto {
		width: 330px;
		max-width: 100%;
	}
	#especializacoes .item {
		width: 560px;
		max-width: 100%;
	}
	#especializacoes p {
		width: 391px;
		max-width: 100%;
	}
	#especializacoes .layer {
		position: absolute;
		bottom: -50px;
		left: 0;
		filter: invert(1);
		transform: scaleY(-1) rotate(180deg);
		opacity: 0.3;
	}
}
