/* Gama Carousel */

/* Impede o Elementor de esticar o widget wrapper além da altura natural */
.elementor-widget-gama_carousel {
	height: auto !important;
}

.gama-carousel {
	width: 100%;
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: none !important;
	display: flex;
	flex-direction: column;
}

/* ── Track wrapper (contém caption + slides) ── */
.gama-carousel__track-wrapper {
	flex: 0 0 auto;
	width: 100%;
	overflow: hidden;
	position: relative;
}

/* ── Legenda sobreposta à imagem ── */
.gama-carousel__caption {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0;
	padding: 8px 18px;
	background-color: #e50b87;
	color: #fff;
	line-height: 1.4;
	overflow: hidden;
	white-space: nowrap;
}

/* Tipografia da legenda */
.gama-carousel__caption strong {
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
	flex-shrink: 0;
}

.gama-carousel__caption-sep {
	font-size: 13px;
	margin: 0 4px;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
}

.gama-carousel__caption-body {
	font-size: 13px;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── Track ── */
.gama-carousel__track {
	display: flex;
	width: 100%;
	transition: transform 0.4s ease;
	will-change: transform;
}

.gama-carousel__slide {
	min-width: 100%;
	width: 100%;
	flex-shrink: 0;
	box-sizing: border-box;
}

.gama-carousel__slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* ── Navegação ── */
.gama-carousel__nav {
	flex: 0 0 auto;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 18px;
	background-color: #fff !important;
	position: relative !important;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
}

/* ── Botão seta: apenas container, sem visual próprio ── */
.gama-carousel__arrow {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 27px !important;
	height: 26px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	background: transparent !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0 !important;
}

/* ── Ícone da seta (span interno) ── */
.gama-carousel__arrow-icon {
	display: block;
	width: 27px;
	height: 26px;
	flex-shrink: 0;
	/* Seta normal: fundo #E50B87, ícone branco */
	background-image: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='13.5' cy='12.9906' rx='13.5' ry='12.9906' fill='%23E50B87'/%3E%3Cpath d='M16.4573 13.6723L7.83337 13.6723L7.83337 12.3091L16.4573 12.3091L12.4907 8.49209L13.5 7.53784L19.1667 12.9907L13.5 18.4435L12.4907 17.4893L16.4573 13.6723Z' fill='%23ffffff'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* Seta na extremidade: fundo #FDE7F3, ícone #ED55AB */
.gama-carousel__arrow.is-edge .gama-carousel__arrow-icon {
	background-image: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='13.5' cy='12.9906' rx='13.5' ry='12.9906' fill='%23FDE7F3'/%3E%3Cpath d='M16.4573 13.6723L7.83337 13.6723L7.83337 12.3091L16.4573 12.3091L12.4907 8.49209L13.5 7.53784L19.1667 12.9907L13.5 18.4435L12.4907 17.4893L16.4573 13.6723Z' fill='%23ED55AB'/%3E%3C/svg%3E");
}

/* Seta esquerda = span girado 180° */
.gama-carousel__arrow--prev .gama-carousel__arrow-icon {
	transform: rotate(180deg);
}

/* ── Dots ── */
.gama-carousel__dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gama-carousel__dot {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 10px !important;
	height: 10px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border-radius: 50% !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	background-color: #f4a7d0 !important;
	background-image: none !important;
	cursor: pointer;
	padding: 0 !important;
	margin: 0 !important;
	transition: background-color 0.2s, transform 0.2s;
	flex-shrink: 0;
}

.gama-carousel__dot.is-active {
	background-color: #e50b87 !important;
	transform: scale(1.3);
}
