* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Roboto, sans-serif;
	color: #222;
	line-height: 1.6;
}

h2 {
	font-size: 32px;
	color: #227e35;
	margin-bottom: 8px;
}

.container {
	max-width: 1140px;
	margin: auto;
	padding: 0 20px;
}

.hero {
	padding: 100px 0;
	background: #f9f9f9;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.logo {
	width: 180px;
	margin-bottom: 20px;
}

.hero h1 {
	font-size: 42px;
	color: #227e35;
	margin-bottom: 15px;
}

.subtitle {
	font-size: 20px;
	margin-bottom: 20px;
}

.benefits {
	list-style: none;
	margin-bottom: 25px;
}

.benefits li {
	margin-bottom: 8px;
}

.hero-image img {
	width: 100%;
	max-width: 480px;
}

.btn {
	display: inline-block;
	background: #28ac6b;
	color: white;
	padding: 16px 28px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: .3s;
}

.btn:hover {
	background: #1f8e55;
}

.btn.big {
	font-size: 20px;
	padding: 18px 34px;
}

.anvisa {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.anvisa img {
	width: 60px;
}

.features {
	padding: 90px 0;
	background: #e9e9e9;
	text-align: center;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.section-cta {
	margin-top: 40px;
}

.reviews {
	padding: 90px 0;
	text-align: center;
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.review {
	background: #f5f5f5;
	padding: 25px;
	border-radius: 10px;
}

.location {
	padding: 90px 0;
	background: #f5f5f5;
}

.location-text {
	text-align: center;
	max-width: 700px;
	margin: auto;
	margin-bottom: 50px;
}

.location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.map iframe {
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: 10px;
}

.store img {
	width: 100%;
	border-radius: 10px;
}

.cta {
	padding: 90px 0;
	text-align: center;
}

.footer {
	background: #1e1e1e;
	color: white;
	padding: 60px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.copy {
	text-align: center;
	margin-top: 40px;
	opacity: .7;
}

@media(max-width:900px) {

	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cards {
		grid-template-columns: 1fr 1fr;
	}

	.review-grid {
		grid-template-columns: 1fr 1fr;
	}

	.location-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

}

@media(max-width:600px) {

	.cards,
	.review-grid {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 30px;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

}

/* SELLOS DE CERTIFICAÇÃO */

.certifications {
	display: flex;
	align-items: center;
	gap: 20px;

	margin-top: 30px;
	/* espaço do bloco acima */
}

.certifications img {
	height: 60px;
	width: auto;

	object-fit: contain;
}

/* centralizar no mobile */

@media(max-width:768px) {

	.certifications {
		justify-content: center;
	}

	.certifications img {
		height: 50px;
	}

}