/* CM Consulta Fipe — seletor de categorias */

.cm-fipe-consulta {
	max-width: 960px;
	margin: 0 auto;
	font-family: inherit;
}

.cm-fipe-categorias {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.cm-fipe-categoria {
	flex: 1 1 200px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
	cursor: pointer;
	text-align: left;
	color: #374151;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
	min-height: 64px;
}

.cm-fipe-categoria:hover {
	border-color: #93c5fd;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.cm-fipe-categoria.is-active {
	border-color: #3b82f6;
	background: #f8fbff;
	box-shadow: 0 0 0 1px #3b82f6;
}

.cm-fipe-categoria__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cm-fipe-categoria__icon img {
	display: block;
	max-width: 40px;
	max-height: 36px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.cm-fipe-categoria__label {
	flex: 1 1 auto;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.25;
	text-transform: uppercase;
	color: #1f2937;
}

.cm-fipe-categoria__chevron {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid #9ca3af;
	border-bottom: 2px solid #9ca3af;
	transform: rotate(45deg);
	margin-top: -4px;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.cm-fipe-categoria.is-active .cm-fipe-categoria__chevron {
	border-color: #3b82f6;
	transform: rotate(225deg);
	margin-top: 4px;
}

.cm-fipe-consulta .form-group {
	margin-bottom: 12px;
}

.cm-fipe-consulta .form-control {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.cm-fipe-consulta #veiculo {
	display: none;
	width: 100%;
	max-width: 100%;
	margin-top: 16px;
	border-collapse: collapse;
	table-layout: fixed;
	box-sizing: border-box;
}

.cm-fipe-consulta #veiculo.is-visible {
	display: table;
}

.cm-fipe-consulta #veiculo td {
	padding: 8px 10px;
	border-bottom: 1px solid #e5e7eb;
	word-break: break-word;
}

.cm-fipe-consulta #veiculo td:first-child {
	width: 40%;
	font-weight: 600;
	color: #374151;
}

.cm-fipe-consulta #veiculo td:last-child {
	width: 60%;
}

@media (max-width: 640px) {
	.cm-fipe-categorias {
		flex-direction: column;
	}

	.cm-fipe-categoria {
		flex: 1 1 auto;
	}
}
