/**
 * Trier - Formas de Contato
 * Estilos específicos da página (cards de contato/horários e tabs regionais).
 * Reutiliza tokens do design system (var(--trier-*)) e do trier-solucoes.css.
 */

:root {
	--trier-fc-radius: 16px;
	--trier-fc-radius-sm: 12px;
	--trier-fc-shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
	--trier-fc-shadow-hover: 0 12px 28px rgba(16, 24, 40, 0.1);
	--trier-fc-border: 1px solid rgba(16, 24, 40, 0.08);
	--trier-fc-primary: #b1cc30;
	--trier-fc-primary-dark: #7a9223;
	--trier-fc-navy: #003a5d;
	--trier-fc-ink: #101828;
	--trier-fc-muted: #4a5565;
}

/* ── Hero ajustes ─────────────────────────────────────────── */
.trier-fc-hero .elementor-container {
	min-height: 380px;
}

/* ───────────────────────────────────────────────────────────
 * SETORES (cards de contato)
 * ─────────────────────────────────────────────────────────── */
.trier-fc-contacts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	margin-top: 24px;
}

.trier-fc-contact-card {
	background: #fff;
	border: var(--trier-fc-border);
	border-radius: var(--trier-fc-radius);
	box-shadow: var(--trier-fc-shadow);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform .2s ease, box-shadow .2s ease;
}

.trier-fc-contact-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--trier-fc-shadow-hover);
}

.trier-fc-contact-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(177, 204, 48, 0.14);
	color: var(--trier-fc-primary-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 4px;
}

.trier-fc-contact-title {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--trier-fc-ink);
	margin: 0;
}

.trier-fc-contact-phones {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.trier-fc-contact-phones a,
.trier-fc-contact-email,
.trier-fc-contact-whatsapp {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 16px;
	color: var(--trier-fc-navy);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 32px;
	transition: color .15s ease;
}

.trier-fc-contact-phones a:hover,
.trier-fc-contact-email:hover {
	color: var(--trier-fc-primary-dark);
	text-decoration: underline;
}

.trier-fc-contact-email {
	color: var(--trier-fc-muted);
	word-break: break-all;
}

.trier-fc-contact-whatsapp {
	margin-top: 8px;
	background: #25d366;
	color: #fff !important;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 600;
	align-self: flex-start;
	min-height: 44px;
}

.trier-fc-contact-whatsapp:hover {
	background: #1fb556;
	text-decoration: none !important;
}

.trier-fc-contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
	border-top: 1px dashed rgba(16, 24, 40, 0.08);
	padding-top: 12px;
}

.trier-fc-contact-links a {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 14px;
	color: var(--trier-fc-navy);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.trier-fc-contact-links a:hover {
	color: var(--trier-fc-primary-dark);
}

/* ───────────────────────────────────────────────────────────
 * HORÁRIOS
 * ─────────────────────────────────────────────────────────── */
.trier-fc-schedules-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	margin-top: 24px;
}

.trier-fc-schedule-card {
	background: #fff;
	border: var(--trier-fc-border);
	border-radius: var(--trier-fc-radius);
	box-shadow: var(--trier-fc-shadow);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
}

.trier-fc-schedule-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(0, 58, 93, 0.08);
	color: var(--trier-fc-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 4px;
}

.trier-fc-schedule-card h3 {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--trier-fc-ink);
	margin: 0;
}

.trier-fc-schedule-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.trier-fc-schedule-card ul li {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 16px;
	color: var(--trier-fc-muted);
	line-height: 1.5;
}

.trier-fc-schedule-note {
	width: 100%;
	margin-top: 24px;
	background: #fff8e1;
	border: 1px solid #f6d97a;
	border-radius: var(--trier-fc-radius-sm);
	padding: 16px 20px;
	color: #6b5210;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.trier-fc-schedule-note i {
	color: #b88a00;
	margin-top: 3px;
	flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────
 * REGIÕES — TABS
 * ─────────────────────────────────────────────────────────── */
.trier-fc-regions {
	width: 100%;
	margin-top: 24px;
}

.trier-fc-regions-search {
	position: relative;
	max-width: 480px;
	margin: 0 auto 24px;
}

.trier-fc-regions-search i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #98a2b3;
	font-size: 16px;
	pointer-events: none;
}

.trier-fc-search-input {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(16, 24, 40, 0.12);
	border-radius: 999px;
	background: #fff;
	padding: 10px 18px 10px 44px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 15px;
	color: var(--trier-fc-ink);
	box-shadow: var(--trier-fc-shadow);
	transition: border-color .15s ease, box-shadow .15s ease;
}

.trier-fc-search-input:focus {
	outline: none;
	border-color: var(--trier-fc-primary);
	box-shadow: 0 0 0 3px rgba(177, 204, 48, 0.25);
}

/* Strip de tabs (desktop) */
.trier-fc-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border-bottom: 2px solid rgba(16, 24, 40, 0.08);
	margin-bottom: 0;
}

.trier-fc-tab {
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 14px 20px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--trier-fc-muted);
	cursor: pointer;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: -2px;
	transition: color .15s ease, border-color .15s ease;
}

.trier-fc-tab i {
	font-size: 14px;
	color: var(--trier-fc-primary-dark);
}

.trier-fc-tab:hover {
	color: var(--trier-fc-ink);
}

.trier-fc-tab.is-active {
	color: var(--trier-fc-navy);
	border-bottom-color: var(--trier-fc-primary);
}

.trier-fc-tab.is-active i {
	color: var(--trier-fc-navy);
}

