
.icono-feature {
    width: clamp(22px, 4vw, 60px);
    height: auto;
    margin-right: 10px;
    flex-shrink: 0;
}

/* CONTENEDOR */
.hotspot-container {
    position: relative;
    max-width: 480px;
}

.hotspot,
.hotspot2 {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #0080ffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.hotspot::before,
.hotspot2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    border: 3px solid rgba(73, 144, 214, 0.25);
    border-top: 3px solid #067bf0e8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1.2s linear infinite;
}


/* ANIMACIÓN DE GIRO */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hotspot-text {
    position: absolute;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.88);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


/* MOSTRAR TEXTO AL PASAR EL MOUSE */
.hotspot:hover .hotspot-text,
.hotspot2:hover .hotspot-text {
    opacity: 1;
}

@media (max-width: 576px) {
    .hotspot-text {
        font-size: 12px;
        left: 25px;
    }
}

/* TÍTULOS PRINCIPALES */
#Logicleaner_partes h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* TEXTO DE LOS HOTSPOTS */
#Logicleaner_partes .hotspot-text {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 700;
    line-height: 1.3;
}

/* Opcional: mejora legibilidad sobre imagen */
#Logicleaner_partes .hotspot-text {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.icon-hover {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.icon-hover:hover {
    filter: grayscale(100%);
    transform: scale(1.05);
    /* opcional, se ve más vivo */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.app-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.app-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

/* TEXTO */
.app-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: background 0.4s ease;
}

/* HOVER */
.app-card:hover img {
    filter: grayscale(0%);
}

.app-card:hover .app-text {
    background: rgba(0, 0, 0, 0.15);
}



