:root {
	--blue: #123B7A;
	--green: #2FA35B;
	--light: #F8F8F6;
	--text: #1B2A4A;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: var(--light);
	color: var(--text);
	overflow-x: hidden;
	position: relative;
}

.bg-neuron {
	position: fixed;
	left: 0;
	top: 0;
	width: 450px;
	height: 450px;
	background: url('images/neuron-bg.png') no-repeat;
	background-size: contain;
	opacity: .10;
	pointer-events: none;
	z-index: 0;
}

.bg-spine {
	position: fixed;
	right: 0;
	top: 0;
	width: 350px;
	height: 100vh;
	background: url('images/spine-bg.png') no-repeat right top;
	background-size: contain;
	opacity: .10;
	pointer-events: none;
	z-index: 0;
}

.container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: auto;
	padding: 10px 10px 0 10px;
	text-align: center;
}

.logo {
	width: 200px;
	max-width: 90%;
	margin-bottom: 30px;
}

.subtitle, .subservices {
	font-size: 1rem;
	letter-spacing: 3px;
	line-height: 1.8;
}

.subtitle {
	font-weight: 600;
}

.subservices {
	font-weight: 400;
}

.line {
	width: 120px;
	height: 2px;
	background: var(--green);
	margin: 20px auto;
}

h1 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	line-height: 1.15;
	margin-top: 50px;
}

.highlight {
	color: var(--green);
}

.description {
	margin: 35px auto;
	font-size: 1.15rem;
	line-height: 1.9;
}

.coming {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: var(--green);
	margin-top: 15px;
}

.contact-intro {
	margin-top: 20px;
	font-size: 1.1rem;
}

.services {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid #e5e5e5;
	border-radius: 20px;
	background: white;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.service-title {
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 10px;
}

.contact {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	margin-top: 60px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 250px;
	gap: 12px;
}

.contact-icon {
	width: 56px;
	height: 56px;
}

.contact-item a {
	text-decoration: none;
	color: var(--blue);
	font-weight: 500;
	line-height: 1.5;
}

.contact-item a:hover {
	color: var(--green);
}

.contact-item span {
	font-size: .9rem;
	opacity: .8;
}

.whatsapp-btn {
	display: inline-block;
	margin-top: 50px;
	padding: 18px 35px;
	background: var(--green);
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	transition: .3s;
}

.whatsapp-btn:hover {
	transform: translateY(-2px);
}

.social {
	margin-top: 80px;
}

.social-title {
	letter-spacing: 4px;
	font-size: .9rem;
	margin-bottom: 30px;
	color: var(--green);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}

.social-links a {
	display: flex;
	align-items: center;
	text-align: left;
	gap: 12px;
	text-decoration: none;
	color: var(--blue);
	font-weight: 600;
}

.social-links a:hover {
	color: var(--green);
}

.social-icon {
	width: 38px;
	height: 38px;
}

footer {
	line-height: 40px;
	font-size: .95rem;
	margin-top: 5px;
}

.footer-links {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: .85rem;
}

@media ( max-width :768px) {
	.logo {
		width: 180px;
	}
	h1 {
		font-size: 2.4rem;
	}
	.description {
		font-size: 1rem;
	}
	.services {
		gap: 40px;
		padding: 25px;
	}
	.contact {
		gap: 30px;
	}
	.social-links {
		flex-direction: column;
		gap: 20px;
	}
}