/* Painéis */
.trier-fc-panels {
	margin-top: 32px;
}

.trier-fc-panel {
	display: none;
}

.trier-fc-panel.is-active {
	display: block;
}

/* Toggle do painel — só aparece no mobile */
.trier-fc-panel-toggle {
	display: none;
}

.trier-fc-panel-body {
	background: #fff;
	border: var(--trier-fc-border);
	border-radius: var(--trier-fc-radius);
	box-shadow: var(--trier-fc-shadow);
	padding: 28px;
}

.trier-fc-states-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.trier-fc-state-name {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--trier-fc-ink);
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.trier-fc-uf {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 28px;
	padding: 0 8px;
	background: var(--trier-fc-primary);
	color: var(--trier-fc-navy);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.trier-fc-cities {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.trier-fc-city {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	border-radius: 10px;
	background: #f9fafb;
	transition: background .15s ease;
}

.trier-fc-city:hover {
	background: rgba(177, 204, 48, 0.12);
}

.trier-fc-city-name {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 15px;
	color: var(--trier-fc-ink);
	font-weight: 500;
}

.trier-fc-city-phone {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--trier-fc-navy);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 32px;
	white-space: nowrap;
}

.trier-fc-city-phone:hover {
	color: var(--trier-fc-primary-dark);
}

.trier-fc-empty {
	text-align: center;
	color: var(--trier-fc-muted);
	font-family: 'DM Sans', system-ui, sans-serif;
	margin: 16px 0 0;
}

.trier-fc-region-note {
	width: 100%;
	margin-top: 20px;
	background: #fff8e1;
	border: 1px solid #f6d97a;
	border-radius: var(--trier-fc-radius-sm);
	padding: 14px 18px;
	color: #6b5210;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.trier-fc-region-note i {
	color: #b88a00;
	margin-top: 3px;
	flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────
 * CTA actions (final)
 * ─────────────────────────────────────────────────────────── */
.trier-fc-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 12px;
}

/* ───────────────────────────────────────────────────────────
 * RESPONSIVO
 * ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.trier-fc-contacts-grid,
	.trier-fc-schedules-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trier-fc-states-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.trier-fc-contacts-grid,
	.trier-fc-schedules-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.trier-fc-contact-card,
	.trier-fc-schedule-card {
		padding: 22px 18px;
	}

	/* Tabs viram accordion no mobile */
	.trier-fc-tabs {
		display: none;
	}

	.trier-fc-panels {
		margin-top: 0;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.trier-fc-panel {
		display: block;
		background: #fff;
		border: var(--trier-fc-border);
		border-radius: var(--trier-fc-radius);
		overflow: hidden;
		box-shadow: var(--trier-fc-shadow);
	}

	.trier-fc-panel-toggle {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		background: #fff;
		border: none;
		padding: 16px 18px;
		font-family: 'DM Sans', system-ui, sans-serif;
		font-size: 16px;
		font-weight: 700;
		color: var(--trier-fc-ink);
		cursor: pointer;
		min-height: 56px;
		text-align: left;
	}

	.trier-fc-panel-toggle span {
		display: inline-flex;
		align-items: center;
		gap: 10px;
	}

	.trier-fc-panel-toggle i.fa-mountain,
	.trier-fc-panel-toggle i.fa-city,
	.trier-fc-panel-toggle i.fa-tree,
	.trier-fc-panel-toggle i.fa-sun {
		color: var(--trier-fc-primary-dark);
	}

	.trier-fc-chevron {
		transition: transform .2s ease;
	}

	.trier-fc-panel-toggle[aria-expanded="true"] .trier-fc-chevron {
		transform: rotate(180deg);
	}

	.trier-fc-panel-body {
		display: none;
		border: none;
		border-top: 1px solid rgba(16, 24, 40, 0.08);
		border-radius: 0;
		box-shadow: none;
		padding: 18px;
	}

	.trier-fc-panel-toggle[aria-expanded="true"] + .trier-fc-panel-body {
		display: block;
	}

	.trier-fc-city {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.trier-fc-city-phone {
		min-height: 44px;
	}
}

@media (max-width: 480px) {
	.trier-fc-contact-icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.trier-fc-contact-title {
		font-size: 18px;
	}

	.trier-fc-cta-actions .trier-solucoes-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ── Section: Bloco institucional CAT ───────────────────────── */
.trier-fc-cat-intro {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	gap: 40px;
}

.trier-fc-cat-intro-head {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.trier-fc-cat-intro-eyebrow {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--trier-fc-primary, #003a5d);
}

.trier-fc-cat-intro-text {
	margin: 0;
	font-size: 17px;
	line-height: 1.65;
	color: var(--trier-fc-ink, #101828);
}

.trier-fc-cat-pillars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.trier-fc-cat-pillar {
	background: #fff;
	border: 1px solid rgba(16, 24, 40, 0.08);
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: var(--trier-fc-shadow, 0 4px 16px rgba(16, 24, 40, 0.06));
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform .2s ease, box-shadow .2s ease;
}

.trier-fc-cat-pillar:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.10);
}

.trier-fc-cat-pillar-icon {
	display: inline-flex;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(0, 58, 93, 0.08);
	color: var(--trier-fc-primary, #003a5d);
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.trier-fc-cat-pillar h4 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--trier-fc-ink, #101828);
}

.trier-fc-cat-pillar p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--trier-fc-muted, #475467);
}

@media (max-width: 900px) {
	.trier-fc-cat-pillars {
		grid-template-columns: 1fr;
	}
}

