/* Estilos para mantener animaciones en dispositivos móviles */
@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Restaurar efectos de pulso en móviles */
@media (max-width: 576px) {
    .pill-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: pulseRing 2s infinite ease-out;
        z-index: -1;
        display: block !important;
    }
    
    .pill-item::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 140%;
        height: 140%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: pulseRing 2s infinite ease-out 0.5s;
        z-index: -2;
        display: block !important;
    }
}

/* Efectos específicos para móvil muy pequeño */
@media (max-width: 393px) {
    .pill-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: pulseRing 2s infinite ease-out;
        z-index: -1;
        display: block !important;
    }
    
    .pill-item::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 140%;
        height: 140%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: pulseRing 2s infinite ease-out 0.5s;
        z-index: -2;
        display: block !important;
    }
    
    /* Ajustar posición y tamaño para móvil pequeño */
    .pill-item {
        position: relative;
    }
} 