/* ════════════════════════════════════════════
   SUPORTE.CSS — estilos exclusivos da página "Suporte"
   Depende das variáveis e classes base definidas em index.css
   (var(--gold), var(--accent), var(--bg), var(--text), etc.)
   ════════════════════════════════════════════ */

/* ─── HERO (mais curto que o da landing, com barra de pesquisa) ─── */
.support-hero { min-height: 58vh; padding: 130px 40px 64px; }

.support-hero .hub-search-bar { max-width: 560px; margin: 0 auto 20px; }

.support-shortcuts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.support-shortcuts a { text-decoration: none; }

/* ─── TÓPICOS DE AJUDA (cartões de categoria) ─── */
.help-category-card { cursor: pointer; }

.help-category-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.help-category-link {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--gold);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}

/* ─── PERGUNTAS FREQUENTES (acordeão) ─── */
.faq-section { background: var(--bg); padding: 100px 40px; }

.faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold-light); }

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	user-select: none;
}

.faq-question i {
	color: var(--gold);
	font-size: 14px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 320px; }

.faq-answer-inner {
	padding: 0 24px 20px;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ─── CONTACTO ─── */
.contact-section { background: #fff; padding: 100px 40px; }

.contact-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 36px 28px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}

.contact-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-3px);
	border-color: var(--gold-light);
}

.contact-icon {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--gold-light);
	color: var(--gold);
	display: flex; align-items: center; justify-content: center;
	font-size: 22px;
	margin: 0 auto 18px;
}

.contact-title { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.contact-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.contact-value { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 22px; }

.contact-card .btn-pricing-secondary { margin-top: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
	.support-hero { padding: 110px 24px 48px; min-height: auto; }
	.faq-section, .contact-section { padding: 72px 24px; }
	.faq-question { padding: 16px 18px; font-size: 14px; }
	.faq-answer-inner { padding: 0 18px 16px; }
}