.cf-carrusel {
	width: 100%;
	margin: 20px auto;
	position: relative;
}

.cf-carrusel-marco {
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #f1f1f1;
}

.cf-carrusel-track {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	transition: transform 0.35s ease;
}

.cf-slide {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}

.cf-slide-media {
	width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	background: #000;
}

.cf-slide-video {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.cf-ajuste-cover {
	object-fit: cover;
}

.cf-ajuste-contain {
	object-fit: contain;
	background: #000;
}

/* Botones flecha */
.cf-flecha {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	border: none;
	cursor: pointer;
	z-index: 2;
	padding: 0;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.cf-flecha:hover {
	background: rgba(0, 0, 0, 0.7);
}

.cf-flecha::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
}

.cf-flecha-izq {
	left: 10px;
}
.cf-flecha-izq::before {
	border-width: 7px 10px 7px 0;
	border-color: transparent #fff transparent transparent;
	transform: translate(-35%, -50%);
}

.cf-flecha-der {
	right: 10px;
}
.cf-flecha-der::before {
	border-width: 7px 0 7px 10px;
	border-color: transparent transparent transparent #fff;
	transform: translate(-65%, -50%);
}

/* Contador tipo "2/5" */
.cf-contador {
	position: absolute;
	top: 10px;
	right: 12px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 12px;
	z-index: 2;
}

/* Puntos indicadores */
.cf-puntos {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 6px;
	z-index: 2;
}

.cf-punto {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.cf-punto-activo {
	background: #fff;
	transform: scale(1.3);
}

@media (max-width: 480px) {
	.cf-flecha {
		width: 32px;
		height: 32px;
	}
}
