/* MESSAGE - Testemunhos: estilos do shortcode [testemunhos] */

.msg-testemunhos-section {
	padding: 0;
	box-sizing: border-box;
}

.msg-testemunhos-heading {
	font-size: 2.5rem;
	font-weight: 800;
	color: #001730;
	margin: 0 0 40px 0;
	line-height: 1.2;
}

/* ---- Slider: scroll horizontal com setas ---- */
.msg-testemunhos-slider {
	position: relative;
}

.msg-testemunhos-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 12px;
	align-items: stretch;
	/* Fade na extremidade direita, a indicar que ha mais cartoes */
	-webkit-mask-image: linear-gradient(to right, #000 0, #000 94%, transparent 100%);
	        mask-image: linear-gradient(to right, #000 0, #000 94%, transparent 100%);
}

.msg-testemunhos-track::-webkit-scrollbar {
	height: 6px;
}
.msg-testemunhos-track::-webkit-scrollbar-thumb {
	background-color: rgba(0, 23, 48, 0.15);
	border-radius: 3px;
}
.msg-testemunhos-track {
	scrollbar-width: thin;
}

.msg-testemunho-card {
	flex: 0 0 360px;
	max-width: 85%;
	scroll-snap-align: start;
	background-color: #FFFFFF;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.25);
}

.msg-testemunho-card .msg-testemunho-quote-mark {
	display: block;
	width: 37px;
	height: 31px;
	max-width: 37px;
	margin: 0 0 16px 0;
	object-fit: contain;
}

.msg-testemunho-texto {
	color: #0E1419;
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 0 0 32px 0;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	line-clamp: 8;
	overflow: hidden;
}

.msg-testemunho-autor {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
}

.msg-testemunho-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.msg-testemunho-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.msg-testemunho-info {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.msg-testemunho-nome {
	color: #001730;
	font-size: 1rem;
	font-weight: 700;
}

.msg-testemunho-cargo {
	color: #6B7280;
	font-size: 0.9rem;
}

/* ---- Setas de navegacao (canto inferior direito) ---- */
.msg-testemunhos-nav {
	display: flex;
	gap: 12px;
	width: max-content;
	margin-left: auto;
	margin-top: 20px;
}

.msg-testemunhos-seta {
	width: 44px;
	height: 44px;
	border: 1px solid #001730;
	background-color: #FFFFFF;
	color: #001730;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.msg-testemunhos-seta:hover {
	background-color: #EAF5FC;
}

.msg-testemunhos-seta.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

@media (max-width: 640px) {
	.msg-testemunhos-heading {
		font-size: 1.8rem;
	}

	.msg-testemunho-card {
		flex: 0 0 85%;
		max-width: 85%;
	}
}

/* Estado clicado/focado: azul escuro (sem vermelho do browser) */
.msg-testemunhos-seta:focus,.msg-testemunhos-seta:focus-visible,.msg-testemunhos-seta:active{outline:none;color:#002C56;border-color:#002C56;background-color:#EAF5FC;}
