/**
 * AWR Baterias — CSS das páginas hub (cidades, aplicações, amperagens, SKUs)
 * e das páginas de detalhe (amperagem/{ah}, bateria-para/{aplicacao}).
 * Escopo: apenas classes .awr-hub-* e .awr-detail-* introduzidas aqui.
 */

/* ---------- Hero navy comum às páginas hub e de detalhe ---------- */
.awr-hub-hero {
	background: linear-gradient(135deg, #0a2555 0%, #002776 100%);
	color: #fff;
	padding: 2.5rem 0;
	margin: 0 0 2rem;
}
.awr-hub-hero__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1rem;
}
.awr-hub-hero .awr-breadcrumb {
	margin-bottom: 0.75rem;
	font-size: 0.8rem;
	color: #cfe0ff;
}
.awr-hub-hero .awr-breadcrumb a {
	color: #cfe0ff;
}
.awr-hub-hero .awr-breadcrumb span {
	color: #fff;
}
.awr-hub-hero__title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}
.awr-hub-hero__lead {
	max-width: 46rem;
	color: #cfe0ff;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
}
@media (min-width: 641px) {
	.awr-hub-hero { padding: 3.5rem 0; }
	.awr-hub-hero__title { font-size: 2.5rem; }
	.awr-hub-hero__lead { font-size: 1.125rem; }
}

.awr-hub-body {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1rem 3rem;
}
.awr-hub-body--narrow { max-width: 780px; }

/* ---------- Grid de cards genérico (cidades / aplicações) ---------- */
.awr-hub-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
}
@media (min-width: 641px) {
	.awr-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.awr-hub-grid { grid-template-columns: repeat(3, 1fr); }
}

.awr-hub-card {
	display: flex;
	flex-direction: column;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	padding: 1.25rem;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.awr-hub-card:hover {
	transform: translateY(-2px);
	border-color: #0a2555;
	box-shadow: 0 8px 24px rgba(10,37,85,.12);
}
.awr-hub-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
}
.awr-hub-card__title a {
	color: #0a2555;
	text-decoration: none;
}
.awr-hub-card__title a:hover { text-decoration: underline; }
.awr-hub-card__meta {
	margin: 0 0 0.35rem;
	font-size: 0.875rem;
	color: #64748b;
}
.awr-hub-card__extra {
	margin: 0;
	font-size: 0.75rem;
	color: #94a3b8;
	line-height: 1.4;
}

/* ---------- Grid de chips (amperagens / SKUs) ---------- */
.awr-hub-chipgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.65rem;
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
}
@media (min-width: 641px) {
	.awr-hub-chipgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
	.awr-hub-chipgrid { grid-template-columns: repeat(4, 1fr); }
}
.awr-hub-chipgrid .awr-chip {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	padding: 0.85rem 0.5rem;
	font-weight: 700;
	font-size: 0.85rem;
	color: #0a2555;
	background: #fff;
	text-decoration: none;
	transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.awr-hub-chipgrid .awr-chip:hover {
	border-color: #0a2555;
	background: #f0f4ff;
	transform: translateY(-2px);
}
.awr-hub-chipgrid .awr-chip--active {
	background: #FFDF00;
	border-color: #FFDF00;
	color: #0a2555;
}

/* ---------- Grid denso de modelos (hub de SKUs) ---------- */
.awr-hub-skugrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}
@media (min-width: 641px) {
	.awr-hub-skugrid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
	.awr-hub-skugrid { grid-template-columns: repeat(4, 1fr); }
}
.awr-hub-skugrid .awr-chip {
	display: block;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	padding: 0.7rem 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: #0a2555;
	background: #fff;
	text-decoration: none;
	line-height: 1.3;
}
.awr-hub-skugrid .awr-chip:hover {
	border-color: #0a2555;
	background: #f0f4ff;
}

