* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

:root {
	--primary-color: #170093;
	--title-font: "Montserrat", sans-serif;
}

body {
	font-family: 'Lato', sans-serif;
	scroll-behavior: smooth;
}
.divider {
	position: relative;
}

.wrapper {
	height: 100vh;
	background: #170093;
	background: linear-gradient(
			180deg,
			rgba(23, 0, 147, 0.6) 20%,
			rgba(23, 0, 64, 0.8) 70%,
			#170040 87%
		),
		url(../images/wrapper.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.wrapper-contact {
	height: 100%;
	background: linear-gradient(
			0deg,
			rgba(23, 0, 147, 1) 10%,
			rgba(8, 10, 9, 0.9) 100%
		),
		url(../images/wrapper-contact.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.min-h-screen {
	height: 100vh;
}

.bg-primary {
	background-color: var(--primary-color);
}
.block:not(:last-child) {
	margin-bottom: 1.5rem;
}
.transparent {
	background-color: transparent;
}
.title {
	color: #fff;
	font-size: 3rem;
}
.sub-title {
	color: #fff;
	font-size: 1.2rem;
}

.container {
	max-width: 1120px;
	margin: 0 auto;
}
.container-large {
	max-width: 1400px;
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: #fff;
}

.p-48 {
	padding: 48px;
}
.px-24 {
	padding: 0 24px;
}
.grid {
	text-align: start;
	display: grid;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}
.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}
.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
span {
	font-size: 1.25rem;
}
.btn {
	display: block;
	background-color: white;
	font-size: 20px;
	padding: 12px 32px;
	margin: 2rem auto;
	border-radius: 12px;
	cursor: pointer;
	transition: 150ms linear;
}
.btn:hover {
	transform: scale(1.05);
	background-color: #f0f0f0;
}

/* NavBar */

.navbar {
	height: 80px;
	padding: 15px 30px;
	max-width: 100%;
	color: #fff;
}

.nav ul {
	display: flex;
	gap: 32px;
}
.navbar .container {
	font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
	height: 800px;
	position: relative;
}
.hero-container {
	height: 100%;
}

.header {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.hero {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3rem;
}
.hero .titulo {
	font-family: var(--title-font);
	letter-spacing: 8px;
	font-size: 2rem;
	border-top: 5px solid #fff;
	border-bottom: 5px solid #fff;
	padding: 15px 20px;
	font-weight: bolder;
	text-transform: uppercase;
	text-align: center;
}
.hero .titulo strong {
	font-size: 40px;
}
.hero .texto-titulo {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	text-align: center;
}
.hero .texto-titulo p {
	font-weight: 300;
	margin: 25px;
	padding: 15px 20px;
}
.header .btn a {
	color: #000;
}

/* Hero CTA */
.cta {
	background-color: var(--primary-color);
	color: #fff;
	padding: 48px 0;
}
.cta .flex {
	gap: 48px;
}
.cta img {
	max-width: 500px;
	border-radius: 40px;
}
.cta .cta-text h1 {
	font-family:var(--title-font);
	font-size: 2rem;
	padding: 16px 0;
}
.cta .cta-text p {
	font-size: 16px;
	padding: 16px 0;
}
.cta .cta-text a {
	display: inline-block;
	background-color: #fff;
	color: #000;
	padding: 8px 20px;
	border-radius: 12px;
	margin-top: 10px;
	max-width: 50%;
	text-align: center;
	font-weight: bold;
}
/* Serviços */

.services {
	padding: 16px 32px;
	background: var(--primary-color);
}
.services h2 {
	font-family: var(--title-font);
	font-size: 2.25rem;
	text-align: center;
	color: #fff;
	padding: 48px 0;
}

.card {
	margin: 50px 0;
	padding: 24px;
	max-width: 350px;
	height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
		rgba(0, 0, 0, 0.23) 0px 6px 6px;
	background-color: #fff;
	color: #000;
}
.code {
	margin-bottom: 40px;
	background-color: var(--primary-color);
	padding: 28px;
	border-radius: 50%;
	color: #fff;
}
.services .text h3 {
	font-family: var(--title-font);
	margin-bottom: 2rem;
	text-align: center;
}
.services .text .lead {
	text-align: center;
	font-size: 15px;
}

/* About */
.about {
	background: #170093;
	background: linear-gradient(180deg, rgba(23, 0, 147, 1) 50%, #170040 100%);
	max-width: 100%;
	height: 100vh;
}
.about .container {
	height: 100%;
}

.about img {
	grid-column: span 2;
	max-width: 50%;
	filter: invert();
}
.about .about-text {
	background-color: rgb(43, 21, 169);
	border-radius: 15px;
	padding: 36px;
}
.about-text .lead {
	font-family: var(--title-font);
	font-size: 24px;
	color: #fff;
	margin: 16px 0;
	font-weight: 800;
}
.about-text h4 {
	color: #fff;
	text-align: center;
	font-size: 20px;
	padding: 10px;
	border-radius: 20px;
	border: 1px solid #fff;
}
.about-text p {
	font-size: 20px;
	color: #fff;
	line-height: 1.3;
	letter-spacing: 1.3px;
	font-weight: 500;
	text-align: justify;
}
/* Prices */

.prices {
	max-width: 100%;
	background-color: var(--primary-color);
}
.prices .precos {
	font-family: var(--title-font);
	font-size: 3rem;
	padding-top: 3rem;
	color: #fff;
	text-align: center;
}
.prices .container {
	text-align: center;
	height: 100%;
}
.prices .card-price-overlay {
	margin: 100px 0;
	padding: 8px;
}

.prices .card-price {
	background-color: #00135d;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
		rgba(0, 0, 0, 0.23) 0px 6px 6px;
	border-radius: 20px;
	color: #fff;
	max-width: 400px;
	height: 500px;
	text-align: center;
}
.prices .head {
	font-size: 1.25rem;
	padding: 30px 0;
	background-color: #000c43;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.prices .price {
	font-size: 1.5rem;
	padding: 30px 0;
}
.prices .details {
	font-size: 24px;
	padding: 40px 0;
}

.prices .card-price ul li {
	padding: 4px 16px;
	text-align: start;
}
.card-price ul li i {
	margin-right: 8px;
}
.card-price .btn {
	display: inline-block;
	margin: 10px;
	padding: 8px 36px;
	background-color: var(--primary-color);
	border-radius: 10px;
	transition: all 0.1s linear;
}
.card-price .btn:hover {
	background-color: #1900a5ff;
	transform: scale(1.05);
	font-weight: bold;
}

/* Footer */
footer {
	background-color: var(--primary-color);
	padding: 3rem 0;
}

.contact-socials {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: #fff;
}
.contact-socials .socials ul {
	display: flex;
	gap: 2rem;
}
.footer-text h2 {
	font-size: 2rem;
}
.footer-text p {
	font-size: 1.2rem;
}
footer .useful-links ul {
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
footer .useful-links .links-header {
	font-size: 2rem;
}

/* Form Contato */
form h1 {
	font-family: var(--title-font);
	max-width: 100%;
	text-align: center;
	color: #fff;
	padding-top: 3rem;
	padding-bottom: 4rem;
}
form .form-info input {
	font-size: 1rem;
	padding: 1rem;
	width: 500px;
	border: none;
	border-bottom: 1px solid #333;
	border-radius: 5px;
	outline: 0;
}
form textarea {
	height: 160px;
	font-size: 1rem;
	padding: 1rem 1rem;
	resize: none;
	width: 500px;
	border: none;
	border: 1px solid #333;
	border-radius: 5px;
	outline: 0;
}
form .container {
	height: 100%;
}
form .form .btn {
	margin-bottom: -2rem;
	text-align: center;
	width: 40%;
	cursor: pointer;
	transition: all 0.3s ease-in;
}
form .flex {
	flex-direction: column;
	gap: 2rem;
}

/* Casos */
.cases {
	padding: 1rem;
}

.case-grid .grid {
	padding-top: 3rem;
}
.case {
	cursor: pointer;
	max-width: 100%;
	height: 200px;
	border: 1px solid #fff;
	border-radius: 1rem;
	color: #fff;
	position: relative;
	z-index: 1;
	transition: all 0.25s;
}

.case:hover {
	transform: scale(1.01);
}

.case-text {
	padding-top: 6rem;
	text-align: center;
}
.case-text .title{
	font-family: var(--title-font);
}
.case p {
	text-align: center;
	letter-spacing: 0.25rem;
	font-size: 1.25rem;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}
.case::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.3;
	z-index: -1;
}
.case:nth-child(1)::before {
	background-image: url('../images/Case_Alpha.webp');
	border-radius: 1rem;
}
.case:nth-child(2)::before {
	background-image: url('../images/Case_Urgemed.webp');
	border-radius: 1rem;
}
.case:nth-child(3)::before {
	background-image: url('../images/Case_Jmg_contabilidade.webp');
	border-radius: 1rem;
}
/* Portfolio Hero */
.gradient-blue {
	background-color: linear-gradient(
		0deg,
		rgba(23, 0, 147, 0.9) 20%,
		rgba(8, 10, 9, 0.9) 100%
	);
}

.portfolio-hero {
	padding: 1rem;
}

#portfolio-hero {
	padding-top: 8rem;
}
.portfolio-hero-text {
	font-family: var(--title-font);
	color: #fff;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}
.hero-btn {
	font-size: 1.25rem;
	color: #000;
	border: 1px solid #fff;
	display: inline-block;
	margin: 10px;
	padding: 8px 36px;
	background-color: #fff;
	border-radius: 10px;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	margin-bottom: 5rem;
}
.hero-btn:hover {
	transform: scale(1.05);
}

.portfolio-hero-img {
	max-width: 100%;
	border-radius: 40px;
}
.portfolio-hero img {
	border-radius: 40px;
}

.portfolio-hero .flex {
	justify-content: space-between;
}

/* dividers */
/* divider hero */
.custom-shape-divider-top-1746882921 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.custom-shape-divider-top-1746882921 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 150px;
}

.custom-shape-divider-top-1746882921 .shape-fill {
	fill: #170040;
}
/* divider about */
.custom-shape-divider-top-1746883469 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.custom-shape-divider-top-1746883469 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 70px;
}

.custom-shape-divider-top-1746883469 .shape-fill {
	fill: #170040;
}
/* Media Queries */
@media (min-width: 768px) {
	.portfolio-hero-img {
		max-width: 50%;
	}
	.portfolio-hero-text {
		align-items: flex-start;
	}
}

@media (max-width: 1024px) {
	.about {
		height: 100%;
		padding-bottom: 200px;
	}
	.about .flex {
		flex-direction: column;
	}
	.about img {
		width: 600px;
		margin: 0 auto;
	}
	footer .container {
		padding: 4rem 2rem;
	}
}
@media (max-width: 768px) {
	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}
	.nav {
		margin-top: 24px;
	}
	.flex {
		flex-direction: column;
	}
	.cta-text {
		text-align: center;
		margin-bottom: 24px;
	}
	.cta-text h1,
	.cta-text p {
		text-align: start;
	}
	.cta-text a.btn {
		width: 100%;
	}
	.cta img {
		max-width: 100%;
		margin: 0 auto;
	}
	.about img {
		max-width: 100%;
	}
	.services .card {
		max-width: 100%;
	}
	.prices .precos {
		font-size: 1rem;
	}
	.prices .card-price {
		height: 600px;
		max-width: 100%;
		li {
			text-align: center;
		}
		.btn {
			font-size: 32px;
			display: inline-block;
			margin: 60px 0;
			padding: 16px 48px;
			background-color: var(--primary-color);
			border-radius: 10px;
			transition: all 0.2s ease-in-out;
		}
	}
	footer .flex {
		flex-direction: row;
		gap: 10rem;
	}
	.form {
		padding: 0 1rem;
	}
	.form label {
		width: 100%;
	}
	form .form-info input {
		width: 100%;
	}
	form textarea {
		width: 100%;
	}
	form .form .button {
		width: 90%;
	}
	footer.transparent {
		background-color: var(--primary-color);
	}
}
@media (max-width: 425px) {
	.divider {
		display: none;
	}
	.cta img {
		max-width: 100%;
	}
	.prices .card-price {
		.btn {
			font-size: 20px;
		}
		.price {
			font-size: 24px;
			span {
				font-size: 16px;
			}
		}
	}
	.hero .titulo {
		font-size: 20px;
	}
	.hero .texto-titulo {
		font-size: 12px;
	}
	footer .flex {
		flex-direction: column;
		align-items: flex-start;
		gap: 5rem;
	}
	form .form .button {
		width: 90%;
	}
	.hero .titulo strong {
		font-size: 30px;
	}
}
