/* Estilos Gerais */
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	background-color: #1a1a1a;
	color: #fff;
	font-family: Arial, Tahoma, sans-serif;
}
.container {
	max-width: 620px;
	margin: 0 auto;
	width: 100%;
	padding: 10px;
}
img {
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: 0 auto;
}
a {
	text-decoration: none;
}
/* Cabeçalho */
.header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding: 10px 0;
}
.header-logo {
	width: 320px;
	max-width: 100%;
}
.header-text {
	width: 260px;
	max-width: 100%;
	font-family: 'Lobster Two', Tahoma, Arial, sans-serif;
	font-size: 26px;
	text-align: center;
	line-height: 1.3;
}
/* Banner Principal */
.banner {
	width: 100%;
	margin: 15px 0;
}
.banner img {
	width: 96%;
}
/* Grid de Produtos */
.product-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
}
.product-card {
	width: 185px;
	text-align: center;
	background-color: #222;
	padding: 15px 10px;
	border-radius: 6px;
}
.product-title {
	font-family: Courgette, Tahoma, Arial, sans-serif;
	color: #E6DF4D;
	font-size: 18px;
	margin: 12px 0;
	display: block;
}
.product-desc {
	font-family: Tahoma, Arial, sans-serif;
	color: #A9A9A9;
	font-size: 13px;
	line-height: 1.4;
	min-height: 50px;
	display: block;
}
.product-rel {
	font-family: Arial, Tahoma, sans-serif;
	color: #fff;
	font-size: 12px;
	min-height: 100px;
	display: block;
}
/* Preços por Produto */
.price-list {
	margin-top: 10px;
	font-size: 12px;
	color: #99ff00;
	min-height: 100px;
}
.price-row {
	display: flex;
	justify-content: space-between;
	padding: 3px 5px;
}
.price-label {
	color: #fff;
	text-align: right;
	width: 45%;
}
.price-value {
	font-family: Abel, Tahoma, Arial, sans-serif;
	color: #00ffff;
	font-weight: bold;
	text-align: left;
	width: 50%;
}
/* Linhas Divisórias */
.divider {
	border-top: 2px solid #333;
	margin: 6px auto;
	width: 100%;
}
/* Seção Observações */
.observations {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	color: #C9C90A;
}
.obs-text {
	flex: 1;
	min-width: 280px;
	font-size: 13px;
	line-height: 1.5;
}
.obs-text .highlight {
	font-size: 16px;
}
.obs-logo {
	width: 60px;
}
/* Rodapé */
.footer {
	text-align: center;
	padding: 4px 0;
}
.footer-link-main {
	color: #fff;
	font-size: 1.2em;
	display: block;
	margin-bottom: 4px;
}
.footer-contact {
	font-size: 1.4em;
	color: #C9C90A;
	display: inline-block;
}
.footer-contact-small {
	font-size: 0.8em;
}
.footer-copyright {
	font-family: Verdana, Tahoma, Arial, sans-serif;
	color: #4184F3;
	font-size: 1.4em;
	font-weight: bold;
}
/* Sustentabilidade */
.eco-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	text-align: left;
}
.eco-logo {
	width: 80px;
}
.eco-text {
	flex: 1;
	min-width: 250px;
	color: #ffffcc;
	font-size: 13px;
	line-height: 1.4;
}
/* Botão Flutuante do Whatsapp */
.whatsapp-btn {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 1em;
	right: 1em;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 24px;
	box-shadow: 2px 2px 5px #000;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Responsividade para Celulares */
@media screen and (max-width: 600px) {
	.header {
		flex-direction: column;
		text-align: center;
	}
	.header-logo, .header-text {
		width: 100%;
		margin-bottom: 15px;
	}
	.product-card {
		width: 100%;
		max-width: 280px;
	}
	.eco-section {
		text-align: center;
		justify-content: center;
	}
}