/* 
========================================
CONFIGURAÇÕES GERAIS E VARIÁVEIS (MESMAS DA INDEX)
========================================
*/
:root {
	--cor-azul: #000080;
	--cor-vermelho: #FF0000;
	--cor-texto: #333;
	--cor-fundo-claro: #f9f9f9;
}

body {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	color: var(--cor-texto);
	background-color: #fff;
}

/* 
========================================
CABEÇALHO E RODAPÉ (IDÊNTICOS AOS DA INDEX PARA CONSISTÊNCIA)
========================================
*/
header {
	background-color: white;
	padding: 10px 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.logo img { width: 150px; height: auto; vertical-align: middle; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.social-icons a img { width: 30px; height: 30px; vertical-align: middle; }
.anuncie-btn {

	background: var(--cor-vermelho);
	color: #fff;
	padding: 12px 22px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: transform .3s ease, background .3s ease;
}

.anuncie-btn:hover { background-color: #d90429; }

footer {
	background-color: var(--cor-azul);
	color: white;
	padding: 40px 5%;
}
.footer-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	text-align: left;
	gap: 30px;
}
.footer-column h4 {
	color: white;
	font-size: 18px;
	margin-bottom: 15px;
	border-bottom: 2px solid var(--cor-vermelho);
	padding-bottom: 5px;
	display: inline-block;
}
.footer-column a, .footer-column p {
	color: #ccc;
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
}
.footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #4a4a8c;
}

/* 
========================================
NOVO LAYOUT DA PÁGINA DE MARCAS
========================================
*/
/* Título da Página com Breadcrumb */
.page-header {
	background-color: var(--cor-fundo-claro);
	padding: 40px 5%;
	text-align: center;
}
.page-header h1 {
	font-size: 42px;
	color: var(--cor-azul);
	margin: 0 0 10px 0;
}
.breadcrumb a { color: var(--cor-vermelho); text-decoration: none; }
.breadcrumb span { color: #777; }

/* Seção de Filtros Redesenhada */
.filters-section {
	padding: 40px 5%;
	background-color: #fff;
	border-bottom: 1px solid #eee;
}
.filters-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.search-filter, .category-filter {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 5px;
}
.search-filter input, .category-filter select {
	border: none;
	padding: 10px;
	font-size: 16px;
	background: transparent;
}
.search-filter input:focus, .category-filter select:focus {
	outline: none;
}
.search-filter img { width: 20px; height: 20px; margin: 0 10px; }

/* Filtro de Letras Leve */
.letter-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px 10px;
	margin-top: 30px;
}
.letter-filter span {
	cursor: pointer;
	padding: 5px 8px;
	border-radius: 4px;
	transition: all 0.3s ease;
	font-weight: 500;
}
.letter-filter span:hover {
	background-color: var(--cor-vermelho);
	color: white;
}
.letter-filter span.active {
	background-color: var(--cor-azul);
	color: white;
}

/* Grade de Marcas */
.brands-grid-section {
	padding: 60px 5%;
}
.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}
.brand-card {
	background-color: white;
	border: 1px solid #eee;
	border-radius: 8px;
	text-decoration: none;
	color: var(--cor-texto);
	text-align: center;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}
.brand-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.brand-card img {
	max-width: 80%;
	height: 100px;
	object-fit: contain;
	margin-bottom: 15px;
}
.brand-card h3 {
	margin: 10px 0 5px 0;
	color: var(--cor-azul);
}
.brand-card p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}