/*--------------------------------------------------------------
# Configurações Gerais e Cores
--------------------------------------------------------------*/
:root {
	--bs-primary: #1C2339; /* Azul Escuro */
	--bs-secondary: #6c757d;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #E5242E; /* Vermelho Brilhante */
	--bs-light: #F7F5E9; /* Off-White */
	--bs-dark: #212529;

	--font-default: 'Poppins', sans-serif;
}

body {
	font-family: var(--font-default);
	background-color: #f8f9fa; /* Um cinza claro suave para o fundo */
	color: var(--bs-primary);
}

.btn-primary {
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.btn-primary:hover {
	background-color: #333c56;
	border-color: #333c56;
}

.btn-danger {
	background-color: var(--bs-danger);
	border-color: var(--bs-danger);
}

.btn-danger:hover {
	background-color: #c41420;
	border-color: #c41420;
}

a {
	color: var(--bs-primary);
	text-decoration: none;
}

a:hover {
	color: var(--bs-danger);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.top-bar {
	font-size: 0.85rem;
	border-bottom: 1px solid #e9ecef;
}

.navbar-brand img {
	transition: transform 0.3s ease;
}

.navbar-brand:hover img {
	transform: scale(1.05);
}

.navbar .nav-link {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	padding: 0.5rem 1rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
	color: var(--bs-danger);
}

.cart-count-bubble {
	font-size: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	min-width: 20px;
	min-height: 20px;
}

/*--------------------------------------------------------------
# Hero Section / Sliders
--------------------------------------------------------------*/
.hero-section {
	background-color: var(--bs-primary);
	color: var(--bs-light);
	padding: 6rem 0;
	text-align: center;
}

.hero-section h1 {
	font-size: 3.5rem;
	font-weight: 900;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
	font-size: 1.25rem;
	max-width: 600px;
	margin: 1rem auto 2rem;
}


/*--------------------------------------------------------------
# Product Card
--------------------------------------------------------------*/
.product-card {
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	border: 1px solid #e9ecef;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.product-card .sale-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--bs-danger);
}

.product-card .original-price {
	font-size: 0.9rem;
	text-decoration: line-through;
	color: var(--bs-secondary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	background-color: var(--bs-primary);
	color: rgba(255, 255, 255, 0.8);
	padding-top: 3rem;
}

.footer h5 {
	color: #fff;
	margin-bottom: 1.5rem;
}

.footer .footer-links a {
	color: rgba(255, 255, 255, 0.8);
	display: block;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.footer .footer-links a:hover {
	color: #fff;
	text-decoration: none;
}

.footer .bottom-bar {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 1rem 0;
	font-size: 0.9rem;
}

.footer .social-footer a {
	color: #fff;
	font-size: 1.2rem;
	margin: 0 0.5rem;
}