
/* Slider container */

.my-slider {
	height: 100%;
	width: 100%;
}

/* Cada slide */
.slide-item {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

/* Imagem full cover */
.slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Caption (texto sobreposto) */
.caption {
	position: absolute;
	bottom: 12%;
	left: 0;
	right: 0;
	z-index: 10;
	text-align: center;
	padding: 0 2rem;
	text-shadow: black 0.1em 0.1em 0.2em;
}

.caption .title {
	color: white !important;
	font-size: calc(1.2rem + 0.3 * (100vw - 20rem) / 28);
	line-height: calc(1.5 + 0.1 * (100vw - 20rem) / 28);
	padding-bottom: 0.8rem;
}

.caption .subtitle {
	color: white !important;
	margin-top: 0;
	font-size: calc(0.8rem + 0.2 * (100vw - 20rem) / 28);
	line-height: calc(1 + 0.1 * (100vw - 20rem) / 28);
}

/* Overlay escuro para melhorar legibilidade */
.slide-item:before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(0, 0, 0, 0.45);
	z-index: 1;
}

/* Setas do Tiny Slider (custom simples) */
.tns-controls {
	position: absolute !important;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 3%;
	z-index: 20;
	pointer-events: none;
}
.tns-controls button {
	pointer-events: auto;
	background: rgb(0, 0, 0, 0.5) !important;
	color: white !important;
	border: none;
	border-radius: 50% !important;
	width: 50px !important;
	height: 50px !important;
	font-size: 1.8rem !important;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	line-height: 1;
}
.tns-controls button:hover {
	background: rgb(0, 0, 0, 0.8) !important;
}
.tns-controls button i {
   width: 1rem;
   height: 1.2rem;
   font-size: 1.2rem;
}

/* Dots (paginação) embaixo */
.tns-nav {
	position: absolute !important;
	bottom: 0% !important;
	left: 50% !important;
	transform: translateX(-50%);
	z-index: 20;
}
.tns-nav button {
	background: white !important;
	opacity: 0.6 !important;
	width: 12px !important;
	height: 12px !important;
	border-radius: 50% !important;
   margin: 0.3rem;
}
.tns-nav button.tns-nav-active {
	opacity: 1 !important;
}
.tns-nav .tns-nav-active button {
	opacity: 1 !important;
	background: #00d1b2 !important; /* cor primária Bulma, mude se quiser */
}
