body {
	font-family: 'Lato', sans-serif;
	background-color: #f8f9fa;
	color: #343a40;
	padding-top: 70px; /* Padding para o menu fixo no topo */
}
.navbar-brand {
	font-weight: 700;
	font-size: 1.5rem;
}
.hero-section {
	background: linear-gradient(rgba(0, 21, 52, 0.7), rgba(0, 21, 52, 0.7)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
	background-size: cover;
	color: #ffffff;
	padding: 120px 0;
	text-align: center;
}
.hero-section h1 {
	font-weight: 900;
	font-size: 3.5rem;
}
.hero-section p {
	font-size: 1.25rem;
	font-weight: 300;
	max-width: 700px;
	margin: 1rem auto;
}
.btn-primary {
	background-color: #0d6efd;
	border-color: #0d6efd;
	font-weight: 700;
	padding: 12px 30px;
	font-size: 1.1rem;
	transition: background-color 0.3s ease;
}
.btn-primary:hover {
	background-color: #0b5ed7;
	border-color: #0a58ca;
}
.section-title {
	font-weight: 700;
	margin-bottom: 50px;
	text-align: center;
}
.review-card {
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}
.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.review-card img {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	object-fit: contain;
	height: 200px;
}
.promise-section i {
	font-size: 3rem;
	color: #0d6efd;
}
.email-capture-section {
	background-color: #0d6efd;
	color: white;
	padding: 60px 20px;
	text-align: center;
}
.email-capture-section h2 {
	font-weight: 700;
	margin-bottom: 15px;
}
.email-capture-section p {
	max-width: 600px;
	margin: 0 auto 30px auto;
	opacity: 0.9;
}
#subscribeForm .form-control {
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	padding: 12px;
}
#subscribeForm .btn {
	padding: 12px 30px;
	font-weight: 700;
}
#form-message {
	margin-top: 20px;
	font-weight: 700;
}
.footer {
	background-color: #212529;
	color: #adb5bd;
	padding: 60px 0;
}
.footer a {
	color: #f8f9fa;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer a:hover {
	color: #0d6efd;
}
.footer .footer-title {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 20px;
}