.circular-carousel {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    animation: spin 30s linear infinite;
}

.carousel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform-origin: -120px center;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Distribución en círculo */
.carousel-item:nth-child(1) {
    transform: rotate(0deg) translateX(-120px);
}

.carousel-item:nth-child(2) {
    transform: rotate(72deg) translateX(-120px);
}

.carousel-item:nth-child(3) {
    transform: rotate(144deg) translateX(-120px);
}

.carousel-item:nth-child(4) {
    transform: rotate(216deg) translateX(-120px);
}

.carousel-item:nth-child(5) {
    transform: rotate(288deg) translateX(-120px);
}

/* Animación */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}