 :root {
	--primary-green: #28a745;
	--secondary-green: #00b894;
	--dark-bg: #1a1a1a;
	--light-text: #f8f9fa;
}
body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--dark-bg);
	color: var(--light-text);
}
.navbar {
	background-color: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(10px);
}
.navbar-brand img {
	max-height: 50px;
}
.hero-section {
	background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://pbs.twimg.com/profile_banners/1225135111475720192/1684784998/1500x500');
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	text-align: center;
}
.hero-section h1 {
	font-weight: 700;
	font-size: 3.5rem;
}
.hero-section .lead {
	font-weight: 300;
	font-size: 1.4rem;
}

@media(max-width: 768px) {
	.hero-section h1 {
		font-size: 2.8rem; 
	}
}
.btn-custom-primary {
	background-color: var(--primary-green);
	border-color: var(--primary-green);
	color: white;
	font-weight: 600;
	padding: 12px 30px;
	transition: all 0.3s ease;
}
.btn-custom-primary:hover {
	background-color: var(--secondary-green);
	border-color: var(--secondary-green);
	transform: translateY(-2px);
}
section {
	padding: 80px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}
.section-title::after {
	content: '';
	width: 80px;
	height: 4px;
	background-color: var(--primary-green);
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}
.product-card {
	background-color: #242424;
	border: 1px solid #333;
	border-radius: 15px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 255, 135, 0.1);
}
.product-card .card-img-top {
	width: 100%;
	height: auto;
	filter: grayscale(30%);
}
.product-card .card-body {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.product-card .card-title {
	font-weight: 600;
	color: var(--light-text);
	font-size: 1.2rem; /* Levemente ajustado para caber mais texto */
}
.product-card .card-text {
	color: #ccc;
	flex-grow: 1;
	font-size: 0.9rem;
	margin-bottom: 15px;
}
.product-card .price {
	font-size: 1.8rem; /* Aumentado para dar destaque */
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 15px; /* Adicionado margem inferior */
}
.product-card .price small {
	font-size: 1rem;
	font-weight: 300;
	color: #ccc;
}
.category-card {
	background-color: #242424;
	border: 1px solid #333;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
	height: 100%;
}
.list-group-item-custom {
	background-color: #333 !important; color: var(--light-text) !important;
	border-color: #444 !important; margin-bottom: 8px; border-radius: 5px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	display: flex; justify-content: space-between; align-items: center;
}
.list-group-item-custom:hover {
	background-color: #444 !important; transform: translateX(5px);
}
.about-section img {
	max-width: 150px; border-radius: 50%; border: 5px solid var(--primary-green);
}
footer {
	background-color: #111; padding: 40px 0 20px 0; text-align: center;
}
.social-icons a {
	color: var(--light-text); font-size: 1.8rem; margin: 0 15px;
	transition: color 0.3s ease;
}
.social-icons a:hover {
	color: var(--primary-green);
}
.disclaimer {
	font-size: 0.8rem; color: #aaa; margin-top: 30px;
}