*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

:root {
	--naranja-rosa: linear-gradient(to bottom, #ff6f48, #f02aa6);
	--naranja-rosa-light: linear-gradient(to bottom, #ff6f4850, #f02aa650);
	--azul-morado: linear-gradient(to bottom, #4851ff, #f02aa6);
	--azul-morado-light: linear-gradient(to bottom, #4851ff50, #f02aa650);
	--blanco-gris: linear-gradient(to bottom, white, #f0f1ff);
	--azul: #13183f;
	--gris: #83869a;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: var(--blanco-gris);
}

.page {
	min-width: 375px;
	max-width: 1440px;
	font-family: 'Plus Jakarta Sans';
}

.btn {
	width: 168px;
	height: 59px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	border-radius: 30px;
	border: none;
	cursor: pointer;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 94px;
	padding: 16px 20px;
}

.nav__img {
	height: 20px;
	width: 80px;
}

.nav__btn {
	background-color: var(--azul);
}

.nav__btn:hover {
	background-color: #666ca3;
}

.header {
	min-width: 375px;
	height: 824px;
}

.u-p-64-20 {
	padding: 64px 20px;
}

.presentation {
	height: 328px;
	width: 100%;
	margin-bottom: 48px;
}

.presentation__title {
	font-size: 40px;
	font-weight: 800;
	line-height: 120%;
	color: var(--azul);
	margin-bottom: 24px;
}

.presentation__p {
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: var(--gris);
	margin-bottom: 40px;
}

.presentation__btn {
	background-image: var(--naranja-rosa);
}

.presentation__btn:hover {
	background-image: var(--naranja-rosa-light);
}

.presentation__img {
	margin: auto;
}

.center {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(328px, 352px));
	row-gap: 50px;
	column-gap: 24px;
	justify-content: center;
}

.center__first {
	padding: 32px;
	font-size: 24px;
	font-weight: 800;
	line-height: 120%;
	color: white;
	background-image: var(--naranja-rosa);
	border-radius: 15px;
}

.feature {
	box-shadow: 0px 25px 50px 0px #06168d05;
	border-radius: 15px;
	padding: 32px;
	background-color: white;
	position: relative;
}

.feature__icon {
	position: absolute;
	left: 32px;
	top: -27px;
}

.feature__title {
	font-weight: 800;
	font-size: 20px;
	line-height: 120%;
	color: var(--azul);
	margin-bottom: 24px;
	padding-top: 32px;
}

.feature__p {
	font-weight: bold;
	line-height: 150%;
	color: var(--gris);
}

.feature__btn {
	color: #f74780;
	background-color: white;
	width: fit-content;
}

.feature__btn:hover {
	color: #ffa7c3;
}

.footer {
	background-color: var(--azul);
}

.footer__btn {
	background-image: var(--azul-morado);
}

.footer__btn:hover {
	background-image: var(--azul-morado-light);
}

@media (min-width: 768px) {
	.page {
		max-width: 900px;
		overflow: hidden;
	}
	.nav {
		padding: 24px 44px;
	}
	.header {
		display: flex;
		height: 528px;
		align-items: center;
	}
	.u-p-64-20 {
		padding: 64px 44px;
	}
	.presentation {
		max-width: 544px;
		margin-bottom: 0;
	}
	.presentation__img {
		object-fit: contain;
		transform: scale(1.75);
		position: relative;
		left: 100px;
		bottom: 50px;
	}
}

@media (min-width: 1440px) {
	.page {
		max-width: 1250px;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.nav {
		padding: 24px 80px;
	}
	.u-p-64-20 {
		padding: 80px 64px;
	}
	.presentation {
		padding-right: 85px;
	}
	.presentation__img {
		transform: scale(1.5);
		left: 250px;
		bottom: 100px;
	}
	.center {
		max-width: 1250px;
		justify-items: center;
		align-self: center;
	}
}