/* ---------- Página de detalhe (amperagem / aplicação): grid de produtos ---------- */
.awr-hub-products {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: 0 0 2rem;
}
@media (min-width: 641px) {
	.awr-hub-products { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.awr-hub-products { grid-template-columns: repeat(3, 1fr); }
}

.awr-hub-empty {
	border: 2px dashed #e2e8f0;
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	color: #64748b;
}

/* ---------- CTA de fechamento (chips/hub e páginas de detalhe) ---------- */
.awr-hub-cta {
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	padding: 1.5rem;
	text-align: center;
	margin: 0 0 2rem;
}
.awr-hub-cta p {
	margin: 0 0 0.9rem;
	font-size: 0.95rem;
	color: #0a2555;
}
.awr-hub-cta__wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 44px;
	border-radius: 10px;
	background: #25D366;
	color: #fff;
	font-weight: 800;
	font-size: 0.9rem;
	padding: 0.65rem 1.25rem;
	text-decoration: none;
}
.awr-hub-cta__wa:hover { background: #1ea952; }

/* ---------- Página de aplicação: seções extras ---------- */
.awr-app-section {
	padding: 2rem 0;
}
.awr-app-section--muted {
	background: #f8fafc;
}
.awr-app-section__title {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0a2555;
	margin: 0 0 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
@media (min-width: 641px) {
	.awr-app-section__title { font-size: 1.65rem; }
}

.awr-app-benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}
.awr-app-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	padding: 0.9rem 1rem;
	font-size: 0.92rem;
	color: #0a2555;
}
.awr-app-benefits li::before {
	content: "✓";
	color: #0a2555;
	font-weight: 800;
	flex-shrink: 0;
}

.awr-app-reco {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 641px) {
	.awr-app-reco { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.awr-app-reco { grid-template-columns: repeat(3, 1fr); }
}
.awr-app-reco li {
	display: flex;
	flex-direction: column;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	padding: 1.25rem;
	box-shadow: 0 1px 4px rgba(10,37,85,.06);
}
.awr-app-reco__brand {
	display: inline-flex;
	width: fit-content;
	border-radius: 999px;
	background: rgba(10,37,85,.08);
	color: #0a2555;
	font-size: 0.7rem;
	font-weight: 800;
	padding: 0.15rem 0.6rem;
	margin-bottom: 0.4rem;
}
.awr-app-reco__modelo {
	font-size: 1.05rem;
	font-weight: 800;
	color: #0a2555;
	margin: 0 0 0.2rem;
}
.awr-app-reco__amp {
	font-size: 0.75rem;
	font-weight: 700;
	color: #64748b;
	margin: 0 0 0.5rem;
}
.awr-app-reco__ideal {
	font-size: 0.85rem;
	color: #334155;
	margin: 0 0 0.75rem;
}
.awr-app-reco__preco {
	margin-top: auto;
	font-size: 1.4rem;
	font-weight: 800;
	color: #0a2555;
}
.awr-app-reco__note {
	font-size: 0.7rem;
	color: #94a3b8;
	margin: 0;
}

.awr-app-faq {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.awr-app-faq details {
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	padding: 0.9rem 1rem;
}
.awr-app-faq details[open] { border-color: #0a2555; }
.awr-app-faq summary {
	cursor: pointer;
	font-weight: 700;
	color: #0a2555;
	list-style: none;
}
.awr-app-faq summary::-webkit-details-marker { display: none; }
.awr-app-faq summary::before {
	content: "+ ";
	color: #0a2555;
	font-weight: 800;
}
.awr-app-faq p {
	margin: 0.65rem 0 0;
	color: #334155;
	font-size: 0.9rem;
	line-height: 1.5;
}

.awr-app-outras {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 641px) {
	.awr-app-outras { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.awr-app-outras { grid-template-columns: repeat(3, 1fr); }
}
.awr-app-outras a {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	background: #fff;
	padding: 1.1rem 1.25rem;
	text-decoration: none;
	transition: border-color .15s ease, transform .15s ease;
}
.awr-app-outras a:hover {
	border-color: #0a2555;
	transform: translateY(-2px);
}
.awr-app-outras h3 {
	margin: 0 0 0.25rem;
	font-size: 0.98rem;
	font-weight: 800;
	color: #0a2555;
}
.awr-app-outras p {
	margin: 0;
	font-size: 0.85rem;
	color: #64748b;
}
.awr-app-outras__arrow {
	color: #0a2555;
	flex-shrink: 0;
	font-weight: 800;
}

.awr-app-cobertura p {
	max-width: 60rem;
	font-size: 0.95rem;
	color: #334155;
	line-height: 1.6;
}
