/* Plasma Stream 2026 — Atendimento (atendimento.tpl) */

.atendimento-page {
	margin: 0 0 30px;
}

.atendimento-intro {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 28px;
	color: var(--hp-text-muted);
	font-size: var(--hp-text-lg);
	line-height: var(--hp-leading);
}

.atendimento-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-bottom: 28px;
}

.atendimento-card {
	position: relative;
	background: var(--hp-surface-2);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-lg);
	padding: 28px 24px;
	text-decoration: none;
	color: var(--hp-text) !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 180px;
	transition: transform 0.3s var(--hp-ease-out), border-color var(--hp-transition), box-shadow var(--hp-transition);
	box-shadow: var(--hp-shadow);
}

.atendimento-card:hover {
	transform: translateY(-6px);
	border-color: var(--hp-orange-border);
	box-shadow: var(--hp-shadow-lg), 0 0 40px rgba(255, 69, 0, 0.06);
	color: var(--hp-text) !important;
	text-decoration: none;
}

.atendimento-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.atendimento-card-icon.orange { background: var(--hp-orange-soft); color: var(--hp-orange); border: 1px solid var(--hp-orange-border); }
.atendimento-card-icon.green  { background: rgba(0, 230, 118, 0.1); color: var(--hp-green); border: 1px solid rgba(0, 230, 118, 0.28); }
.atendimento-card-icon.blue   { background: rgba(66, 165, 245, 0.1); color: var(--hp-blue); border: 1px solid rgba(66, 165, 245, 0.28); }
.atendimento-card-icon.gold   { background: rgba(255, 193, 7, 0.1); color: var(--hp-gold); border: 1px solid rgba(255, 193, 7, 0.28); }

.atendimento-card h3 {
	font-family: var(--hp-font-display);
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0;
}

.atendimento-card p {
	color: var(--hp-text-muted);
	font-size: 0.9375rem;
	margin: 0;
	flex: 1;
	line-height: var(--hp-leading);
}

.atendimento-card-cta {
	font-size: var(--hp-text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--hp-orange);
}

.atendimento-hours {
	text-align: center;
	padding: 20px;
	background: var(--hp-surface-2);
	border: 1px solid var(--hp-border);
	border-radius: var(--hp-radius-lg);
	color: var(--hp-text-muted);
}

.atendimento-hours strong {
	color: var(--hp-orange);
	display: block;
	font-family: var(--hp-font-display);
	font-size: 1.1rem;
	margin-bottom: 4px;
}

@media (min-width: 768px) {
	.atendimento-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.atendimento-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
}
