/* Glide.js Slider Styles - Versão Simples e Funcional */

/* Container do slider */
.glide-slider {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
}

/* Mostrar/Ocultar sliders */
.slider-desktop {
	display: block;
}

.slider-mobile {
	display: none;
}

@media all and (max-width: 660px) {
	.slider-desktop {
		display: none;
	}
	
	.slider-mobile {
		display: block;
	}
}

/* Glide base */
.glide {
	width: 100%;
	height: auto;
	position: relative;
	margin: 0;
	padding: 0;
}

.glide__track {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.glide__slides {
	width: 100%;
	height: auto;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.glide__slide {
	width: 100%;
	height: auto;
	flex-shrink: 0;
	position: relative;
}

.glide__slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.glide__slide a {
	display: block;
	width: 100%;
	height: 100%;
}

/* Desktop */
.slider-desktop .glide {
	max-width: 100%;
	width: 100%;
}

.slider-desktop .glide__slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* Setas de navegação */
.glide__arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
	padding: 0 20px;
}

.glide__arrow {
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.glide__arrow:hover {
	background: #F0BA00;
	transform: scale(1.1);
}

.glide__arrow:focus {
	outline: none;
}

/* Bullets */
.glide__bullets {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.glide__bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.glide__bullet:hover,
.glide__bullet--active {
	background: #F0BA00;
	border-color: #F0BA00;
	transform: scale(1.2);
}

.glide__bullet:focus {
	outline: none;
}

/* Mobile - Tela cheia */
@media all and (max-width: 660px) {
	.slider-mobile.glide-slider {
		width: 100%;
		height: 100vh;
		margin: 0;
		padding: 0;
		position: relative;
		overflow: hidden;
	}
	
	.slider-mobile .glide {
		width: 100%;
		height: 100vh;
		margin: 0;
		padding: 0;
	}
	
	.slider-mobile .glide__track {
		width: 100%;
		height: 100vh;
		overflow: hidden;
	}
	
	.slider-mobile .glide__slides {
		width: 100%;
		height: 100vh;
		margin: 0;
		padding: 0;
	}
	
	.slider-mobile .glide__slide {
		width: 100%;
		height: 100vh;
		margin: 0;
		padding: 0;
	}
	
	.slider-mobile .glide__slide img {
		width: 100%;
		height: 100vh;
		object-fit: cover;
		display: block;
		margin: 0;
		padding: 0;
	}
	
	.slider-mobile .glide__slide a {
		width: 100%;
		height: 100vh;
		display: block;
		margin: 0;
		padding: 0;
	}
	
	.slider-mobile .glide__arrow {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.slider-mobile .glide__arrows {
		padding: 0 15px;
	}
	
	.slider-mobile .glide__bullets {
		bottom: 30px;
	}
	
	/* Garantir que conteúdo abaixo não seja afetado */
	.slider-mobile.glide-slider + * {
		position: relative;
		z-index: 1;
	}
}
