/***************************************************************************
       Fonts
***************************************************************************/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/***************************************************************************
       Variáveis
***************************************************************************/

:root {
	--cor-azul: #001f5d;
	--cor-amarelo: #FFC205;
	--cor-cinza: #787878;

	--font-light: 500;
	--font-extrabold: 900;

	--font-inter: 'Inter', sans-serif;
}

/***************************************************************************
        All
***************************************************************************/

html,
body {
	margin: 0;
	overflow-x: clip;
}

* {
	margin: 0;
	box-shadow: 0 0 0 0;
	border: 0 none;
	outline: 0;
	font-family: var(--font-inter);
}

a {
	text-decoration: none !important;
	cursor: pointer;
}

body {
	background: url(../img/fundo.png) no-repeat center center;
	padding-bottom: 250px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

section {
	padding-top: 120px;
}

.images {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.images .logo {
	max-width: 220px;
}

.images .icon {
	width: 62px;
	height: 62px;
}

h1 {
	font-size: 45px;
	line-height: 50px;
	color: var(--cor-azul);
}

h1>span {
	background-color: var(--cor-amarelo);
}

p {
	font-size: 20px;
	line-height: 30px;
	color: var(--cor-cinza);
}

hr {
	border: 0;
	height: 3px;
	background-color: var(--cor-amarelo);
	margin: 30px 0;
	width: 100%;
	max-width: 150px;
}

.btn-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: fit-content;
	height: 48px;
	border-radius: 22px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 0 20px;
	background-image: linear-gradient(to right, #57D163, #23B33A);
	color: white;
}

.btn-whatsapp:hover {
	color: white;
}

.btn-whatsapp img {
	width: 24px;
	height: 24px;
}

.box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.box .circle {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	height: 58px;
	border-radius: 50%;
	background-color: var(--cor-azul);
}

.box .circle img {
	width: 32px;
	height: 32px;
	margin-left: 5px;
}

.box span {
	font-size: 20px;
	font-weight: 600;
	color: var(--cor-azul);
}

@media (max-width: 991px) {
	body {
		background-image: none;
	}

	.responsivo {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
}