.banner-container {
    width: 100%; /* Garante que o container ocupe toda a largura */
    line-height: 0; /* Remove espaços extras abaixo da imagem */
}

.banner-img {
    width: 100%;       /* Força a imagem a preencher a largura */
    height: auto;      /* A MÁGICA: A altura é calculada automaticamente baseada na proporção original */
    display: block;    /* Remove comportamentos de linha indesejados */
}


/* ------------------- PRODUTOS --------------- */


.produtos {
	width: 100vw;
	box-sizing: border-box;
	padding: 2vw 4vw;
	display: flex;
	flex-wrap: wrap;
}

.produtos h2 {
	width: 100vw;
	margin-bottom: 2vw;
	font-weight: 400;
	color: rgba(1,1,1,0.857);
}

.produto {
	display: block;
	width: 22vw;
	padding: 20px;
	margin: 0.3vw;
	box-sizing: border-box;
	margin-bottom: 10px;
	background: #fff;
	border-radius: 3px;
	border: 1px solid rgba(0,0,0,0.2);
}

.produto .imagem {
	width: 100%;
	display: block;
	position: relative;
	margin-bottom: 15px;
}

.produto .imagem img{
	display: flex;
	justify-content: center;
	align-items: center;
}

.produto .qualidade {
	display: block;
	position: absolute;
	background: #7FA653;
	bottom: 0px;
	padding: 5px 10px;
	border-radius: 5px;
	opacity: 0.9;
	color: #fff;
	font-weight: 400;
	font-size: 0.8em;
}

.titulo {
	margin-bottom: 20px;
}

.titulo h1 {
	font-weight: 400;
	font-size: 0.95em;
	color: rgba(1, 1, 1, 0.957);
	margin-bottom: 10px;word-break: break-word;overflow-wrap: break-word;
}

.titulo p {
	color: rgba(1, 1, 1, 0.957);
}

.adicionar {
	width: 100%;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 10px;
}

.adicionar .a{
	color: #Ffffff;
	background: #7FA653;
	font-weight: 400;
	font-size: 0.8em;
	padding: 15px 30px;
	border-radius: 3px;
	border:none;
	cursor: pointer;
}


@media screen and (max-width: 768px) {

	.produtos {
	width: 100vw;
	box-sizing: border-box;
	padding: 2vw 15vw;
	display: flex;
	flex-wrap: wrap
}
		.produto {
		display: block;
		width: 70vw;
		padding: 10px;
		box-sizing: border-box;
		margin-bottom: 10px;
	}
}