/* ============================================================
   Carrusel circular — Sección Enfoque / Primera Vez
   ============================================================ */

.enfoque-carousel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 1rem;
}

/* Contenedor circular */
.enfoque-circle-carousel {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-purple, #5B2D8E);
    flex-shrink: 0;
}

/* Cada slide dentro del círculo */
.enfoque-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.enfoque-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Imagen que rellena el círculo */
.enfoque-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
}

/* Dots de navegación en la parte inferior del círculo */
.enfoque-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.enfoque-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.enfoque-dot.active {
    background: var(--primary-orange, #FF8C00);
    width: 24px;
    border-radius: 4px;
}

/* Panel de texto debajo del círculo */
.enfoque-text-panel {
    margin-top: 1.6rem;
    text-align: center;
    min-height: 80px;
    padding: 0 1rem;
}

.enfoque-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-purple, #5B2D8E);
    margin-bottom: 0.4rem;
    transition: opacity 0.4s ease;
}

.enfoque-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    transition: opacity 0.4s ease;
}

/* Animación de fade del texto */
.enfoque-text-panel.fading .enfoque-title,
.enfoque-text-panel.fading .enfoque-desc {
    opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .enfoque-circle-carousel {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .enfoque-circle-carousel {
        width: 260px;
        height: 260px;
    }

    .enfoque-carousel-wrap {
        padding: 1rem 0;
    }
}