/* ============================================================
   Testemunhos Slider – Stylesheet
   Corresponde ao layout da imagem de referência
   ============================================================ */

/* ── Secção ──────────────────────────────────────────────── */
.ts-section {
	position: relative;
	padding: 3rem 5rem;          /* espaço para as setas laterais */
	overflow: hidden;
	box-sizing: border-box;
}

/* ── Swiper wrapper ──────────────────────────────────────── */
.ts-swiper {
	width: 100%;
	overflow: hidden;            /* Swiper precisa de overflow hidden no container */
}

/* ── Card ────────────────────────────────────────────────── */
.ts-card {
	position: relative;
	background: #ffffff;
	padding: 2.5rem 2rem 2.5rem 2rem;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ── Citação ─────────────────────────────────────────────── */
.ts-quote {
	margin: 0 0 1.5rem 0;
	padding: 0;
	border: none;
	flex: 1;
}

.ts-quote p,
.ts-quote {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #7a7670;
	margin: 0;
}

/* ── Autor ───────────────────────────────────────────────── */
.ts-author {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	position: relative;
	z-index: 1;
}

.ts-author__name {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1916;
	line-height: 1.4;
}

.ts-author__local {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1916;
	line-height: 1.4;
}

/* ── Marca de água ───────────────────────────────────────── */
.ts-watermark {
	position: absolute;
	bottom: -0.6rem;
	right: 1rem;
	font-family: Georgia, serif;
	font-size: 8rem;
	line-height: 1;
	color: #e8e4dd;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

/* ── Botões de navegação ─────────────────────────────────── */
.ts-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: transparent;
	border: none;
	padding: 0.5rem 0.6rem;
	cursor: pointer;
	font-size: 1.6rem;
	color: #5a5752;
	line-height: 1;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.ts-nav:hover {
	color: #1a1916;
}

.ts-nav.swiper-button-disabled {
	opacity: 0.25;
	cursor: default;
}

.ts-nav--prev {
	left: 1rem;
}

.ts-nav--next {
	right: 1rem;
}

/* ── Mensagem vazia ──────────────────────────────────────── */
.ts-empty {
	text-align: center;
	color: #7a7670;
	padding: 2rem;
}

/* ── Responsivo ──────────────────────────────────────────── */
@media ( max-width: 1024px ) {
	.ts-section {
		padding: 3rem 3.5rem;
	}
}

@media ( max-width: 768px ) {
	.ts-section {
		padding: 2rem 2.5rem;
	}

	.ts-card {
		min-height: 260px;
	}
}

@media ( max-width: 480px ) {
	.ts-section {
		padding: 1.5rem 2rem;
	}

	.ts-nav {
		font-size: 1.2rem;
	}
}
